Lines Matching defs:Stored
17226 unsigned Stored = 0;
17234 Stored += 8;
17237 Result = StoreSubVec(4, NumBytes - Stored - 4,
17238 IsLE ? (Stored >> 2) : 3 - (Stored >> 2));
17240 Stored += 4;
17243 Result = StoreSubVec(2, NumBytes - Stored - 2,
17244 IsLE ? (Stored >> 1) : 7 - (Stored >> 1));
17246 Stored += 2;
17250 StoreSubVec(1, NumBytes - Stored - 1, IsLE ? Stored : 15 - Stored);