Lines Matching refs:pVal
82 uint64_t *pVal; ///< Used to store the >64 bits integer value. member
97 APInt(uint64_t* val, unsigned bits) : BitWidth(bits), pVal(val) { } in APInt()
146 pVal[getNumWords() - 1] &= mask; in clearUnusedBits()
153 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)]; in getWord()
287 delete [] pVal; in ~APInt()
540 return &pVal[0]; in getRawData()
594 if (pVal[i])
619 delete [] pVal;
659 pVal[0] |= RHS;
856 (isSingleWord() ? VAL : pVal[whichWord(bitPosition)])) != 0;
1098 pVal[i] = UINT64_MAX; in setAllBits()
1113 memset(pVal, 0, getNumWords() * APINT_WORD_SIZE); in clearAllBits()
1126 pVal[i] ^= UINT64_MAX; in flipAllBits()
1197 return pVal[0]; in getZExtValue()
1209 return int64_t(pVal[0]); in getSExtValue()
1332 T.I = (isSingleWord() ? VAL : pVal[0]); in bitsToDouble()
1345 T.I = unsigned((isSingleWord() ? VAL : pVal[0])); in bitsToFloat()