Home | History | Annotate | Download | only in dist

Lines Matching refs:precision

7519 /* The double-precision datatype used by RTree depends on the
20595 #define FLAG_STRING 4 /* Allow infinity precision */
20711 int precision; /* Precision of the current field */
20798 /* Get the precision */
20800 precision = 0;
20804 precision = (int)getIntArg(pArgList);
20806 precision = va_arg(ap,int);
20808 if( precision<0 ) precision = -precision;
20812 precision = precision*10 + c - '0';
20817 precision = -1;
20864 ** precision The specified precision. The default
20913 if( flag_zeropad && precision<width-(prefix!=0) ){
20914 precision = width-(prefix!=0);
20916 if( precision<etBUFSIZE-10 ){
20920 nOut = precision + 10;
20946 for(idx=precision-length; idx>0; idx--){
20969 if( precision<0 ) precision = 6; /* Set default precision */
20978 if( xtype==etGENERIC && precision>0 ) precision--;
20979 for(idx=precision, rounder=0.5; idx>0; idx--, rounder*=0.1){}
21020 if( exp<-4 || exp>precision ){
21023 precision = precision - exp;
21034 if( MAX(e2,0)+precision+width > etBUFSIZE - 15 ){
21035 bufpt = zExtra = sqlite3Malloc( MAX(e2,0)+precision+width+15 );
21043 flag_dp = (precision>0 ?1:0) | flag_alternateform | flag_altform2;
21062 for(e2++; e2<0; precision--, e2++){
21063 assert( precision>0 );
21067 while( (precision--)>0 ){
21138 if( precision>=0 ){
21139 for(idx=1; idx<precision; idx++) buf[idx] = (char)c;
21140 length = precision;
21158 if( precision>=0 ){
21159 for(length=0; length<precision && bufpt[length]; length++){}
21180 k = precision;
21205 /* The precision in %q and %Q means how many input characters to
21207 ** if( precision>=0 && precision<length ) length = precision; */
22315 ** point precision mode other than /fp:precise. From the MSDN