Home
last modified time | relevance | path

Searched refs:xInverse (Results 1 – 10 of 10) sorted by relevance

/sqlite-3.40.0/src/
H A Dtest_window.c29 Tcl_Obj *xInverse; member
46 Tcl_Obj *pEval = Tcl_DuplicateObj(bInverse ? p->xInverse : p->xStep); in doTestWindowStep()
159 pNew->xInverse = Tcl_DuplicateObj(objv[6]); in test_create_window()
165 Tcl_IncrRefCount(pNew->xInverse); in test_create_window()
H A Dmain.c1823 void (*xInverse)(sqlite3_context*,int,sqlite3_value **), in sqlite3CreateFunc()
1834 || ((xValue==0)!=(xInverse==0)) /* Both or neither of xValue, xInverse */ in sqlite3CreateFunc()
1869 pUserData, xSFunc, xStep, xFinal, xValue, xInverse, pDestructor); in sqlite3CreateFunc()
1873 pUserData, xSFunc, xStep, xFinal, xValue, xInverse, pDestructor); in sqlite3CreateFunc()
1934 p->xInverse = xInverse; in sqlite3CreateFunc()
1957 void (*xInverse)(sqlite3_context*,int,sqlite3_value**), in createFunctionApi()
1981 xSFunc, xStep, xFinal, xValue, xInverse, pArg in createFunctionApi()
2034 void (*xInverse)(sqlite3_context*,int,sqlite3_value **), in sqlite3_create_window_function()
2038 xFinal, xValue, xInverse, xDestroy); in sqlite3_create_window_function()
H A Dresolve.c1092 || (pDef->xValue==0 && pDef->xInverse==0) in resolveExprStep()
1093 || (pDef->xValue && pDef->xInverse && pDef->xSFunc && pDef->xFinalize) in resolveExprStep()
H A DsqliteInt.h1837 void (*xInverse)(sqlite3_context*,int,sqlite3_value**); /* inverse agg-step */ member
2026 #define WAGGREGATE(zName, nArg, arg, nc, xStep, xFinal, xValue, xInverse, f) \ argument
2028 SQLITE_INT_TO_PTR(arg), 0, xStep,xFinal,xValue,xInverse,#zName, {0}}
H A Dvdbe.c7529 (pCtx->pFunc->xInverse)(pCtx,pCtx->argc,pCtx->argv); in sqlite3VdbeExec()
H A Dsqlite.h.in5281 ** and xInverse) passed to sqlite3_create_window_function are pointers to
5283 ** must both be non-NULL. xValue and xInverse may either both be NULL, in
5359 void (*xInverse)(sqlite3_context*,int,sqlite3_value**),
/sqlite-3.40.0/ext/wasm/api/
H A Dsqlite3-api-oo1.js960 const xInverse = opt.xInverse || 0;
979 if(isFunc(xValue) || isFunc(xInverse)){
983 if(!isFunc(xInverse)){
987 }else if(isFunc(xInverse)){
1015 xStep, xFinal, xValue, xInverse, xDestroy);
H A Dsqlite3-api-glue.js368 xInverse: {sig:'v(pip)', f:__xInverseAndStep}, property
435 xInverse,//void (*xStep)(sqlite3_context*,int,sqlite3_value**) argument
445 const funcArgs = __xWrapFuncs({xStep, xFinal, xValue, xInverse, xDestroy},
H A Dsqlite3-api-prologue.js557 xStep, xFinal, xValue, xInverse, xDestroy argument
/sqlite-3.40.0/ext/wasm/
H A Dtester1.js1521 xInverse: (pCtx, n)=>xStepInverse(pCtx, -n),