Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c31846 etByte cThousand; /* Thousands separator for %d and %u */ in sqlite3_str_vappendf() local
31891 flag_leftjustify = flag_prefix = cThousand = in sqlite3_str_vappendf()
31905 case ',': cThousand = ','; break; in sqlite3_str_vappendf()
32031 cThousand = 0; in sqlite3_str_vappendf()
32081 if( cThousand ) n += precision/3; in sqlite3_str_vappendf()
32109 if( cThousand ){ in sqlite3_str_vappendf()
32117 bufpt[++idx] = cThousand; in sqlite3_str_vappendf()
32216 if( cThousand && e2>0 ) szBufNeeded += (e2+2)/3; in sqlite3_str_vappendf()
32235 if( cThousand && (e2%3)==0 && e2>1 ) *(bufpt++) = ','; in sqlite3_str_vappendf()