Home
last modified time | relevance | path

Searched refs:sqlite3_aggregate_context (Results 1 – 19 of 19) sorted by relevance

/sqlite-3.40.0/src/
H A Dtest_window.c47 TestWindowCtx *pCtx = sqlite3_aggregate_context(ctx, sizeof(TestWindowCtx)); in doTestWindowStep()
79 TestWindowCtx *pCtx = sqlite3_aggregate_context(ctx, sizeof(TestWindowCtx)); in doTestWindowFinalize()
237 pInt = (sqlite3_int64*)sqlite3_aggregate_context(ctx, sizeof(sqlite3_int64)); in sumintStep()
252 pInt = (sqlite3_int64*)sqlite3_aggregate_context(ctx, sizeof(sqlite3_int64)); in sumintInverse()
262 pInt = (sqlite3_int64*)sqlite3_aggregate_context(ctx, 0); in sumintFinal()
273 pInt = (sqlite3_int64*)sqlite3_aggregate_context(ctx, 0); in sumintValue()
H A Dwindow.c152 i64 *p = (i64*)sqlite3_aggregate_context(pCtx, sizeof(*p)); in row_numberStepFunc()
158 i64 *p = (i64*)sqlite3_aggregate_context(pCtx, sizeof(*p)); in row_numberValueFunc()
184 p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); in dense_rankStepFunc()
191 p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); in dense_rankValueFunc()
253 p = (struct NthValueCtx*)sqlite3_aggregate_context(pCtx, 0); in nth_valueFinalizeFunc()
303 p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); in rankStepFunc()
399 p = (struct CallCount*)sqlite3_aggregate_context(pCtx, 0); in cume_distValueFunc()
429 p = (struct NtileCtx*)sqlite3_aggregate_context(pCtx, sizeof(*p)); in ntileStepFunc()
450 p = (struct NtileCtx*)sqlite3_aggregate_context(pCtx, sizeof(*p)); in ntileInvFunc()
455 p = (struct NtileCtx*)sqlite3_aggregate_context(pCtx, sizeof(*p)); in ntileValueFunc()
[all …]
H A Dfunc.c1566 p = sqlite3_aggregate_context(context, sizeof(*p)); in sumStep()
1588 p = sqlite3_aggregate_context(context, sizeof(*p)); in sumInverse()
1610 p = sqlite3_aggregate_context(context, 0); in sumFinalize()
1623 p = sqlite3_aggregate_context(context, 0); in avgFinalize()
1630 p = sqlite3_aggregate_context(context, 0); in totalFinalize()
1652 p = sqlite3_aggregate_context(context, sizeof(*p)); in countStep()
1668 p = sqlite3_aggregate_context(context, 0); in countFinalize()
1674 p = sqlite3_aggregate_context(ctx, sizeof(*p)); in countInverse()
1730 pRes = (sqlite3_value *)sqlite3_aggregate_context(context, 0); in minMaxValueFinalize()
1891 = (GroupConcatCtx*)sqlite3_aggregate_context(context, 0); in groupConcatFinalize()
[all …]
H A Dtest_md5.c420 p = sqlite3_aggregate_context(context, sizeof(*p)); in md5step()
436 p = sqlite3_aggregate_context(context, sizeof(*p)); in md5finalize()
H A Djson.c1967 pStr = (JsonString*)sqlite3_aggregate_context(ctx, sizeof(*pStr)); in jsonArrayStep()
1981 pStr = (JsonString*)sqlite3_aggregate_context(ctx, 0); in jsonArrayCompute()
2028 pStr = (JsonString*)sqlite3_aggregate_context(ctx, 0); in jsonGroupInverse()
2072 pStr = (JsonString*)sqlite3_aggregate_context(ctx, sizeof(*pStr)); in jsonObjectStep()
2090 pStr = (JsonString*)sqlite3_aggregate_context(ctx, 0); in jsonObjectCompute()
H A Dloadext.c134 sqlite3_aggregate_context,
H A Dtest_func.c171 sqlite3_aggregate_context(ctx, 2048); in test_agg_errmsg16_final()
H A Dsqlite3ext.h386 #define sqlite3_aggregate_context sqlite3_api->aggregate_context macro
H A Dvdbeapi.c994 void *sqlite3_aggregate_context(sqlite3_context *p, int nByte){ in sqlite3_aggregate_context() function
H A Dtest1.c1133 p = sqlite3_aggregate_context(context, sizeof(*p)); in t1CountStep()
1151 p = sqlite3_aggregate_context(context, sizeof(*p)); in t1CountFinalize()
H A Dsqlite.h.in4413 ** [sqlite3_aggregate_context()], [sqlite3_user_data()],
5658 ** ^The first time the sqlite3_aggregate_context(C,N) routine is called
5662 ** sqlite3_aggregate_context() for the same aggregate function instance,
5668 ** In those cases, sqlite3_aggregate_context() might be called for the
5671 ** ^The sqlite3_aggregate_context(C,N) routine returns a NULL pointer
5675 ** ^(The amount of space allocated by sqlite3_aggregate_context(C,N) is
5677 ** value of N in any subsequent call to sqlite3_aggregate_context() within
5680 ** N=0 in calls to sqlite3_aggregate_context(C,N) so that no
5684 ** sqlite3_aggregate_context() when the aggregate query concludes.
5694 void *sqlite3_aggregate_context(sqlite3_context*, int nBytes);
/sqlite-3.40.0/ext/misc/
H A Dpercentile.c119 p = (Percentile*)sqlite3_aggregate_context(pCtx, sizeof(*p)); in percentStep()
187 p = (Percentile*)sqlite3_aggregate_context(pCtx, 0); in percentFinal()
H A Ddecimal.c484 p = sqlite3_aggregate_context(context, sizeof(*p)); in decimalSumStep()
510 p = sqlite3_aggregate_context(context, sizeof(*p)); in decimalSumInverse()
519 Decimal *p = sqlite3_aggregate_context(context, 0); in decimalSumValue()
524 Decimal *p = sqlite3_aggregate_context(context, 0); in decimalSumFinalize()
H A Dzipfile.c1975 p = (ZipfileCtx*)sqlite3_aggregate_context(pCtx, sizeof(ZipfileCtx)); in zipfileStep()
2127 p = (ZipfileCtx*)sqlite3_aggregate_context(pCtx, sizeof(ZipfileCtx)); in zipfileFinal()
/sqlite-3.40.0/test/
H A Dwordcount.c191 a = (unsigned*)sqlite3_aggregate_context(context, sizeof(unsigned int)*5); in checksumStep()
206 a = sqlite3_aggregate_context(context, 0); in checksumFinalize()
H A Dthreadtest3.c395 p = sqlite3_aggregate_context(context, sizeof(*p)); in md5step()
411 p = sqlite3_aggregate_context(context, sizeof(*p)); in md5finalize()
H A Dspeedtest1.c697 p= (struct groupConcat*)sqlite3_aggregate_context(context, sizeof(*p)); in groupStep()
718 p = sqlite3_aggregate_context(context, 0); in groupFinal()
/sqlite-3.40.0/ext/wasm/api/
H A Dsqlite3-api-prologue.js1364 return capi.sqlite3_aggregate_context(pCtx, n)
/sqlite-3.40.0/ext/rtree/
H A Dgeopoly.c733 pBBox = (GeoBBox*)sqlite3_aggregate_context(context, sizeof(*pBBox)); in geopolyBBoxStep()
751 pBBox = (GeoBBox*)sqlite3_aggregate_context(context, 0); in geopolyBBoxFinal()