Home | History | Annotate | Download | only in TableGen

Lines Matching full:numbits

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