Home
last modified time | relevance | path

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

/src/contrib/sqlite3/
H A Dshell.c22252 const char *pcLimit = (nAccept>=0)? z+nAccept : 0; in zSkipValidUtf8() local
22254 while( (pcLimit)? (z<pcLimit) : (ng-- != 0) ){ in zSkipValidUtf8()
22263 if( pcLimit && zt >= pcLimit ) return z; in zSkipValidUtf8()
22331 const char *pcLimit; in output_json_string() local
22336 pcLimit = z + ((n<0)? strlen(z) : (size_t)n); in output_json_string()
22338 while( z < pcLimit ){ in output_json_string()
22339 const char *pcDQBS = anyOfInStr(z, zDQBS, pcLimit-z); in output_json_string()
22340 const char *pcPast = zSkipValidUtf8(z, (int)(pcLimit-z), ctrlMask); in output_json_string()
22346 if( z >= pcLimit ) break; in output_json_string()