Searched refs:pVal (Results 1 – 9 of 9) sorted by relevance
/freebsd/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 …]
|
/freebsd/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 …]
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | TemplateBase.h | 137 const uint64_t *pVal; 372 return APSInt(APInt(Integer.BitWidth, ArrayRef(Integer.pVal, NumWords)),
|
/freebsd/contrib/sqlite3/tea/generic/ |
H A D | tclsqlite3.c | 998 Tcl_Obj *pVal; in tclSqlFunc() local 1004 pVal = Tcl_NewByteArrayObj(sqlite3_value_blob(pIn), bytes); in tclSqlFunc() 1010 pVal = Tcl_NewIntObj((int)v); in tclSqlFunc() 1012 pVal = Tcl_NewWideIntObj(v); in tclSqlFunc() 1018 pVal = Tcl_NewDoubleObj(r); in tclSqlFunc() 1022 pVal = Tcl_NewStringObj(p->pDb->zNull, -1); in tclSqlFunc() 1027 pVal = Tcl_NewStringObj((char *)sqlite3_value_text(pIn), bytes); in tclSqlFunc() 1031 rc = Tcl_ListObjAppendElement(p->interp, pCmd, pVal); in tclSqlFunc()
|
/freebsd/contrib/sqlite3/ |
H A D | sqlite3.c | 10438 SQLITE_API int sqlite3_vtab_in_first(sqlite3_value *pVal, sqlite3_value **ppOut); 10439 SQLITE_API int sqlite3_vtab_in_next(sqlite3_value *pVal, sqlite3_value **ppOut); 20483 SQLITE_PRIVATE void sqlite3MultiValuesEnd(Parse *pParse, Select *pVal); 84105 static SQLITE_NOINLINE const void *valueToText(sqlite3_value* pVal, u8 enc){ 84106 assert( pVal!=0 ); 84107 assert( pVal->db==0 || sqlite3_mutex_held(pVal->db->mutex) ); 84109 assert( !sqlite3VdbeMemIsRowSet(pVal) ); 84110 assert( (pVal->flags & (MEM_Null))==0 ); 84111 if( pVal->flags & (MEM_Blob|MEM_Str) ){ 84112 if( ExpandBlob(pVal) ) return 0; [all …]
|
H A D | sqlite3.h | 10125 SQLITE_API int sqlite3_vtab_in_first(sqlite3_value *pVal, sqlite3_value **ppOut); 10126 SQLITE_API int sqlite3_vtab_in_next(sqlite3_value *pVal, sqlite3_value **ppOut);
|
H A D | shell.c | 10792 sqlite3_value *pVal, in zipfileGetMode() argument 10797 const char *z = (const char*)sqlite3_value_text(pVal); in zipfileGetMode() 10802 mode = (unsigned int)sqlite3_value_int(pVal); in zipfileGetMode() 10904 static u32 zipfileGetTime(sqlite3_value *pVal){ in zipfileGetTime() argument 10905 if( pVal==0 || sqlite3_value_type(pVal)==SQLITE_NULL ){ in zipfileGetTime() 10908 return (u32)sqlite3_value_int64(pVal); in zipfileGetTime() 12516 sqlite3_value *pVal; in expertColumn() local 12517 pVal = sqlite3_column_value(pCsr->pData, i); in expertColumn() 12518 if( pVal ){ in expertColumn() 12519 sqlite3_result_value(ctx, pVal); in expertColumn() [all …]
|
/freebsd/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()
|