Searched refs:bufpt (Results 1 – 2 of 2) sorted by relevance
60 static char *bufpt; /* read/write point in i/o buffer */ variable113 bufpt = buf; in wr_start()152 bufpt = bufend; in rd_start()233 skcnt += bufend - bufpt; in appnd_start()251 bufpt = buf; in appnd_start()253 while (bufpt < bufend) { in appnd_start()254 if ((res = ar_read(bufpt, rdblksz)) <= 0) in appnd_start()256 bufpt += res; in appnd_start()258 if (ar_rev((off_t)(bufpt - buf)) < 0) in appnd_start()260 bufpt = buf + cnt; in appnd_start()[all …]
31320 char *bufpt; /* Pointer to the conversion buffer */ in sqlite3_str_vappendf() local31354 bufpt = 0; in sqlite3_str_vappendf()31363 bufpt = (char *)fmt; in sqlite3_str_vappendf()31369 sqlite3_str_append(pAccum, bufpt, (int)(fmt - bufpt)); in sqlite3_str_vappendf()31572 bufpt = &zOut[nOut-1]; in sqlite3_str_vappendf()31579 *(--bufpt) = zOrd[x*2+1]; in sqlite3_str_vappendf()31580 *(--bufpt) = zOrd[x*2]; in sqlite3_str_vappendf()31586 *(--bufpt) = cset[longvalue%base]; in sqlite3_str_vappendf()31590 length = (int)(&zOut[nOut-1]-bufpt); in sqlite3_str_vappendf()31592 *(--bufpt) = '0'; /* Zero pad */ in sqlite3_str_vappendf()[all …]