Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c212997 #define JSON_CACHE_SIZE 4 /* Max number of cache entries */ macro
213021 JsonParse *a[JSON_CACHE_SIZE]; /* One line for each cache entry */
213187 if( p->nUsed >= JSON_CACHE_SIZE ){
213189 memmove(p->a, &p->a[1], (JSON_CACHE_SIZE-1)*sizeof(p->a[0]));
213190 p->nUsed = JSON_CACHE_SIZE-1;