Lines Matching defs:bigVal
91 void APInt::initFromArray(ArrayRef<uint64_t> bigVal) {
92 assert(bigVal.data() && "Null pointer detected!");
94 U.VAL = bigVal[0];
99 unsigned words = std::min<unsigned>(bigVal.size(), getNumWords());
100 // Copy the words from bigVal to pVal
101 memcpy(U.pVal, bigVal.data(), words * APINT_WORD_SIZE);
107 APInt::APInt(unsigned numBits, ArrayRef<uint64_t> bigVal) : BitWidth(numBits) {
108 initFromArray(bigVal);
111 APInt::APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[])
113 initFromArray(ArrayRef(bigVal, numWords));