Searched refs:pVal (Results 1 – 10 of 10) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
| H A 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 …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| H A 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 …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| H A D | TemplateBase.h | 124 const uint64_t *pVal; 322 return APSInt(APInt(Integer.BitWidth, makeArrayRef(Integer.pVal, NumWords)),
|
| H A D | Expr.h | 1444 uint64_t *pVal; ///< Used to store the >64 bits integer value. member 1459 return llvm::APInt(BitWidth, NumWords, pVal); in getIntValue()
|
| /netbsd-src/external/public-domain/sqlite/dist/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()
|
| /netbsd-src/external/public-domain/sqlite/dist/ |
| H A D | sqlite3.c | 10392 SQLITE_API int sqlite3_vtab_in_first(sqlite3_value *pVal, sqlite3_value **ppOut); 10393 SQLITE_API int sqlite3_vtab_in_next(sqlite3_value *pVal, sqlite3_value **ppOut); 83658 static SQLITE_NOINLINE const void *valueToText(sqlite3_value* pVal, u8 enc){ 83659 assert( pVal!=0 ); 83660 assert( pVal->db==0 || sqlite3_mutex_held(pVal->db->mutex) ); 83662 assert( !sqlite3VdbeMemIsRowSet(pVal) ); 83663 assert( (pVal->flags & (MEM_Null))==0 ); 83664 if( pVal->flags & (MEM_Blob|MEM_Str) ){ 83665 if( ExpandBlob(pVal) ) return 0; 83666 pVal->flags |= MEM_Str; [all …]
|
| H A D | sqlite3.h | 10079 SQLITE_API int sqlite3_vtab_in_first(sqlite3_value *pVal, sqlite3_value **ppOut); 10080 SQLITE_API int sqlite3_vtab_in_next(sqlite3_value *pVal, sqlite3_value **ppOut);
|
| H A D | shell.c | 10714 sqlite3_value *pVal, in zipfileGetMode() argument 10719 const char *z = (const char*)sqlite3_value_text(pVal); in zipfileGetMode() 10724 mode = (unsigned int)sqlite3_value_int(pVal); in zipfileGetMode() 10826 static u32 zipfileGetTime(sqlite3_value *pVal){ in zipfileGetTime() argument 10827 if( pVal==0 || sqlite3_value_type(pVal)==SQLITE_NULL ){ in zipfileGetTime() 10830 return (u32)sqlite3_value_int64(pVal); in zipfileGetTime() 12437 sqlite3_value *pVal; in expertColumn() local 12438 pVal = sqlite3_column_value(pCsr->pData, i); in expertColumn() 12439 if( pVal ){ in expertColumn() 12440 sqlite3_result_value(ctx, pVal); in expertColumn() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | TemplateBase.cpp | 171 Integer.pVal = static_cast<uint64_t *>(Mem); in TemplateArgument()
|
| H A D | Expr.cpp | 801 C.Deallocate(pVal); in setIntValue() 807 pVal = new (C) uint64_t[NumWords]; in setIntValue() 808 std::copy(Words, Words + NumWords, pVal); in setIntValue()
|