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.c212679 #define JSON_CACHE_SIZE 4 /* Max number of cache entries */ macro
212703 JsonParse *a[JSON_CACHE_SIZE]; /* One line for each cache entry */
212869 if( p->nUsed >= JSON_CACHE_SIZE ){
212871 memmove(p->a, &p->a[1], (JSON_CACHE_SIZE-1)*sizeof(p->a[0]));
212872 p->nUsed = JSON_CACHE_SIZE-1;