Searched refs:cnt (Results 1 – 4 of 4) sorted by relevance
/scripts/kconfig/ |
D | conf.c | 261 int cnt, def; in conf_choice() local 265 cnt = def = 0; in conf_choice() 274 cnt++; in conf_choice() 276 def = cnt; in conf_choice() 280 printf(" %d. %s", cnt, _(menu_get_prompt(child))); in conf_choice() 288 if (cnt == 1) { in conf_choice() 292 printf("[1-%d", cnt); in conf_choice() 300 cnt = def; in conf_choice() 301 printf("%d\n", cnt); in conf_choice() 314 cnt = def; in conf_choice() [all …]
|
D | confdata.c | 822 int i, cnt, def; in conf_set_all_new_symbols() local 880 cnt = 0; in conf_set_all_new_symbols() 882 cnt++; in conf_set_all_new_symbols() 888 def = (rand() % cnt); in conf_set_all_new_symbols() 890 cnt = 0; in conf_set_all_new_symbols() 892 if (def == cnt++) { in conf_set_all_new_symbols()
|
D | symbol.c | 729 int i, cnt, size; in sym_re_search() local 732 cnt = size = 0; in sym_re_search() 744 if (cnt + 1 >= size) { in sym_re_search() 753 sym_arr[cnt++] = sym; in sym_re_search() 756 sym_arr[cnt] = NULL; in sym_re_search()
|
/scripts/ |
D | checkpatch.pl | 717 my ($linenr, $cnt) = @_; 720 $cnt++; 723 while ($cnt) { 726 $cnt--; 1133 my $cnt = $realcnt; 1134 for (my $ln = $linenr + 1; $cnt > 0; $ln++) { 1137 $cnt--; 2183 my $cnt = $realcnt; 2191 while ($cnt > 0 && defined $lines[$ln - 1] && 2195 $cnt-- if ($lines[$ln - 1] !~ /^-/); [all …]
|