Searched refs:pVal (Results 1 – 9 of 9) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | APInt.cpp | 76 U.pVal = getMemory(getNumWords()); in initSlowCase() 77 U.pVal[0] = val; in initSlowCase() 78 memset(&U.pVal[1], 0xFF, APINT_WORD_SIZE * (getNumWords() - 1)); in initSlowCase() 81 U.pVal = getClearedMemory(getNumWords()); in initSlowCase() 82 U.pVal[0] = val; in initSlowCase() 87 U.pVal = getMemory(getNumWords()); in initSlowCase() 88 memcpy(U.pVal, that.U.pVal, getNumWords() * APINT_WORD_SIZE); in initSlowCase() 97 U.pVal = getClearedMemory(getNumWords()); in initFromArray() 101 memcpy(U.pVal, bigVal.data(), words * APINT_WORD_SIZE); in initFromArray() 130 delete [] U.pVal; in reallocate() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | APInt.h | 192 delete[] U.pVal; in ~APInt() 572 return &U.pVal[0]; in getRawData() 640 delete[] U.pVal; 663 U.pVal[0] = RHS; 664 memset(U.pVal + 1, 0, (getNumWords() - 1) * APINT_WORD_SIZE); 693 U.pVal[0] &= RHS; 694 memset(U.pVal + 1, 0, (getNumWords() - 1) * APINT_WORD_SIZE); 723 U.pVal[0] |= RHS; 752 U.pVal[0] ^= RHS; 1324 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; 373 return APSInt(APInt(Integer.BitWidth, ArrayRef(Integer.pVal, NumWords)),
|
| /freebsd/contrib/sqlite3/ |
| H A D | sqlite3.c | 10887 SQLITE_API int sqlite3_vtab_in_first(sqlite3_value *pVal, sqlite3_value **ppOut); 10888 SQLITE_API int sqlite3_vtab_in_next(sqlite3_value *pVal, sqlite3_value **ppOut); 13834 sqlite3_changegroup*, int, int, const char *pVal, int nVal 13846 sqlite3_changegroup*, int, int, const void *pVal, int nVal 21604 SQLITE_PRIVATE void sqlite3MultiValuesEnd(Parse *pParse, Select *pVal); 87136 static SQLITE_NOINLINE const void *valueToText(sqlite3_value* pVal, u8 enc){ argument 87137 assert( pVal!=0 ); 87138 assert( pVal->db==0 || sqlite3_mutex_held(pVal->db->mutex) ); 87140 assert( !sqlite3VdbeMemIsRowSet(pVal) ); 87141 assert( (pVal->flags & (MEM_Null))==0 ); [all …]
|
| H A D | sqlite3.h | 10566 SQLITE_API int sqlite3_vtab_in_first(sqlite3_value *pVal, sqlite3_value **ppOut); 10567 SQLITE_API int sqlite3_vtab_in_next(sqlite3_value *pVal, sqlite3_value **ppOut); 13513 sqlite3_changegroup*, int, int, const char *pVal, int nVal 13525 sqlite3_changegroup*, int, int, const void *pVal, int nVal
|
| H A D | shell.c | 1970 sqlite3_value *pVal; in qrfRenderValue() local 1972 pVal = sqlite3_value_dup(sqlite3_column_value(p->pStmt,iCol)); in qrfRenderValue() 1973 z = p->spec.xRender(p->spec.pRenderArg, pVal); in qrfRenderValue() 1974 sqlite3_value_free(pVal); in qrfRenderValue() 3492 sqlite3_str *pVal; in qrfOneSimpleRow() local 3516 pVal = sqlite3_str_new(p->db); in qrfOneSimpleRow() 3525 qrfRenderValue(p, pVal, i); in qrfOneSimpleRow() 3526 zVal = sqlite3_str_value(pVal); in qrfOneSimpleRow() 3543 sqlite3_str_reset(pVal); in qrfOneSimpleRow() 3545 qrfStrErr(p, pVal); in qrfOneSimpleRow() [all …]
|
| /freebsd/contrib/sqlite3/tea/generic/ |
| H A D | tclsqlite3.c | 1055 Tcl_Obj *pVal; in tclSqlFunc() local 1061 pVal = Tcl_NewByteArrayObj(sqlite3_value_blob(pIn), bytes); in tclSqlFunc() 1067 pVal = Tcl_NewIntObj((int)v); in tclSqlFunc() 1069 pVal = Tcl_NewWideIntObj(v); in tclSqlFunc() 1075 pVal = Tcl_NewDoubleObj(r); in tclSqlFunc() 1079 pVal = Tcl_NewStringObj(p->pDb->zNull, -1); in tclSqlFunc() 1084 pVal = Tcl_NewStringObj((char *)sqlite3_value_text(pIn), bytes); in tclSqlFunc() 1088 rc = Tcl_ListObjAppendElement(p->interp, pCmd, pVal); in tclSqlFunc()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | TemplateBase.cpp | 189 Integer.pVal = static_cast<uint64_t *>(Mem); in initFromIntegral()
|
| H A D | Expr.cpp | 949 C.Deallocate(pVal); in setIntValue() 955 pVal = new (C) uint64_t[NumWords]; in setIntValue() 956 std::copy(Words, Words + NumWords, pVal); in setIntValue()
|