Home
last modified time | relevance | path

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

/external/llvm/lib/Support/
DAPInt.cpp77 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/
DAPInt.h82 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;
[all …]
/external/valgrind/main/include/
Dpub_tool_wordfm.h147 /*OUT*/UWord* pKey, /*OUT*/UWord* pVal );
208 Bool VG_(nextIterBag)( WordBag*, /*OUT*/UWord* pVal, /*OUT*/UWord* pCount );
/external/valgrind/main/coregrind/
Dm_wordfm.c764 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/
D2012-02-20-MachineCPBug.ll25 %pVal.i = getelementptr inbounds %struct.APInt* %this, i32 0, i32 0
26 %.pre5.i = load i64** %pVal.i, align 4
/external/clang/include/clang/AST/
DTemplateBase.h85 const uint64_t *pVal; ///< Used to store the >64 bits integer value. member
279 return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal, NumWords)), in getAsIntegral()
DExpr.h1193 uint64_t *pVal; ///< Used to store the >64 bits integer value. member
1208 return llvm::APInt(BitWidth, NumWords, pVal); in getIntValue()
/external/valgrind/main/cachegrind/
Dcg_merge.c95 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/clang/lib/AST/
DTemplateBase.cpp68 Integer.pVal = static_cast<uint64_t *>(Mem); in TemplateArgument()
DExpr.cpp611 C.Deallocate(pVal); in setIntValue()
617 pVal = new (C) uint64_t[NumWords]; in setIntValue()
618 std::copy(Words, Words + NumWords, pVal); in setIntValue()
/external/sqlite/dist/
Dsqlite3.c13629 int *pVal; in getDigits() local
13637 pVal = va_arg(ap, int*); in getDigits()
13649 *pVal = val; in getDigits()
59335 SQLITE_PRIVATE const void *sqlite3ValueText(sqlite3_value* pVal, u8 enc){
59336 if( !pVal ) return 0;
59338 assert( pVal->db==0 || sqlite3_mutex_held(pVal->db->mutex) );
59340 assert( (pVal->flags & MEM_RowSet)==0 );
59342 if( pVal->flags&MEM_Null ){
59346 pVal->flags |= (pVal->flags & MEM_Blob)>>3;
59347 ExpandBlob(pVal);
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c13629 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 …]