Lines Matching refs:width
104 * used for the actual width calculations.
156 * Find maximum width of the columns to equalize.
157 * Find total width of the columns *not* to maximize.
166 if (ewidth < col->width)
167 ewidth = col->width;
172 xwidth += col->width;
177 * Update total width of the columns not to maximize.
185 if (col->width == ewidth)
188 xwidth += ewidth - col->width;
189 col->width = ewidth;
195 * available width, deducting 3n margins between columns.
196 * Distribute the available width evenly.
205 * Emulate a bug in GNU tbl width calculation that
224 col->width = (double)xwidth * ++necol / nxcol
227 col->width--;
228 ewidth += col->width;
246 if (col->width < sz)
247 col->width = sz;
279 if (col->width < sz)
280 col->width = sz;
294 * First calculate number width and decimal place (last + 1 for
328 col->width += d - col->decimal;
330 if (sz > col->width)
331 col->width = sz;