Home | History | Annotate | Download | only in TableGen

Lines Matching defs:NumBits

160 static bool canFitInBitfield(int64_t Value, unsigned NumBits) {
161 // For example, with NumBits == 4, we permit Values from [-7 .. 15].
162 return (NumBits >= sizeof(Value) * 8) ||
163 (Value >> NumBits == 0) || (Value >> (NumBits-1) == -1);
1265 unsigned NumBits = T->getNumBits();
1269 if (Bits[i] >= NumBits)