Lines Matching refs:width

223   int width;                 /* Width of the current field */  in sqlite3_str_vappendf()  local
282 width = 0; in sqlite3_str_vappendf()
312 width = wx & 0x7fffffff; in sqlite3_str_vappendf()
314 if( width>SQLITE_PRINTF_PRECISION_LIMIT ){ in sqlite3_str_vappendf()
315 width = SQLITE_PRINTF_PRECISION_LIMIT; in sqlite3_str_vappendf()
327 width = (int)getIntArg(pArgList); in sqlite3_str_vappendf()
329 width = va_arg(ap,int); in sqlite3_str_vappendf()
331 if( width<0 ){ in sqlite3_str_vappendf()
333 width = width >= -2147483647 ? -width : 0; in sqlite3_str_vappendf()
336 if( width>SQLITE_PRINTF_PRECISION_LIMIT ){ in sqlite3_str_vappendf()
337 width = SQLITE_PRINTF_PRECISION_LIMIT; in sqlite3_str_vappendf()
410 assert( width>=0 ); in sqlite3_str_vappendf()
460 if( flag_zeropad && precision<width-(prefix!=0) ){ in sqlite3_str_vappendf()
461 precision = width-(prefix!=0); in sqlite3_str_vappendf()
607 szBufNeeded = MAX(e2,0)+(i64)precision+(i64)width+15; in sqlite3_str_vappendf()
679 if( flag_zeropad && !flag_leftjustify && length < width){ in sqlite3_str_vappendf()
681 int nPad = width - length; in sqlite3_str_vappendf()
682 for(i=width; i>=nPad; i--){ in sqlite3_str_vappendf()
687 length = width; in sqlite3_str_vappendf()
695 length = width = 0; in sqlite3_str_vappendf()
739 width -= precision-1; in sqlite3_str_vappendf()
740 if( width>1 && !flag_leftjustify ){ in sqlite3_str_vappendf()
741 sqlite3_str_appendchar(pAccum, width-1, ' '); in sqlite3_str_vappendf()
742 width = 0; in sqlite3_str_vappendf()
764 && width==0 in sqlite3_str_vappendf()
797 if( flag_altform2 && width>0 ){ in sqlite3_str_vappendf()
800 while( ii>=0 ) if( (bufpt[ii--] & 0xc0)==0x80 ) width++; in sqlite3_str_vappendf()
869 length = width = 0; in sqlite3_str_vappendf()
896 length = width = 0; in sqlite3_str_vappendf()
912 width -= length; in sqlite3_str_vappendf()
913 if( width>0 ){ in sqlite3_str_vappendf()
914 if( !flag_leftjustify ) sqlite3_str_appendchar(pAccum, width, ' '); in sqlite3_str_vappendf()
916 if( flag_leftjustify ) sqlite3_str_appendchar(pAccum, width, ' '); in sqlite3_str_vappendf()