Searched refs:bigVal (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp91 void APInt::initFromArray(ArrayRef<uint64_t> bigVal) { argument
93 assert(bigVal.data() && "Null pointer detected!");
95 U.VAL = bigVal[0];
100 unsigned words = std::min<unsigned>(bigVal.size(), getNumWords());
101 // Copy the words from bigVal to pVal
102 memcpy(U.pVal, bigVal.data(), words * APINT_WORD_SIZE);
108 APInt::APInt(unsigned numBits, ArrayRef<uint64_t> bigVal) argument
110 initFromArray(bigVal);
113 APInt::APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[]) argument
115 initFromArray(makeArrayRef(bigVal, numWord
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h288 /// Construct an APInt of numBits width, initialized as bigVal[].
290 /// Note that bigVal.size() can be smaller or larger than the corresponding
294 /// \param bigVal a sequence of words to form the initial value of the APInt
295 APInt(unsigned numBits, ArrayRef<uint64_t> bigVal);
297 /// Equivalent to APInt(numBits, ArrayRef<uint64_t>(bigVal, numWords)), but
304 APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[]);

Completed in 86 milliseconds