Home
last modified time | relevance | path

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

/netbsd-src/external/public-domain/sqlite/dist/
H A Dshell.c1077 const char *pcLimit = (nAccept>=0)? z+nAccept : 0; in zSkipValidUtf8() local
1079 while( (pcLimit)? (z<pcLimit) : (ng-- != 0) ){ in zSkipValidUtf8()
1088 if( pcLimit && zt >= pcLimit ) return z; in zSkipValidUtf8()
18775 const char *pcLimit; in output_json_string() local
18780 pcLimit = z + ((n<0)? strlen(z) : (size_t)n); in output_json_string()
18782 while( z < pcLimit ){ in output_json_string()
18783 const char *pcDQBS = anyOfInStr(z, zDQBS, pcLimit-z); in output_json_string()
18784 const char *pcPast = zSkipValidUtf8(z, (int)(pcLimit-z), ctrlMask); in output_json_string()
18790 if( z >= pcLimit ) break; in output_json_string()