Home
last modified time | relevance | path

Searched refs:apArg (Results 1 – 17 of 17) sorted by relevance

/sqlite-3.40.0/src/
H A Dtest_window.c42 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
[all …]
H A Dwindow.c150 sqlite3_value **apArg in row_numberStepFunc() argument
181 sqlite3_value **apArg in dense_rankStepFunc() argument
213 sqlite3_value **apArg in nth_valueStepFunc() argument
266 sqlite3_value **apArg in first_valueStepFunc() argument
300 sqlite3_value **apArg in rankStepFunc() argument
331 sqlite3_value **apArg in percent_rankStepFunc() argument
344 sqlite3_value **apArg in percent_rankInvFunc() argument
376 sqlite3_value **apArg in cume_distStepFunc() argument
389 sqlite3_value **apArg in cume_distInvFunc() argument
425 sqlite3_value **apArg in ntileStepFunc() argument
[all …]
H A Dtest_thread.c420 static void unlock_notify_cb(void **apArg, int nArg){ in unlock_notify_cb() argument
423 UnlockNotification *p = (UnlockNotification *)apArg[i]; in unlock_notify_cb()
H A Dprintf.c160 return sqlite3_value_int64(p->apArg[p->nUsed++]); in getIntArg()
164 return sqlite3_value_double(p->apArg[p->nUsed++]); in getDoubleArg()
168 return (char*)sqlite3_value_text(p->apArg[p->nUsed++]); in getTextArg()
H A Dvdbe.c8055 Mem **apArg; in sqlite3VdbeExec() local
8074 apArg = p->apArg; in sqlite3VdbeExec()
8076 apArg[i] = &pArgc[i+1]; in sqlite3VdbeExec()
8078 rc = pModule->xFilter(pVCur, iQuery, pOp->p4.z, nArg, apArg); in sqlite3VdbeExec()
8260 Mem **apArg; in sqlite3VdbeExec() local
8279 apArg = p->apArg; in sqlite3VdbeExec()
8284 apArg[i] = pX; in sqlite3VdbeExec()
8288 rc = pModule->xUpdate(pVtab, nArg, apArg, &rowid); in sqlite3VdbeExec()
8292 assert( nArg>1 && apArg[0] && (apArg[0]->flags&MEM_Null) ); in sqlite3VdbeExec()
H A Dtest8.c1210 sqlite3_value **apArg in overloadedGlobFunction() argument
1219 Tcl_DStringAppendElement(&str, (char*)sqlite3_value_text(apArg[i])); in overloadedGlobFunction()
H A DvdbeInt.h438 Mem **apArg; /* Arguments to currently executing user function */ member
H A Dvdbeaux.c2564 p->apArg = allocSpace(&x, 0, nArg*sizeof(Mem*)); in sqlite3VdbeMakeReady()
2575 p->apArg = allocSpace(&x, p->apArg, nArg*sizeof(Mem*)); in sqlite3VdbeMakeReady()
H A Dtclsqlite.c820 static void DbUnlockNotify(void **apArg, int nArg){ in DbUnlockNotify() argument
824 SqliteDb *pDb = (SqliteDb *)apArg[i]; in DbUnlockNotify()
H A Dfunc.c289 x.apArg = argv+1; in printfFunc()
H A DsqliteInt.h4500 sqlite3_value **apArg; /* The argument values */ member
H A Dsqlite.h.in9177 void (*xNotify)(void **apArg, int nArg), /* Callback function to invoke */
/sqlite-3.40.0/ext/icu/
H A Dicu.c277 static void icuRegexpFunc(sqlite3_context *p, int nArg, sqlite3_value **apArg){ in icuRegexpFunc() argument
281 const UChar *zString = sqlite3_value_text16(apArg[1]); in icuRegexpFunc()
294 const UChar *zPattern = sqlite3_value_text16(apArg[0]); in icuRegexpFunc()
361 static void icuCaseFunc16(sqlite3_context *p, int nArg, sqlite3_value **apArg){ in icuCaseFunc16() argument
374 zLocale = (const char *)sqlite3_value_text(apArg[1]); in icuCaseFunc16()
377 zInput = sqlite3_value_text16(apArg[0]); in icuCaseFunc16()
381 nOut = nInput = sqlite3_value_bytes16(apArg[0]); in icuCaseFunc16()
465 sqlite3_value **apArg in icuLoadCollation() argument
476 zLocale = (const char *)sqlite3_value_text(apArg[0]); in icuLoadCollation()
477 zName = (const char *)sqlite3_value_text(apArg[1]); in icuLoadCollation()
/sqlite-3.40.0/ext/repair/
H A Dcheckfreelist.c229 sqlite3_value **apArg in checkfreelist_function() argument
237 zDb = (const char*)sqlite3_value_text(apArg[0]); in checkfreelist_function()
256 sqlite3_value **apArg in readint_function() argument
270 iOff = sqlite3_value_int(apArg[1]); in readint_function()
273 zBlob = sqlite3_value_blob(apArg[0]); in readint_function()
274 nBlob = sqlite3_value_bytes(apArg[0]); in readint_function()
/sqlite-3.40.0/ext/rtree/
H A Drtree.c3864 static void rtreenode(sqlite3_context *ctx, int nArg, sqlite3_value **apArg){ in rtreenode() argument
3875 tree.nDim = (u8)sqlite3_value_int(apArg[0]); in rtreenode()
3879 node.zData = (u8 *)sqlite3_value_blob(apArg[1]); in rtreenode()
3881 nData = sqlite3_value_bytes(apArg[1]); in rtreenode()
3916 static void rtreedepth(sqlite3_context *ctx, int nArg, sqlite3_value **apArg){ in rtreedepth() argument
3918 if( sqlite3_value_type(apArg[0])!=SQLITE_BLOB in rtreedepth()
3919 || sqlite3_value_bytes(apArg[0])<2 in rtreedepth()
3924 u8 *zBlob = (u8 *)sqlite3_value_blob(apArg[0]); in rtreedepth()
4374 sqlite3_value **apArg in rtreecheck() argument
4383 const char *zDb = (const char*)sqlite3_value_text(apArg[0]); in rtreecheck()
[all …]
/sqlite-3.40.0/ext/recover/
H A Dsqlite3recover.c657 sqlite3_value **apArg in recoverPageIsUsed() argument
660 i64 pgno = sqlite3_value_int64(apArg[0]); in recoverPageIsUsed()
682 sqlite3_value **apArg in recoverGetPage() argument
685 i64 pgno = sqlite3_value_int64(apArg[0]); in recoverGetPage()
/sqlite-3.40.0/ext/fts5/
H A Dfts5_main.c2776 sqlite3_value **apArg /* Function arguments */ in fts5Fts5Func() argument
2782 ppApi = (fts5_api**)sqlite3_value_pointer(apArg[0], "fts5_api_ptr"); in fts5Fts5Func()