Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Support/
H A DAPInt.cpp231 tcMultiply(Result.U.pVal, U.pVal, RHS.U.pVal, getNumWords()); in operator *()
237 WordType *dst = U.pVal, *rhs = RHS.U.pVal; in andAssignSlowCase()
243 WordType *dst = U.pVal, *rhs = RHS.U.pVal; in orAssignSlowCase()
249 WordType *dst = U.pVal, *rhs = RHS.U.pVal; in xorAssignSlowCase()
270 return std::equal(U.pVal, U.pVal + getNumWords(), RHS.U.pVal); in equalSlowCase()
693 if ((U.pVal[i] & RHS.U.pVal[i]) != 0) in intersectsSlowCase()
701 if ((U.pVal[i] & ~RHS.U.pVal[i]) != 0) in isSubsetOfSlowCase()
912 Result.U.pVal[i] = U.pVal[i]; in trunc()
1605 divide(U.pVal, lhsWords, RHS.U.pVal, rhsWords, Quotient.U.pVal, nullptr); in udiv()
1698 divide(U.pVal, lhsWords, RHS.U.pVal, rhsWords, nullptr, Remainder.U.pVal); in urem()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DAPInt.h169 delete[] U.pVal; in ~APInt()
553 return &U.pVal[0]; in getRawData()
621 delete[] U.pVal;
644 U.pVal[0] = RHS;
674 U.pVal[0] &= RHS;
704 U.pVal[0] |= RHS;
733 U.pVal[0] ^= RHS;
1329 U.pVal[0] |= mask; in setBits()
1470 return U.pVal[0]; in getZExtValue()
1482 return int64_t(U.pVal[0]); in getSExtValue()
[all …]
/llvm-project-15.0.7/clang/include/clang/AST/
H A DTemplateBase.h123 const uint64_t *pVal;
321 return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal, NumWords)),
H A DExpr.h1454 uint64_t *pVal; ///< Used to store the >64 bits integer value. member
1469 return llvm::APInt(BitWidth, NumWords, pVal); in getIntValue()
/llvm-project-15.0.7/clang/lib/AST/
H A DTemplateBase.cpp174 Integer.pVal = static_cast<uint64_t *>(Mem); in TemplateArgument()
H A DExpr.cpp875 C.Deallocate(pVal); in setIntValue()
881 pVal = new (C) uint64_t[NumWords]; in setIntValue()
882 std::copy(Words, Words + NumWords, pVal); in setIntValue()