Home
last modified time | relevance | path

Searched refs:pVal (Results 1 – 6 of 6) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DAPInt.cpp76 U.pVal = getClearedMemory(getNumWords()); in initSlowCase()
77 U.pVal[0] = val; in initSlowCase()
80 U.pVal[i] = WORDTYPE_MAX; in initSlowCase()
85 U.pVal = getMemory(getNumWords()); in initSlowCase()
86 memcpy(U.pVal, that.U.pVal, getNumWords() * APINT_WORD_SIZE); in initSlowCase()
95 U.pVal = getClearedMemory(getNumWords()); in initFromArray()
99 memcpy(U.pVal, bigVal.data(), words * APINT_WORD_SIZE); in initFromArray()
128 delete [] U.pVal; in reallocate()
135 U.pVal = getMemory(getNumWords()); in reallocate()
150 memcpy(U.pVal, RHS.U.pVal, getNumWords() * APINT_WORD_SIZE); in assignSlowCase()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DAPInt.h169 delete[] U.pVal; in ~APInt()
560 return &U.pVal[0]; in getRawData()
628 delete[] U.pVal;
651 U.pVal[0] = RHS;
652 memset(U.pVal + 1, 0, (getNumWords() - 1) * APINT_WORD_SIZE);
681 U.pVal[0] &= RHS;
682 memset(U.pVal + 1, 0, (getNumWords() - 1) * APINT_WORD_SIZE);
711 U.pVal[0] |= RHS;
740 U.pVal[0] ^= RHS;
1302 memset(U.pVal, -1, getNumWords() * APINT_WORD_SIZE); in setAllBits()
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DTemplateBase.h122 const uint64_t *pVal;
322 return APSInt(APInt(Integer.BitWidth, ArrayRef(Integer.pVal, NumWords)),
H A DExpr.h1465 uint64_t *pVal; ///< Used to store the >64 bits integer value. member
1480 return llvm::APInt(BitWidth, NumWords, pVal); in getIntValue()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DTemplateBase.cpp174 Integer.pVal = static_cast<uint64_t *>(Mem); in TemplateArgument()
H A DExpr.cpp958 C.Deallocate(pVal); in setIntValue()
964 pVal = new (C) uint64_t[NumWords]; in setIntValue()
965 std::copy(Words, Words + NumWords, pVal); in setIntValue()