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