Lines Matching defs:APInt
29 using APInt = llvm::APInt;
36 APInt V;
39 static T truncateCast(const APInt &V) {
42 APInt Extended;
60 : V(APInt(BitWidth, static_cast<uint64_t>(Value), Signed)) {}
62 IntegralAP(APInt V) : V(V) {}
98 APInt Copy = APInt(NumBits, static_cast<uint64_t>(Value), Signed);
115 APInt Copy = APInt(BitWidth, static_cast<uint64_t>(I), InputSigned);
121 APInt V = APInt(BitWidth, 0LL, Signed);
164 APInt Copy = V;
244 APInt AI = A.V;
271 // 4 bytes for the BitWidth followed by N bytes for the actual APInt.
287 IntegralAP<Signed> Val(APInt(BitWidth, 0ull, !Signed));
299 R->V = Op<APInt>{}(A.V, B.V);