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

/external/llvm/lib/Support/
H A DAPInt.cpp90 void APInt::initFromArray(ArrayRef<uint64_t> bigVal) { argument
92 assert(bigVal.data() && "Null pointer detected!");
94 VAL = bigVal[0];
99 unsigned words = std::min<unsigned>(bigVal.size(), getNumWords());
100 // Copy the words from bigVal to pVal
101 memcpy(pVal, bigVal.data(), words * APINT_WORD_SIZE);
107 APInt::APInt(unsigned numBits, ArrayRef<uint64_t> bigVal) argument
109 initFromArray(bigVal);
112 APInt::APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[]) argument
114 initFromArray(makeArrayRef(bigVal, numWord
[all...]
/external/llvm/include/llvm/ADT/
H A DAPInt.h246 /// \brief Construct an APInt of numBits width, initialized as bigVal[].
248 /// Note that bigVal.size() can be smaller or larger than the corresponding
252 /// \param bigVal a sequence of words to form the initial value of the APInt
253 APInt(unsigned numBits, ArrayRef<uint64_t> bigVal);
255 /// Equivalent to APInt(numBits, ArrayRef<uint64_t>(bigVal, numWords)), but
262 APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[]);

Completed in 679 milliseconds