| /sqlite-3.40.0/src/ |
| H A D | test_window.c | 29 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 D | main.c | 1823 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 D | resolve.c | 1092 || (pDef->xValue==0 && pDef->xInverse==0) in resolveExprStep() 1093 || (pDef->xValue && pDef->xInverse && pDef->xSFunc && pDef->xFinalize) in resolveExprStep()
|
| H A D | sqliteInt.h | 1837 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 D | vdbe.c | 7529 (pCtx->pFunc->xInverse)(pCtx,pCtx->argc,pCtx->argv); in sqlite3VdbeExec()
|
| H A D | sqlite.h.in | 5281 ** 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 D | sqlite3-api-oo1.js | 960 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 D | sqlite3-api-glue.js | 368 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 D | sqlite3-api-prologue.js | 557 xStep, xFinal, xValue, xInverse, xDestroy argument
|
| /sqlite-3.40.0/ext/wasm/ |
| H A D | tester1.js | 1521 xInverse: (pCtx, n)=>xStepInverse(pCtx, -n),
|