Home | History | Annotate | Download | only in VMCore

Lines Matching defs:NumBits

1102   unsigned NumBits = Ty->getIntegerBitWidth(); // assert okay
1105 if (NumBits >= 64)
1107 uint64_t Max = (1ll << NumBits) - 1;
1112 unsigned NumBits = Ty->getIntegerBitWidth();
1115 if (NumBits >= 64)
1117 int64_t Min = -(1ll << (NumBits-1));
1118 int64_t Max = (1ll << (NumBits-1)) - 1;