Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c1079 const char *pcLimit = (nAccept>=0)? z+nAccept : 0; in zSkipValidUtf8() local
1081 while( (pcLimit)? (z<pcLimit) : (ng-- != 0) ){ in zSkipValidUtf8()
1090 if( pcLimit && zt >= pcLimit ) return z; in zSkipValidUtf8()
20038 const char *pcLimit; in output_json_string() local
20043 pcLimit = z + ((n<0)? strlen(z) : (size_t)n); in output_json_string()
20045 while( z < pcLimit ){ in output_json_string()
20046 const char *pcDQBS = anyOfInStr(z, zDQBS, pcLimit-z); in output_json_string()
20047 const char *pcPast = zSkipValidUtf8(z, (int)(pcLimit-z), ctrlMask); in output_json_string()
20053 if( z >= pcLimit ) break; in output_json_string()