Searched refs:aArg (Results 1 – 8 of 8) sorted by relevance
| /sqlite-3.40.0/ext/misc/ |
| H A D | regexp.c | 339 int n = pRe->aArg[x]; in re_match() 348 if( pRe->aArg[x+j]<=c && pRe->aArg[x+j+1]>=c ){ in re_match() 377 int *aArg; in re_resize() local 381 aArg = sqlite3_realloc64(p->aArg, N*sizeof(p->aArg[0])); in re_resize() 382 if( aArg==0 ) return 1; in re_resize() 383 p->aArg = aArg; in re_resize() 396 p->aArg[i] = p->aArg[i-1]; in re_insert() 400 p->aArg[iBefore] = arg; in re_insert() 416 memcpy(&p->aArg[p->nState], &p->aArg[iStart], N*sizeof(p->aArg[0])); in re_copy() 662 sqlite3_free(pRe->aArg); in re_free() [all …]
|
| /sqlite-3.40.0/src/ |
| H A D | notify.c | 230 void **aArg; /* Arguments to the unlock callback */ in sqlite3ConnectionUnlocked() local 234 aArg = aStatic; in sqlite3ConnectionUnlocked() 250 xUnlockNotify(aArg, nArg); in sqlite3ConnectionUnlocked() 255 assert( aArg==aDyn || (aDyn==0 && aArg==aStatic) ); in sqlite3ConnectionUnlocked() 256 assert( nArg<=(int)ArraySize(aStatic) || aArg==aDyn ); in sqlite3ConnectionUnlocked() 263 memcpy(pNew, aArg, nArg*sizeof(void *)); in sqlite3ConnectionUnlocked() 265 aDyn = aArg = pNew; in sqlite3ConnectionUnlocked() 291 xUnlockNotify(aArg, nArg); in sqlite3ConnectionUnlocked() 297 aArg[nArg++] = p->pUnlockArg; in sqlite3ConnectionUnlocked() 315 xUnlockNotify(aArg, nArg); in sqlite3ConnectionUnlocked()
|
| H A D | test_hexio.c | 390 Tcl_Obj **aArg = 0; in make_fts3record() local 401 if( Tcl_ListObjGetElements(interp, objv[1], &nArg, &aArg) ){ in make_fts3record() 407 if( TCL_OK==Tcl_GetWideIntFromObj(0, aArg[i], &iVal) ){ in make_fts3record() 421 char *zVal = Tcl_GetStringFromObj(aArg[i], &nVal); in make_fts3record()
|
| H A D | test_malloc.c | 1070 Tcl_Obj * CONST *aArg = &objv[1]; in test_config_heap() local 1077 if( Tcl_GetIntFromObj(interp, aArg[0], &nByte) ) return TCL_ERROR; in test_config_heap() 1078 if( Tcl_GetIntFromObj(interp, aArg[1], &nMinAlloc) ) return TCL_ERROR; in test_config_heap() 1105 Tcl_Obj * CONST *aArg = &objv[1]; in test_config_heap_size() local 1112 if( Tcl_GetIntFromObj(interp, aArg[0], &nByte) ) return TCL_ERROR; in test_config_heap_size()
|
| H A D | tclsqlite.c | 964 Tcl_Obj **aArg; in tclSqlFunc() local 966 if( Tcl_ListObjGetElements(p->interp, p->pScript, &nArg, &aArg) ){ in tclSqlFunc() 970 pCmd = Tcl_NewListObj(nArg, aArg); in tclSqlFunc()
|
| H A D | test1.c | 1812 static void cf2Func(sqlite3_context *ctx, int nArg, sqlite3_value **aArg){ in cf2Func() argument 1814 static void cf2Step(sqlite3_context *ctx, int nArg, sqlite3_value **aArg){ in cf2Step() argument 6903 static void test_unlock_notify_cb(void **aArg, int nArg){ in test_unlock_notify_cb() argument 6906 Tcl_EvalEx((Tcl_Interp *)aArg[ii], "unlock_notify", -1, TCL_EVAL_GLOBAL); in test_unlock_notify_cb()
|
| /sqlite-3.40.0/ext/fts3/ |
| H A D | fts3_tokenizer.c | 195 char const **aArg = 0; in sqlite3Fts3InitTokenizer() local 200 char const **aNew = (const char **)sqlite3_realloc64((void *)aArg, nNew); in sqlite3Fts3InitTokenizer() 203 sqlite3_free((void *)aArg); in sqlite3Fts3InitTokenizer() 206 aArg = aNew; in sqlite3Fts3InitTokenizer() 207 aArg[iArg++] = z; in sqlite3Fts3InitTokenizer() 212 rc = m->xCreate(iArg, aArg, ppTok); in sqlite3Fts3InitTokenizer() 219 sqlite3_free((void *)aArg); in sqlite3Fts3InitTokenizer()
|
| /sqlite-3.40.0/ext/rtree/ |
| H A D | rtree.c | 4482 static void geomCallback(sqlite3_context *ctx, int nArg, sqlite3_value **aArg){ in geomCallback() argument 4500 pBlob->apSqlParam[i] = sqlite3_value_dup(aArg[i]); in geomCallback() 4503 pBlob->aParam[i] = sqlite3_value_int64(aArg[i]); in geomCallback() 4505 pBlob->aParam[i] = sqlite3_value_double(aArg[i]); in geomCallback()
|