Lines Matching refs:nWidth
18186 int nWidth; /* Number of slots in colWidth[] and actualWidth[] */ member
19272 int nWidth = ArraySize(aExplainWidth); in shell_callback() local
19278 nWidth = ArraySize(aScanExpWidth); in shell_callback()
19281 if( nArg>nWidth ) nArg = nWidth; in shell_callback()
20086 int nWidth = 0; in display_explain_scanstats() local
20096 if( n>nWidth ) nWidth = n; in display_explain_scanstats()
20098 nWidth += 4; in display_explain_scanstats()
20144 "% *z (%z)", -1*(nWidth-scanStatsHeight(p, ii)*3), zText, z in display_explain_scanstats()
20637 if( nColumn>p->nWidth ){ in exec_prepared_stmt_columnar()
20640 for(i=p->nWidth; i<nColumn; i++) p->colWidth[i] = 0; in exec_prepared_stmt_columnar()
20641 p->nWidth = nColumn; in exec_prepared_stmt_columnar()
27468 for (i=0;i<p->nWidth;i++) { in do_meta_command()
28104 p->nWidth = nArg-1; in do_meta_command()
28105 p->colWidth = realloc(p->colWidth, (p->nWidth+1)*sizeof(int)*2); in do_meta_command()
28106 if( p->colWidth==0 && p->nWidth>0 ) shell_out_of_memory(); in do_meta_command()
28107 if( p->nWidth ) p->actualWidth = &p->colWidth[p->nWidth]; in do_meta_command()