Searched refs:JSON_CACHE_SIZE (Results 1 – 1 of 1) sorted by relevance
212997 #define JSON_CACHE_SIZE 4 /* Max number of cache entries */ macro213021 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;