Home
last modified time | relevance | path

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

/netbsd-src/external/public-domain/sqlite/dist/
H A Dsqlite3.c31323 int iRound; in sqlite3_str_vappendf() local
31338 iRound = -precision; in sqlite3_str_vappendf()
31340 iRound = precision; in sqlite3_str_vappendf()
31342 iRound = precision+1; in sqlite3_str_vappendf()
31344 sqlite3FpDecode(&s, realvalue, iRound, flag_altform2 ? 26 : 16); in sqlite3_str_vappendf()
35589 SQLITE_PRIVATE void sqlite3FpDecode(FpDecode *p, double r, int iRound, int mxRound){ argument
35695 if( iRound<0 ){
35696 iRound = p->iDP - iRound;
35697 if( iRound==0 && p->zBuf[i+1]>='5' ){
35698 iRound = 1;
[all …]