Lines Matching defs:colWidth
15573 int *colWidth; /* Requested width of each column in columnar modes */
15575 int nWidth; /* Number of slots in colWidth[] and actualWidth[] */
17872 p->colWidth = realloc(p->colWidth, (nColumn+1)*2*sizeof(int));
17873 shell_check_oom(p->colWidth);
17874 for(i=p->nWidth; i<nColumn; i++) p->colWidth[i] = 0;
17876 p->actualWidth = &p->colWidth[nColumn];
17880 w = p->colWidth[i];
17886 int wx = p->colWidth[i];
17907 int wx = p->colWidth[i];
17949 if( p->colWidth[i]<0 ) w = -w;
18010 if( p->colWidth[j]<0 ) w = -w;
24625 raw_printf(p->out, "%d ", p->colWidth[i]);
25235 p->colWidth = realloc(p->colWidth, (p->nWidth+1)*sizeof(int)*2);
25236 if( p->colWidth==0 && p->nWidth>0 ) shell_out_of_memory();
25237 if( p->nWidth ) p->actualWidth = &p->colWidth[p->nWidth];
25239 p->colWidth[j-1] = (int)integerValue(azArg[j]);
26446 free(data.colWidth);