Home | History | Annotate | Download | only in IR

Lines Matching defs:NumBits

1159   unsigned NumBits = Ty->getIntegerBitWidth(); // assert okay
1162 if (NumBits >= 64)
1164 uint64_t Max = (1ll << NumBits) - 1;
1169 unsigned NumBits = Ty->getIntegerBitWidth();
1172 if (NumBits >= 64)
1174 int64_t Min = -(1ll << (NumBits-1));
1175 int64_t Max = (1ll << (NumBits-1)) - 1;