Lines Matching refs:buf
249 char buf[etBUFSIZE]; /* Conversion buffer */ in sqlite3_str_vappendf() local
465 zOut = buf; in sqlite3_str_vappendf()
573 bufpt = buf; in sqlite3_str_vappendf()
574 buf[0] = prefix; in sqlite3_str_vappendf()
575 memcpy(buf+(prefix!=0),"Inf",4); in sqlite3_str_vappendf()
580 bufpt = buf; in sqlite3_str_vappendf()
698 buf[0] = '%'; in sqlite3_str_vappendf()
699 bufpt = buf; in sqlite3_str_vappendf()
707 buf[0] = c = *(bufpt++); in sqlite3_str_vappendf()
710 buf[length++] = *(bufpt++); in sqlite3_str_vappendf()
714 buf[0] = 0; in sqlite3_str_vappendf()
719 buf[0] = ch & 0xff; in sqlite3_str_vappendf()
722 buf[0] = 0xc0 + (u8)((ch>>6)&0x1f); in sqlite3_str_vappendf()
723 buf[1] = 0x80 + (u8)(ch & 0x3f); in sqlite3_str_vappendf()
726 buf[0] = 0xe0 + (u8)((ch>>12)&0x0f); in sqlite3_str_vappendf()
727 buf[1] = 0x80 + (u8)((ch>>6) & 0x3f); in sqlite3_str_vappendf()
728 buf[2] = 0x80 + (u8)(ch & 0x3f); in sqlite3_str_vappendf()
731 buf[0] = 0xf0 + (u8)((ch>>18) & 0x07); in sqlite3_str_vappendf()
732 buf[1] = 0x80 + (u8)((ch>>12) & 0x3f); in sqlite3_str_vappendf()
733 buf[2] = 0x80 + (u8)((ch>>6) & 0x3f); in sqlite3_str_vappendf()
734 buf[3] = 0x80 + (u8)(ch & 0x3f); in sqlite3_str_vappendf()
745 sqlite3_str_append(pAccum, buf, length); in sqlite3_str_vappendf()
748 bufpt = buf; in sqlite3_str_vappendf()
837 bufpt = buf; in sqlite3_str_vappendf()