Home
last modified time | relevance | path

Searched refs:apValue (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/CIR/Dialect/IR/
H A DCIRAttrs.td189 mlir::APInt apValue(intType.getWidth(), value, intType.isSigned());
190 return $_get(intType.getContext(), intType, apValue);
/freebsd/contrib/sqlite3/
H A Dsqlite3.c233455 sqlite3_value **apValue; /* old.* and new.* values */ member
237107 p->apValue = (sqlite3_value**)p->tblhdr.aBuf;
237108 if( p->apValue==0 ){
237112 p->abPK = (u8*)&p->apValue[p->nCol*2];
237145 if( p->apValue ){
237147 sqlite3ValueFree(p->apValue[i]);
237149 memset(p->apValue, 0, sizeof(sqlite3_value*)*p->nCol*2);
237208 sqlite3_value **apOld = (p->bInvert ? &p->apValue[p->nCol] : p->apValue);
237209 sqlite3_value **apNew = (p->bInvert ? p->apValue : &p->apValue[p->nCol]);
237230 assert( p->bPatchset==0 || p->apValue[i]==0 );
[all …]