Lines Matching defs:BytesLeft
198 unsigned BytesLeft = SizeVal & 3;
246 if (BytesLeft == 0)
250 auto getRemainingValueType = [](unsigned BytesLeft) {
251 return (BytesLeft >= 2) ? MVT::i16 : MVT::i8;
253 auto getRemainingSize = [](unsigned BytesLeft) {
254 return (BytesLeft >= 2) ? 2 : 1;
257 unsigned BytesLeftSave = BytesLeft;
259 while (BytesLeft) {
260 VT = getRemainingValueType(BytesLeft);
261 VTSize = getRemainingSize(BytesLeft);
269 BytesLeft -= VTSize;
274 BytesLeft = BytesLeftSave;
275 while (BytesLeft) {
276 VT = getRemainingValueType(BytesLeft);
277 VTSize = getRemainingSize(BytesLeft);
284 BytesLeft -= VTSize;