Searched defs:ch (Results 1 - 6 of 6) sorted by relevance

/scripts/
H A Dbin2c.c14 int ch, total=0; local
22 while ((ch = getchar()) != EOF)
25 printf("\\x%02x",ch);
30 } while (ch != EOF);
/scripts/kconfig/
H A Dlkc.h161 static inline bool sym_set_choice_value(struct symbol *ch, struct symbol *chval) argument
H A Dmconf.c346 char ch; local
420 case yes: ch = '*'; break;
421 case mod: ch = 'M'; break;
422 default: ch = ' '; break;
424 item_make("<%c>", ch);
473 case yes: ch = '*'; break;
474 case mod: ch = 'M'; break;
475 default: ch = ' '; break;
479 item_make("{%c}", ch);
481 item_make("<%c>", ch);
[all...]
H A Dsymbol.c542 signed char ch; local
548 ch = *str++;
549 if (ch == '-')
550 ch = *str++;
551 if (!isdigit(ch))
553 if (ch == '0' && *str != 0)
555 while ((ch = *str++)) {
556 if (!isdigit(ch))
563 ch = *str++;
565 if (!isxdigit(ch))
[all...]
H A Dnconf.c739 char ch; local
812 ch = '*';
815 ch = 'M';
818 ch = ' ';
821 item_make(menu, 't', "<%c>", ch);
867 ch = '*';
870 ch = 'M';
873 ch = ' ';
879 't', "{%c}", ch);
882 't', "<%c>", ch);
[all...]
H A Dqconf.cc164 char ch; local
181 ch = 'Y';
186 ch = 'M';
194 ch = 'N';
204 setText(dataColIdx, QChar(ch));

Completed in 3109 milliseconds