Lines Matching defs:width
9119 ** <table border=1 width=85% align=center>
30116 ** SQL from requesting large allocations using the precision or width
30162 int width; /* Width of the current field */
30167 etByte flag_zeropad; /* True if field width constant starts with zero */
30221 width = 0;
30251 width = wx & 0x7fffffff;
30253 if( width>SQLITE_PRINTF_PRECISION_LIMIT ){
30254 width = SQLITE_PRINTF_PRECISION_LIMIT;
30266 width = (int)getIntArg(pArgList);
30268 width = va_arg(ap,int);
30270 if( width<0 ){
30272 width = width >= -2147483647 ? -width : 0;
30275 if( width>SQLITE_PRINTF_PRECISION_LIMIT ){
30276 width = SQLITE_PRINTF_PRECISION_LIMIT;
30339 ** field width was negative.
30340 ** flag_zeropad TRUE if the width began with 0.
30342 ** width The specified field width. This is
30349 assert( width>=0 );
30399 if( flag_zeropad && precision<width-(prefix!=0) ){
30400 precision = width-(prefix!=0);
30546 szBufNeeded = MAX(e2,0)+(i64)precision+(i64)width+15;
30618 if( flag_zeropad && !flag_leftjustify && length < width){
30620 int nPad = width - length;
30621 for(i=width; i>=nPad; i--){
30626 length = width;
30634 length = width = 0;
30678 width -= precision-1;
30679 if( width>1 && !flag_leftjustify ){
30680 sqlite3_str_appendchar(pAccum, width-1, ' ');
30681 width = 0;
30703 && width==0
30736 if( flag_altform2 && width>0 ){
30737 /* Adjust width to account for extra bytes in UTF-8 characters */
30739 while( ii>=0 ) if( (bufpt[ii--] & 0xc0)==0x80 ) width++;
30808 length = width = 0;
30835 length = width = 0;
30845 ** "length" characters long. The field width is "width". Do
30846 ** the output. Both length and width are in bytes, not characters,
30848 ** indicating that width and precision should be expressed in characters,
30851 width -= length;
30852 if( width>0 ){
30853 if( !flag_leftjustify ) sqlite3_str_appendchar(pAccum, width, ' ');
30855 if( flag_leftjustify ) sqlite3_str_appendchar(pAccum, width, ' ');
119674 ** Estimate the total row width for a table.