Home | History | Annotate | Download | only in TableGen

Lines Matching defs:NumBits

150 static bool canFitInBitfield(int64_t Value, unsigned NumBits) {
151 // For example, with NumBits == 4, we permit Values from [-7 .. 15].
152 return (NumBits >= sizeof(Value) * 8) ||
153 (Value >> NumBits == 0) || (Value >> (NumBits-1) == -1);
1274 unsigned NumBits = T->getNumBits();
1278 if (Bits[i] >= NumBits)