/external/llvm/lib/Support/ |
D | 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 …]
|
/external/llvm/include/llvm/ADT/ |
D | 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() 577 return &pVal[0]; in getRawData() 640 if (pVal[i]) 671 delete[] pVal; 722 pVal[0] |= RHS; 965 (isSingleWord() ? VAL : pVal[whichWord(bitPosition)])) != [all …]
|
/external/valgrind/include/ |
D | pub_tool_wordfm.h | 145 /*OUT*/UWord* pKey, /*OUT*/UWord* pVal ); 203 Bool VG_(nextIterBag)( WordBag*, /*OUT*/UWord* pVal, /*OUT*/UWord* pCount );
|
/external/valgrind/coregrind/ |
D | m_wordfm.c | 755 Bool VG_(nextIterFM) ( WordFM* fm, /*OUT*/UWord* pKey, /*OUT*/UWord* pVal ) in VG_() 776 if (pVal) *pVal = n->val; in VG_() 952 Bool VG_(nextIterBag)( WordBag* bag, /*OUT*/UWord* pVal, /*OUT*/UWord* pCount ) in VG_() 954 return VG_(nextIterFM)( bag->fm, pVal, pCount ); in VG_()
|
/external/sonic/ |
D | Sonic.java | 529 short pVal = samples[position + period + i]; in findPitchPeriodInRange() local 530 diff += sVal >= pVal? sVal - pVal : pVal - sVal; in findPitchPeriodInRange()
|
D | sonic.c | 618 short *s, *p, sVal, pVal; in findPitchPeriodInRange() local 628 pVal = *p++; in findPitchPeriodInRange() 629 diff += sVal >= pVal? (unsigned short)(sVal - pVal) : in findPitchPeriodInRange() 630 (unsigned short)(pVal - sVal); in findPitchPeriodInRange()
|
/external/clang/include/clang/AST/ |
D | 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()
|
D | Expr.h | 1236 uint64_t *pVal; ///< Used to store the >64 bits integer value. member 1251 return llvm::APInt(BitWidth, NumWords, pVal); in getIntValue()
|
/external/mesa3d/src/mesa/program/ |
D | prog_parameter.c | 267 gl_constant_value *pVal = paramList->ParameterValues[pos]; in _mesa_add_typed_unnamed_constant() local 269 pVal[p->Size] = values[0]; in _mesa_add_typed_unnamed_constant()
|
/external/valgrind/cachegrind/ |
D | cg_merge.c | 95 Bool nextIterFM ( WordFM* fm, /*OUT*/Word* pKey, /*OUT*/Word* pVal ); 1511 Bool nextIterFM ( WordFM* fm, /*OUT*/Word* pKey, /*OUT*/Word* pVal ) in nextIterFM() argument 1531 if (pVal) *pVal = n->val; in nextIterFM()
|
/external/clang/lib/AST/ |
D | TemplateBase.cpp | 83 Integer.pVal = static_cast<uint64_t *>(Mem); in TemplateArgument()
|
D | 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()
|
/external/sqlite/dist/ |
D | sqlite3.c | 15415 int *pVal; in getDigits() local 15423 pVal = va_arg(ap, int*); in getDigits() 15435 *pVal = val; in getDigits() 64109 static SQLITE_NOINLINE const void *valueToText(sqlite3_value* pVal, u8 enc){ 64110 assert( pVal!=0 ); 64111 assert( pVal->db==0 || sqlite3_mutex_held(pVal->db->mutex) ); 64113 assert( (pVal->flags & MEM_RowSet)==0 ); 64114 assert( (pVal->flags & (MEM_Null))==0 ); 64115 if( pVal->flags & (MEM_Blob|MEM_Str) ){ 64116 pVal->flags |= MEM_Str; [all …]
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 15415 int *pVal; in getDigits() local 15423 pVal = va_arg(ap, int*); in getDigits() 15435 *pVal = val; in getDigits() 64091 static SQLITE_NOINLINE const void *valueToText(sqlite3_value* pVal, u8 enc){ 64092 assert( pVal!=0 ); 64093 assert( pVal->db==0 || sqlite3_mutex_held(pVal->db->mutex) ); 64095 assert( (pVal->flags & MEM_RowSet)==0 ); 64096 assert( (pVal->flags & (MEM_Null))==0 ); 64097 if( pVal->flags & (MEM_Blob|MEM_Str) ){ 64098 pVal->flags |= MEM_Str; [all …]
|