| /sqlite-3.40.0/src/ |
| H A D | test_window.c | 47 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 D | window.c | 152 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 D | func.c | 1566 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 D | test_md5.c | 420 p = sqlite3_aggregate_context(context, sizeof(*p)); in md5step() 436 p = sqlite3_aggregate_context(context, sizeof(*p)); in md5finalize()
|
| H A D | json.c | 1967 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 D | loadext.c | 134 sqlite3_aggregate_context,
|
| H A D | test_func.c | 171 sqlite3_aggregate_context(ctx, 2048); in test_agg_errmsg16_final()
|
| H A D | sqlite3ext.h | 386 #define sqlite3_aggregate_context sqlite3_api->aggregate_context macro
|
| H A D | vdbeapi.c | 994 void *sqlite3_aggregate_context(sqlite3_context *p, int nByte){ in sqlite3_aggregate_context() function
|
| H A D | test1.c | 1133 p = sqlite3_aggregate_context(context, sizeof(*p)); in t1CountStep() 1151 p = sqlite3_aggregate_context(context, sizeof(*p)); in t1CountFinalize()
|
| H A D | sqlite.h.in | 4413 ** [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 D | percentile.c | 119 p = (Percentile*)sqlite3_aggregate_context(pCtx, sizeof(*p)); in percentStep() 187 p = (Percentile*)sqlite3_aggregate_context(pCtx, 0); in percentFinal()
|
| H A D | decimal.c | 484 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 D | zipfile.c | 1975 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 D | wordcount.c | 191 a = (unsigned*)sqlite3_aggregate_context(context, sizeof(unsigned int)*5); in checksumStep() 206 a = sqlite3_aggregate_context(context, 0); in checksumFinalize()
|
| H A D | threadtest3.c | 395 p = sqlite3_aggregate_context(context, sizeof(*p)); in md5step() 411 p = sqlite3_aggregate_context(context, sizeof(*p)); in md5finalize()
|
| H A D | speedtest1.c | 697 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 D | sqlite3-api-prologue.js | 1364 return capi.sqlite3_aggregate_context(pCtx, n)
|
| /sqlite-3.40.0/ext/rtree/ |
| H A D | geopoly.c | 733 pBBox = (GeoBBox*)sqlite3_aggregate_context(context, sizeof(*pBBox)); in geopolyBBoxStep() 751 pBBox = (GeoBBox*)sqlite3_aggregate_context(context, 0); in geopolyBBoxFinal()
|