Lines Matching defs:Stored
18174 unsigned Stored = 0;
18182 Stored += 8;
18185 Result = StoreSubVec(4, NumBytes - Stored - 4,
18186 IsLE ? (Stored >> 2) : 3 - (Stored >> 2));
18188 Stored += 4;
18191 Result = StoreSubVec(2, NumBytes - Stored - 2,
18192 IsLE ? (Stored >> 1) : 7 - (Stored >> 1));
18194 Stored += 2;
18198 StoreSubVec(1, NumBytes - Stored - 1, IsLE ? Stored : 15 - Stored);