Searched refs:pVal (Results 1 – 10 of 10) sorted by relevance
/external/llvm/lib/Support/ |
D | APInt.cpp | 77 pVal = getClearedMemory(getNumWords()); in initSlowCase() 78 pVal[0] = val; in initSlowCase() 81 pVal[i] = -1ULL; in initSlowCase() 85 pVal = getMemory(getNumWords()); in initSlowCase() 86 memcpy(pVal, that.pVal, getNumWords() * APINT_WORD_SIZE); in initSlowCase() 96 pVal = getClearedMemory(getNumWords()); in initFromArray() 100 memcpy(pVal, bigVal.data(), words * APINT_WORD_SIZE); in initFromArray() 130 memcpy(pVal, RHS.pVal, getNumWords() * APINT_WORD_SIZE); in AssignSlowCase() 138 pVal = getMemory(RHS.getNumWords()); in AssignSlowCase() 139 memcpy(pVal, RHS.pVal, RHS.getNumWords() * APINT_WORD_SIZE); in AssignSlowCase() [all …]
|
/external/llvm/include/llvm/ADT/ |
D | APInt.h | 81 uint64_t *pVal; ///< Used to store the >64 bits integer value. member 96 APInt(uint64_t* val, unsigned bits) : BitWidth(bits), pVal(val) { } in APInt() 145 pVal[getNumWords() - 1] &= mask; in clearUnusedBits() 152 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)]; in getWord() 279 delete [] pVal; in ~APInt() 357 return APInt(N, makeArrayRef(pVal, getNumWords())).zext(getBitWidth()) in isIntN() 515 return &pVal[0]; in getRawData() 569 if (pVal[i]) 619 pVal[0] |= RHS; 848 (isSingleWord() ? VAL : pVal[whichWord(bitPosition)])) != 0; [all …]
|
/external/valgrind/main/include/ |
D | pub_tool_wordfm.h | 147 /*OUT*/UWord* pKey, /*OUT*/UWord* pVal ); 208 Bool VG_(nextIterBag)( WordBag*, /*OUT*/UWord* pVal, /*OUT*/UWord* pCount );
|
/external/valgrind/main/coregrind/ |
D | m_wordfm.c | 764 Bool VG_(nextIterFM) ( WordFM* fm, /*OUT*/UWord* pKey, /*OUT*/UWord* pVal ) in VG_() 785 if (pVal) *pVal = n->val; in VG_() 967 Bool VG_(nextIterBag)( WordBag* bag, /*OUT*/UWord* pVal, /*OUT*/UWord* pCount ) in VG_() 969 return VG_(nextIterFM)( bag->fm, pVal, pCount ); in VG_()
|
/external/llvm/test/CodeGen/X86/ |
D | 2012-02-20-MachineCPBug.ll | 25 %pVal.i = getelementptr inbounds %struct.APInt* %this, i32 0, i32 0 26 %.pre5.i = load i64** %pVal.i, align 4
|
/external/valgrind/main/cachegrind/ |
D | cg_merge.c | 95 Bool nextIterFM ( WordFM* fm, /*OUT*/Word* pKey, /*OUT*/Word* pVal ); 1500 Bool nextIterFM ( WordFM* fm, /*OUT*/Word* pKey, /*OUT*/Word* pVal ) in nextIterFM() argument 1520 if (pVal) *pVal = n->val; in nextIterFM()
|
/external/sqlite/dist/ |
D | sqlite3.c | 13629 int *pVal; in getDigits() local 13637 pVal = va_arg(ap, int*); in getDigits() 13649 *pVal = val; in getDigits() 59318 SQLITE_PRIVATE const void *sqlite3ValueText(sqlite3_value* pVal, u8 enc){ 59319 if( !pVal ) return 0; 59321 assert( pVal->db==0 || sqlite3_mutex_held(pVal->db->mutex) ); 59323 assert( (pVal->flags & MEM_RowSet)==0 ); 59325 if( pVal->flags&MEM_Null ){ 59329 pVal->flags |= (pVal->flags & MEM_Blob)>>3; 59330 ExpandBlob(pVal); [all …]
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 13629 int *pVal; in getDigits() local 13637 pVal = va_arg(ap, int*); in getDigits() 13649 *pVal = val; in getDigits() 59307 SQLITE_PRIVATE const void *sqlite3ValueText(sqlite3_value* pVal, u8 enc){ 59308 if( !pVal ) return 0; 59310 assert( pVal->db==0 || sqlite3_mutex_held(pVal->db->mutex) ); 59312 assert( (pVal->flags & MEM_RowSet)==0 ); 59314 if( pVal->flags&MEM_Null ){ 59318 pVal->flags |= (pVal->flags & MEM_Blob)>>3; 59319 ExpandBlob(pVal); [all …]
|
/external/clang/lib/AST/ |
D | Expr.cpp | 534 C.Deallocate(pVal); in setIntValue() 540 pVal = new (C) uint64_t[NumWords]; in setIntValue() 541 std::copy(Words, Words + NumWords, pVal); in setIntValue()
|
/external/clang/include/clang/AST/ |
D | Expr.h | 1097 uint64_t *pVal; ///< Used to store the >64 bits integer value. member 1112 return llvm::APInt(BitWidth, NumWords, pVal); in getIntValue()
|