Searched refs:pVal (Results 1 – 8 of 8) sorted by relevance
| /NextBSD/contrib/llvm/lib/Support/ |
| HD | APInt.cpp | 78 pVal = getClearedMemory(getNumWords()); in initSlowCase() 79 pVal[0] = val; in initSlowCase() 82 pVal[i] = -1ULL; in initSlowCase() 86 pVal = getMemory(getNumWords()); in initSlowCase() 87 memcpy(pVal, that.pVal, getNumWords() * APINT_WORD_SIZE); in initSlowCase() 97 pVal = getClearedMemory(getNumWords()); in initFromArray() 101 memcpy(pVal, bigVal.data(), words * APINT_WORD_SIZE); in initFromArray() 131 memcpy(pVal, RHS.pVal, getNumWords() * APINT_WORD_SIZE); in AssignSlowCase() 139 pVal = getMemory(RHS.getNumWords()); in AssignSlowCase() 140 memcpy(pVal, RHS.pVal, RHS.getNumWords() * APINT_WORD_SIZE); in AssignSlowCase() [all …]
|
| /NextBSD/contrib/llvm/include/llvm/ADT/ |
| HD | APInt.h | 80 uint64_t *pVal; ///< Used to store the >64 bits integer value. member 98 APInt(uint64_t *val, unsigned bits) : BitWidth(bits), pVal(val) {} in APInt() 150 pVal[getNumWords() - 1] &= mask; in clearUnusedBits() 157 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)]; in getWord() 294 delete[] pVal; in ~APInt() 576 return &pVal[0]; in getRawData() 639 if (pVal[i]) 670 delete[] pVal; 721 pVal[0] |= RHS; 964 (isSingleWord() ? VAL : pVal[whichWord(bitPosition)])) != [all …]
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/AST/ |
| HD | TemplateBase.h | 91 const uint64_t *pVal; ///< Used to store the >64 bits integer value. member 291 return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal, NumWords)), in getAsIntegral()
|
| HD | Expr.h | 1238 uint64_t *pVal; ///< Used to store the >64 bits integer value. member 1253 return llvm::APInt(BitWidth, NumWords, pVal); in getIntValue()
|
| /NextBSD/contrib/sqlite3/ |
| HD | sqlite3.c | 15524 int *pVal; in getDigits() local 15532 pVal = va_arg(ap, int*); in getDigits() 15544 *pVal = val; in getDigits() 65194 static SQLITE_NOINLINE const void *valueToText(sqlite3_value* pVal, u8 enc){ 65195 assert( pVal!=0 ); 65196 assert( pVal->db==0 || sqlite3_mutex_held(pVal->db->mutex) ); 65198 assert( (pVal->flags & MEM_RowSet)==0 ); 65199 assert( (pVal->flags & (MEM_Null))==0 ); 65200 if( pVal->flags & (MEM_Blob|MEM_Str) ){ 65201 pVal->flags |= MEM_Str; [all …]
|
| /NextBSD/crypto/heimdal/lib/sqlite/ |
| HD | sqlite3.c | 13298 int *pVal; in getDigits() local 13306 pVal = va_arg(ap, int*); in getDigits() 13318 *pVal = val; in getDigits() 58102 SQLITE_PRIVATE const void *sqlite3ValueText(sqlite3_value* pVal, u8 enc){ 58103 if( !pVal ) return 0; 58105 assert( pVal->db==0 || sqlite3_mutex_held(pVal->db->mutex) ); 58107 assert( (pVal->flags & MEM_RowSet)==0 ); 58109 if( pVal->flags&MEM_Null ){ 58113 pVal->flags |= (pVal->flags & MEM_Blob)>>3; 58114 expandBlob(pVal); [all …]
|
| /NextBSD/contrib/llvm/tools/clang/lib/AST/ |
| HD | TemplateBase.cpp | 83 Integer.pVal = static_cast<uint64_t *>(Mem); in TemplateArgument()
|
| HD | Expr.cpp | 700 C.Deallocate(pVal); in setIntValue() 706 pVal = new (C) uint64_t[NumWords]; in setIntValue() 707 std::copy(Words, Words + NumWords, pVal); in setIntValue()
|