Home | History | Annotate | Download | only in dist

Lines Matching refs:bufpt

16562   char *bufpt;               /* Pointer to the conversion buffer */
16593 bufpt = 0;
16597 bufpt = (char *)fmt;
16600 sqlite3StrAccumAppend(pAccum, bufpt, amt);
16752 bufpt = &buf[etBUFSIZE-1];
16761 bufpt -= 2;
16769 *(--bufpt) = cset[longvalue%base];
16773 length = (int)(&buf[etBUFSIZE-1]-bufpt);
16775 *(--bufpt) = '0'; /* Zero pad */
16777 if( prefix ) *(--bufpt) = prefix; /* Add sign */
16782 for(; (x=(*pre))!=0; pre++) *(--bufpt) = x;
16784 length = (int)(&buf[etBUFSIZE-1]-bufpt);
16813 bufpt = "NaN";
16825 bufpt = "-Inf";
16827 bufpt = "+Inf";
16829 bufpt = "Inf";
16831 length = sqlite3Strlen30(bufpt);
16835 bufpt = buf;
16865 *(bufpt++) = prefix;
16869 *(bufpt++) = '0';
16872 *(bufpt++) = et_getdigit(&realvalue,&nsd);
16877 *(bufpt++) = '.';
16883 *(bufpt++) = '0';
16887 *(bufpt++) = et_getdigit(&realvalue,&nsd);
16891 while( bufpt[-1]=='0' ) *(--bufpt) = 0;
16892 assert( bufpt>buf );
16893 if( bufpt[-1]=='.' ){
16895 *(bufpt++) = '0';
16897 *(--bufpt) = 0;
16903 *(bufpt++) = aDigits[infop->charset];
16905 *(bufpt++) = '-'; exp = -exp;
16907 *(bufpt++) = '+';
16910 *(bufpt++) = (char)((exp/100)+'0'); /* 100's digit */
16913 *(bufpt++) = (char)(exp/10+'0'); /* 10's digit */
16914 *(bufpt++) = (char)(exp%10+'0'); /* 1's digit */
16916 *bufpt = 0;
16921 length = (int)(bufpt-buf);
16922 bufpt = buf;
16930 bufpt[i] = bufpt[i-nPad];
16933 while( nPad-- ) bufpt[i++] = '0';
16944 bufpt = buf;
16956 bufpt = buf;
16960 bufpt = va_arg(ap,char*);
16961 if( bufpt==0 ){
16962 bufpt = "";
16964 zExtra = bufpt;
16967 for(length=0; length<precision && bufpt[length]; length++){}
16969 length = sqlite3Strlen30(bufpt);
16989 bufpt = zExtra = sqlite3Malloc( n );
16990 if( bufpt==0 ){
16995 bufpt = buf;
16998 if( needQuote ) bufpt[j++] = q;
17001 bufpt[j++] = ch = escarg[i];
17002 if( ch==q ) bufpt[j++] = ch;
17004 if( needQuote ) bufpt[j++] = q;
17005 bufpt[j] = 0;
17039 ** The text of the conversion is pointed to by "bufpt" and is
17051 sqlite3StrAccumAppend(pAccum, bufpt, length);