/external/llvm/lib/Support/ |
D | APInt.cpp | 79 pVal = getClearedMemory(getNumWords()); in initSlowCase() 80 pVal[0] = val; in initSlowCase() 83 pVal[i] = -1ULL; in initSlowCase() 87 pVal = getMemory(getNumWords()); in initSlowCase() 88 memcpy(pVal, that.pVal, getNumWords() * APINT_WORD_SIZE); in initSlowCase() 98 pVal = getClearedMemory(getNumWords()); in initFromArray() 102 memcpy(pVal, bigVal.data(), words * APINT_WORD_SIZE); in initFromArray() 132 memcpy(pVal, RHS.pVal, getNumWords() * APINT_WORD_SIZE); in AssignSlowCase() 140 pVal = getMemory(RHS.getNumWords()); in AssignSlowCase() 141 memcpy(pVal, RHS.pVal, RHS.getNumWords() * APINT_WORD_SIZE); in AssignSlowCase() [all …]
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | APInt.cpp | 79 pVal = getClearedMemory(getNumWords()); in initSlowCase() 80 pVal[0] = val; in initSlowCase() 83 pVal[i] = -1ULL; in initSlowCase() 87 pVal = getMemory(getNumWords()); in initSlowCase() 88 memcpy(pVal, that.pVal, getNumWords() * APINT_WORD_SIZE); in initSlowCase() 98 pVal = getClearedMemory(getNumWords()); in initFromArray() 102 memcpy(pVal, bigVal.data(), words * APINT_WORD_SIZE); in initFromArray() 132 memcpy(pVal, RHS.pVal, getNumWords() * APINT_WORD_SIZE); in AssignSlowCase() 140 pVal = getMemory(RHS.getNumWords()); in AssignSlowCase() 141 memcpy(pVal, RHS.pVal, RHS.getNumWords() * APINT_WORD_SIZE); in AssignSlowCase() [all …]
|
/external/llvm-project/llvm/lib/Support/ |
D | APInt.cpp | 78 U.pVal = getClearedMemory(getNumWords()); in initSlowCase() 79 U.pVal[0] = val; in initSlowCase() 82 U.pVal[i] = WORDTYPE_MAX; in initSlowCase() 87 U.pVal = getMemory(getNumWords()); in initSlowCase() 88 memcpy(U.pVal, that.U.pVal, getNumWords() * APINT_WORD_SIZE); in initSlowCase() 98 U.pVal = getClearedMemory(getNumWords()); in initFromArray() 102 memcpy(U.pVal, bigVal.data(), words * APINT_WORD_SIZE); in initFromArray() 133 delete [] U.pVal; in reallocate() 140 U.pVal = getMemory(getNumWords()); in reallocate() 155 memcpy(U.pVal, RHS.U.pVal, getNumWords() * APINT_WORD_SIZE); in AssignSlowCase() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | APInt.cpp | 78 U.pVal = getClearedMemory(getNumWords()); in initSlowCase() 79 U.pVal[0] = val; in initSlowCase() 82 U.pVal[i] = WORDTYPE_MAX; in initSlowCase() 87 U.pVal = getMemory(getNumWords()); in initSlowCase() 88 memcpy(U.pVal, that.U.pVal, getNumWords() * APINT_WORD_SIZE); in initSlowCase() 98 U.pVal = getClearedMemory(getNumWords()); in initFromArray() 102 memcpy(U.pVal, bigVal.data(), words * APINT_WORD_SIZE); in initFromArray() 133 delete [] U.pVal; in reallocate() 140 U.pVal = getMemory(getNumWords()); in reallocate() 155 memcpy(U.pVal, RHS.U.pVal, getNumWords() * APINT_WORD_SIZE); in AssignSlowCase() [all …]
|
/external/libese/third_party/NXPNFC_P61_JCOP_Kit/include/ |
D | AlaLib.h | 86 inline int FSCANF_BYTE(FILE *stream, const char *format, void* pVal) in FSCANF_BYTE() argument 90 if((NULL != stream) && (NULL != format) && (NULL != pVal)) in FSCANF_BYTE() 93 unsigned char* pTmp = (unsigned char*)pVal; in FSCANF_BYTE()
|
/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() 645 if (pVal[i]) 676 delete[] pVal; 727 pVal[0] |= RHS; 970 (isSingleWord() ? VAL : pVal[whichWord(bitPosition)])) != [all …]
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | APInt.h | 84 uint64_t *pVal; ///< Used to store the >64 bits integer value. member 102 APInt(uint64_t *val, unsigned bits) : BitWidth(bits), pVal(val) {} in APInt() 154 pVal[getNumWords() - 1] &= mask; in clearUnusedBits() 161 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)]; in getWord() 298 delete[] pVal; in ~APInt() 581 return &pVal[0]; in getRawData() 637 if (pVal[i]) 668 delete[] pVal; 719 pVal[0] |= RHS; 946 (isSingleWord() ? VAL : pVal[whichWord(bitPosition)])) != [all …]
|
/external/llvm-project/llvm/include/llvm/ADT/ |
D | APInt.h | 95 uint64_t *pVal; ///< Used to store the >64 bits integer value. member 109 U.pVal = val; 157 U.pVal[getNumWords() - 1] &= mask; 164 return isSingleWord() ? U.VAL : U.pVal[whichWord(bitPosition)]; 338 delete[] U.pVal; 697 return &U.pVal[0]; 775 delete[] U.pVal; 799 U.pVal[0] = RHS; 800 memset(U.pVal + 1, 0, (getNumWords() - 1) * APINT_WORD_SIZE); 829 U.pVal[0] &= RHS; [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | APInt.h | 94 uint64_t *pVal; ///< Used to store the >64 bits integer value. member 108 U.pVal = val; in APInt() 156 U.pVal[getNumWords() - 1] &= mask; in clearUnusedBits() 163 return isSingleWord() ? U.VAL : U.pVal[whichWord(bitPosition)]; in getWord() 337 delete[] U.pVal; in ~APInt() 694 return &U.pVal[0]; in getRawData() 772 delete[] U.pVal; 796 U.pVal[0] = RHS; 797 memset(U.pVal+1, 0, (getNumWords() - 1) * APINT_WORD_SIZE); 827 U.pVal[0] &= RHS; [all …]
|
/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/mesa3d/src/mesa/program/ |
D | prog_parameter.c | 348 gl_constant_value *pVal = paramList->ParameterValues + offset; in _mesa_add_typed_unnamed_constant() local 350 pVal[p->Size] = values[0]; in _mesa_add_typed_unnamed_constant()
|
/external/pdfium/core/fxcrt/css/ |
D | cfx_cssstyleselector.cpp | 567 const RetainPtr<CFX_CSSValue> pVal = pValue->GetValue(i); in ToTextDecoration() local 568 if (pVal->GetType() != CFX_CSSPrimitiveType::Enum) in ToTextDecoration() 571 switch (pVal.As<CFX_CSSEnumValue>()->Value()) { in ToTextDecoration()
|
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/audio/ |
D | Sonic.java | 236 short pVal = samples[position + period + i]; in findPitchPeriodInRange() local 237 diff += Math.abs(sVal - pVal); in findPitchPeriodInRange()
|
/external/clang/include/clang/AST/ |
D | TemplateBase.h | 92 const uint64_t *pVal; ///< Used to store the >64 bits integer value. member 289 return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal, NumWords)), in getAsIntegral()
|
/external/llvm-project/clang/include/clang/AST/ |
D | TemplateBase.h | 124 const uint64_t *pVal; 322 return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal, NumWords)),
|
/external/rust/crates/libsqlite3-sys/sqlite3/ |
D | sqlite3.c | 77061 static SQLITE_NOINLINE const void *valueToText(sqlite3_value* pVal, u8 enc){ 77062 assert( pVal!=0 ); 77063 assert( pVal->db==0 || sqlite3_mutex_held(pVal->db->mutex) ); 77065 assert( !sqlite3VdbeMemIsRowSet(pVal) ); 77066 assert( (pVal->flags & (MEM_Null))==0 ); 77067 if( pVal->flags & (MEM_Blob|MEM_Str) ){ 77068 if( ExpandBlob(pVal) ) return 0; 77069 pVal->flags |= MEM_Str; 77070 if( pVal->enc != (enc & ~SQLITE_UTF16_ALIGNED) ){ 77071 sqlite3VdbeChangeEncoding(pVal, enc & ~SQLITE_UTF16_ALIGNED); [all …]
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 76870 static SQLITE_NOINLINE const void *valueToText(sqlite3_value* pVal, u8 enc){ 76871 assert( pVal!=0 ); 76872 assert( pVal->db==0 || sqlite3_mutex_held(pVal->db->mutex) ); 76874 assert( !sqlite3VdbeMemIsRowSet(pVal) ); 76875 assert( (pVal->flags & (MEM_Null))==0 ); 76876 if( pVal->flags & (MEM_Blob|MEM_Str) ){ 76877 if( ExpandBlob(pVal) ) return 0; 76878 pVal->flags |= MEM_Str; 76879 if( pVal->enc != (enc & ~SQLITE_UTF16_ALIGNED) ){ 76880 sqlite3VdbeChangeEncoding(pVal, enc & ~SQLITE_UTF16_ALIGNED); [all …]
|
D | shell.c | 5774 sqlite3_value *pVal, in zipfileGetMode() argument 5779 const char *z = (const char*)sqlite3_value_text(pVal); in zipfileGetMode() 5784 mode = (unsigned int)sqlite3_value_int(pVal); in zipfileGetMode() 5885 static u32 zipfileGetTime(sqlite3_value *pVal){ in zipfileGetTime() argument 5886 if( pVal==0 || sqlite3_value_type(pVal)==SQLITE_NULL ){ in zipfileGetTime() 5889 return (u32)sqlite3_value_int64(pVal); in zipfileGetTime() 7456 sqlite3_value *pVal; in expertColumn() local 7457 pVal = sqlite3_column_value(pCsr->pData, i); in expertColumn() 7458 if( pVal ){ in expertColumn() 7459 sqlite3_result_value(ctx, pVal); in expertColumn() [all …]
|
/external/sqlite/dist/ |
D | sqlite3.c | 76886 static SQLITE_NOINLINE const void *valueToText(sqlite3_value* pVal, u8 enc){ 76887 assert( pVal!=0 ); 76888 assert( pVal->db==0 || sqlite3_mutex_held(pVal->db->mutex) ); 76890 assert( !sqlite3VdbeMemIsRowSet(pVal) ); 76891 assert( (pVal->flags & (MEM_Null))==0 ); 76892 if( pVal->flags & (MEM_Blob|MEM_Str) ){ 76893 if( ExpandBlob(pVal) ) return 0; 76894 pVal->flags |= MEM_Str; 76895 if( pVal->enc != (enc & ~SQLITE_UTF16_ALIGNED) ){ 76896 sqlite3VdbeChangeEncoding(pVal, enc & ~SQLITE_UTF16_ALIGNED); [all …]
|
D | shell.c | 5779 sqlite3_value *pVal, in zipfileGetMode() argument 5784 const char *z = (const char*)sqlite3_value_text(pVal); in zipfileGetMode() 5789 mode = (unsigned int)sqlite3_value_int(pVal); in zipfileGetMode() 5890 static u32 zipfileGetTime(sqlite3_value *pVal){ in zipfileGetTime() argument 5891 if( pVal==0 || sqlite3_value_type(pVal)==SQLITE_NULL ){ in zipfileGetTime() 5894 return (u32)sqlite3_value_int64(pVal); in zipfileGetTime() 7461 sqlite3_value *pVal; in expertColumn() local 7462 pVal = sqlite3_column_value(pCsr->pData, i); in expertColumn() 7463 if( pVal ){ in expertColumn() 7464 sqlite3_result_value(ctx, pVal); in expertColumn() [all …]
|
/external/clang/lib/AST/ |
D | TemplateBase.cpp | 83 Integer.pVal = static_cast<uint64_t *>(Mem); in TemplateArgument()
|
D | Expr.cpp | 694 C.Deallocate(pVal); in setIntValue() 700 pVal = new (C) uint64_t[NumWords]; in setIntValue() 701 std::copy(Words, Words + NumWords, pVal); in setIntValue()
|
/external/llvm-project/clang/lib/AST/ |
D | TemplateBase.cpp | 98 Integer.pVal = static_cast<uint64_t *>(Mem); in TemplateArgument()
|
/external/mesa3d/src/gallium/drivers/swr/ |
D | swr_shader.cpp | 338 void WriteVS(Value *pVal, Value *pVsContext, Value *pVtxOutput, 2296 BuilderSWR::WriteVS(Value *pVal, Value *pVsContext, Value *pVtxOutput, unsigned slot, unsigned chan… in WriteVS() argument 2305 STORE(pVal, pOut, {channel * 2}); in WriteVS() 2308 STORE(pVal, pOut, {0, channel}); in WriteVS() 2311 lp_build_print_value(gallivm, "", wrap(pVal)); in WriteVS()
|