Lines Matching refs:apArg
42 sqlite3_value **apArg in doTestWindowStep() argument
60 pArg = Tcl_NewStringObj((const char*)sqlite3_value_text(apArg[i]), -1); in doTestWindowStep()
110 sqlite3_value **apArg in testWindowStep() argument
112 doTestWindowStep(0, ctx, nArg, apArg); in testWindowStep()
117 sqlite3_value **apArg in testWindowInverse() argument
119 doTestWindowStep(1, ctx, nArg, apArg); in testWindowInverse()
228 sqlite3_value *apArg[] in sumintStep() argument
233 if( sqlite3_value_type(apArg[0])!=SQLITE_INTEGER ){ in sumintStep()
239 *pInt += sqlite3_value_int64(apArg[0]); in sumintStep()
249 sqlite3_value *apArg[] in sumintInverse() argument
253 *pInt -= sqlite3_value_int64(apArg[0]); in sumintInverse()