Searched refs:pVal (Results 1 – 10 of 10) sorted by relevance
| /src/contrib/llvm-project/llvm/lib/Support/ |
| H A D | APInt.cpp | 77 U.pVal = getClearedMemory(getNumWords()); in initSlowCase() 78 U.pVal[0] = val; in initSlowCase() 81 U.pVal[i] = WORDTYPE_MAX; in initSlowCase() 86 U.pVal = getMemory(getNumWords()); in initSlowCase() 87 memcpy(U.pVal, that.U.pVal, getNumWords() * APINT_WORD_SIZE); in initSlowCase() 96 U.pVal = getClearedMemory(getNumWords()); in initFromArray() 100 memcpy(U.pVal, bigVal.data(), words * APINT_WORD_SIZE); in initFromArray() 129 delete [] U.pVal; in reallocate() 136 U.pVal = getMemory(getNumWords()); in reallocate() 151 memcpy(U.pVal, RHS.U.pVal, getNumWords() * APINT_WORD_SIZE); in assignSlowCase() [all …]
|
| /src/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | APInt.h | 172 delete[] U.pVal; in ~APInt() 552 return &U.pVal[0]; in getRawData() 620 delete[] U.pVal; 643 U.pVal[0] = RHS; 644 memset(U.pVal + 1, 0, (getNumWords() - 1) * APINT_WORD_SIZE); 673 U.pVal[0] &= RHS; 674 memset(U.pVal + 1, 0, (getNumWords() - 1) * APINT_WORD_SIZE); 703 U.pVal[0] |= RHS; 732 U.pVal[0] ^= RHS; 1304 memset(U.pVal, -1, getNumWords() * APINT_WORD_SIZE); in setAllBits() [all …]
|
| /src/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | APNumericStorage.h | 29 uint64_t *pVal; ///< Used to store the >64 bits integer value. member 44 return llvm::APInt(BitWidth, NumWords, pVal); in getIntValue()
|
| H A D | TemplateBase.h | 137 const uint64_t *pVal; 372 return APSInt(APInt(Integer.BitWidth, ArrayRef(Integer.pVal, NumWords)),
|
| /src/contrib/sqlite3/ |
| H A D | sqlite3.c | 10668 SQLITE_API int sqlite3_vtab_in_first(sqlite3_value *pVal, sqlite3_value **ppOut); 10669 SQLITE_API int sqlite3_vtab_in_next(sqlite3_value *pVal, sqlite3_value **ppOut); 20958 SQLITE_PRIVATE void sqlite3MultiValuesEnd(Parse *pParse, Select *pVal); 85162 static SQLITE_NOINLINE const void *valueToText(sqlite3_value* pVal, u8 enc){ 85163 assert( pVal!=0 ); 85164 assert( pVal->db==0 || sqlite3_mutex_held(pVal->db->mutex) ); 85166 assert( !sqlite3VdbeMemIsRowSet(pVal) ); 85167 assert( (pVal->flags & (MEM_Null))==0 ); 85168 if( pVal->flags & (MEM_Blob|MEM_Str) ){ 85169 if( ExpandBlob(pVal) ) return 0; [all …]
|
| H A D | shell.c | 2958 static void sha3UpdateFromValue(SHA3Context *p, sqlite3_value *pVal){ in sha3UpdateFromValue() argument 2959 switch( sqlite3_value_type(pVal) ){ in sha3UpdateFromValue() 2968 sqlite3_int64 v = sqlite3_value_int64(pVal); in sha3UpdateFromValue() 2982 double r = sqlite3_value_double(pVal); in sha3UpdateFromValue() 2993 int n2 = sqlite3_value_bytes(pVal); in sha3UpdateFromValue() 2994 const unsigned char *z2 = sqlite3_value_text(pVal); in sha3UpdateFromValue() 3000 int n2 = sqlite3_value_bytes(pVal); in sha3UpdateFromValue() 3001 const unsigned char *z2 = sqlite3_value_blob(pVal); in sha3UpdateFromValue() 11631 sqlite3_value *pVal, in zipfileGetMode() argument 11636 const char *z = (const char*)sqlite3_value_text(pVal); in zipfileGetMode() [all …]
|
| H A D | sqlite3.h | 10349 SQLITE_API int sqlite3_vtab_in_first(sqlite3_value *pVal, sqlite3_value **ppOut); 10350 SQLITE_API int sqlite3_vtab_in_next(sqlite3_value *pVal, sqlite3_value **ppOut);
|
| /src/contrib/sqlite3/tea/generic/ |
| H A D | tclsqlite3.c | 1042 Tcl_Obj *pVal; in tclSqlFunc() local 1048 pVal = Tcl_NewByteArrayObj(sqlite3_value_blob(pIn), bytes); in tclSqlFunc() 1054 pVal = Tcl_NewIntObj((int)v); in tclSqlFunc() 1056 pVal = Tcl_NewWideIntObj(v); in tclSqlFunc() 1062 pVal = Tcl_NewDoubleObj(r); in tclSqlFunc() 1066 pVal = Tcl_NewStringObj(p->pDb->zNull, -1); in tclSqlFunc() 1071 pVal = Tcl_NewStringObj((char *)sqlite3_value_text(pIn), bytes); in tclSqlFunc() 1075 rc = Tcl_ListObjAppendElement(p->interp, pCmd, pVal); in tclSqlFunc()
|
| /src/contrib/llvm-project/clang/lib/AST/ |
| H A D | TemplateBase.cpp | 193 Integer.pVal = static_cast<uint64_t *>(Mem); in initFromIntegral()
|
| H A D | Expr.cpp | 952 C.Deallocate(pVal); in setIntValue() 958 pVal = new (C) uint64_t[NumWords]; in setIntValue() 959 std::copy(Words, Words + NumWords, pVal); in setIntValue()
|