Home
last modified time | relevance | path

Searched refs:c (Results 1 – 25 of 33) sorted by relevance

12

/scripts/genksyms/
DMakefile11 $(obj)/lex.o: $(obj)/parse.h $(obj)/keywords.c
20 quiet_cmd_keywords.c = GPERF $@
21 cmd_keywords.c = gperf -L ANSI-C -a -C -E -g -H is_reserved_hash \
24 $(obj)/keywords.c: $(obj)/keywords.gperf FORCE
25 $(call if_changed,keywords.c)
30 quiet_cmd_lex.c = FLEX $@
31 cmd_lex.c = flex -o$@ -d $< $(obj)/parse.h
33 $(obj)/lex.c: $(obj)/lex.l $(obj)/parse.h $(obj)/keywords.c FORCE
34 $(call if_changed,lex.c)
39 quiet_cmd_parse.c = BISON $@
[all …]
Dlex.c_shipped1 #line 2 "scripts/genksyms/lex.c"
3 #line 4 "scripts/genksyms/lex.c"
11 /* %if-c-only */
26 /* %if-c++-only */
29 /* %if-c-only */
33 /* %if-c-only */
40 /* %if-c-only */
51 /* %if-c-or-c++ */
118 /* %if-c++-only */
155 #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
[all …]
D.gitignore1 keywords.c
2 lex.c
Dgenksyms.c122 static unsigned long partial_crc32_one(unsigned char c, unsigned long crc) in partial_crc32_one() argument
124 return crctab32[(crc ^ c) & 0xff] ^ (crc >> 8); in partial_crc32_one()
322 int c; in read_node() local
324 while ((c = fgetc(f)) != EOF) { in read_node()
325 if (c == ' ') { in read_node()
329 } else if (c == '\n') { in read_node()
332 ungetc(c, f); in read_node()
339 *node.string++ = c; in read_node()
/scripts/mod/
Dsumversion.c67 #define ROUND1(a,b,c,d,k,s) (a = lshift(a + F(b,c,d) + k, s)) argument
68 #define ROUND2(a,b,c,d,k,s) (a = lshift(a + G(b,c,d) + k + (uint32_t)0x5A827999,s)) argument
69 #define ROUND3(a,b,c,d,k,s) (a = lshift(a + H(b,c,d) + k + (uint32_t)0x6ED9EBA1,s)) argument
90 uint32_t a, b, c, d; in md4_transform() local
94 c = hash[2]; in md4_transform()
97 ROUND1(a, b, c, d, in[0], 3); in md4_transform()
98 ROUND1(d, a, b, c, in[1], 7); in md4_transform()
99 ROUND1(c, d, a, b, in[2], 11); in md4_transform()
100 ROUND1(b, c, d, a, in[3], 19); in md4_transform()
101 ROUND1(a, b, c, d, in[4], 3); in md4_transform()
[all …]
Dmk_elfconfig.c10 union { short s; char c[2]; } endian_test; in main() member
51 if (memcmp(endian_test.c, "\x01\x02", 2) == 0) in main()
53 else if (memcmp(endian_test.c, "\x02\x01", 2) == 0) in main()
/scripts/basic/
Dhash.c27 int c; in djb2_hash() local
29 c = *str; in djb2_hash()
30 while (c) { in djb2_hash()
31 hash = ((hash << 5) + hash) + c; in djb2_hash()
32 c = *++str; in djb2_hash()
40 int c; in r5_hash() local
42 c = *str; in r5_hash()
43 while (c) { in r5_hash()
44 hash = (hash + (c << 4) + (c >> 4)) * 11; in r5_hash()
45 c = *++str; in r5_hash()
/scripts/kconfig/
DPOTFILES.in1 scripts/kconfig/lxdialog/checklist.c
2 scripts/kconfig/lxdialog/inputbox.c
3 scripts/kconfig/lxdialog/menubox.c
4 scripts/kconfig/lxdialog/textbox.c
5 scripts/kconfig/lxdialog/util.c
6 scripts/kconfig/lxdialog/yesno.c
7 scripts/kconfig/mconf.c
8 scripts/kconfig/conf.c
9 scripts/kconfig/confdata.c
10 scripts/kconfig/gconf.c
D.gitignore5 lex.*.c
6 *.tab.c
8 zconf.hash.c
DMakefile146 .tmp_gtkcheck zconf.tab.c lex.zconf.c zconf.hash.c gconf.glade.h
247 $(obj)/zconf.tab.o: $(obj)/lex.zconf.c $(obj)/zconf.hash.c
273 $(obj)/zconf.tab.c: $(src)/zconf.y
274 $(obj)/lex.zconf.c: $(src)/zconf.l
275 $(obj)/zconf.hash.c: $(src)/zconf.gperf
277 %.tab.c: %.y
281 lex.%.c: %.l
285 %.hash.c: %.gperf
Dconfdata.c559 char *s, *d, c; in conf_split_config() local
627 while ((c = *s++)) { in conf_split_config()
628 c = tolower(c); in conf_split_config()
629 *d++ = (c == '_') ? '/' : c; in conf_split_config()
Dlex.zconf.c_shipped2 #line 3 "scripts/kconfig/lex.zconf.c"
138 #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
199 #define unput(c) yyunput( c, (yytext_ptr) )
895 static void yyunput (int c,char *buf_ptr );
1638 static void yyunput (int c, register char * yy_bp )
1668 *--yy_cp = (char) c;
1683 int c;
1741 c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */
1745 return c;
1752 * @note This function does not reset the start condition to @c INITIAL .
[all …]
/scripts/
Dcleanfile23 my($i, $c);
26 $c = substr($li, $i, 1);
27 if ($c eq "\t") {
33 } elsif ($c eq "\n" || $c eq "\r") {
37 $lo .= $c;
39 } elsif ($c eq " ") {
45 $lo .= $c;
58 my($c, $i);
63 $c = substr($li,$i,1);
64 if ($c eq "\t") {
[all …]
Dpnmtologo.c85 int c, val; in get_number() local
89 c = fgetc(fp); in get_number()
90 if (c == EOF) in get_number()
92 if (c == '#') { in get_number()
95 c = fgetc(fp); in get_number()
96 if (c == EOF) in get_number()
98 } while (c != '\n'); in get_number()
100 } while (isspace(c)); in get_number()
104 while (isdigit(c)) { in get_number()
105 val = 10*val+c-'0'; in get_number()
[all …]
Dcleanpatch23 my($i, $c);
26 $c = substr($li, $i, 1);
27 if ($c eq "\t") {
33 } elsif ($c eq "\n" || $c eq "\r") {
37 $lo .= $c;
39 } elsif ($c eq " ") {
45 $lo .= $c;
58 my($c, $i);
63 $c = substr($li,$i,1);
64 if ($c eq "\t") {
[all …]
Dcheckpatch.pl284 for my $c (split(//, $str)) {
285 if ($c eq "\t") {
293 $res .= $c;
336 my $c;
342 $c = substr($line, $off, 1);
362 $c eq "\\") {
368 if ($c eq "'" || $c eq '"') {
370 $sanitise_quote = $c;
372 substr($res, $off, 1, $c);
374 } elsif ($sanitise_quote eq $c) {
[all …]
Dkallsyms.c221 int c, rlen, total=0; in expand_symbol() local
224 c = *data; in expand_symbol()
227 if (best_table[c][0]==c && best_table_len[c]==1) { in expand_symbol()
228 *result++ = c; in expand_symbol()
232 rlen = expand_symbol(best_table[c], best_table_len[c], result); in expand_symbol()
474 unsigned int i, j, c; in insert_real_symbols_in_table() local
481 c = table[i].sym[j]; in insert_real_symbols_in_table()
482 best_table[c][0]=c; in insert_real_symbols_in_table()
483 best_table_len[c]=1; in insert_real_symbols_in_table()
Dmarkup_oops.pl338 my $c = 60 - length($line);
339 while ($c > 0) { print " "; $c = $c - 1; };
DMakefile.build145 $(obj)/%.s: $(src)/%.c FORCE
151 $(obj)/%.i: $(src)/%.c FORCE
166 $(obj)/%.symtypes : $(src)/%.c FORCE
223 $(obj)/%.o: $(src)/%.c FORCE
229 $(single-used-m): $(obj)/%.o: $(src)/%.c FORCE
239 $(obj)/%.lst: $(src)/%.c FORCE
DMakefile.host117 $(host-csingle): $(obj)/%: $(src)/%.c FORCE
133 $(host-cobjs): $(obj)/%.o: $(src)/%.c FORCE
156 $(host-cshobjs): $(obj)/%.o: $(src)/%.c FORCE
DKbuild.include71 $(word 1, $(foreach c,$(1), \
73 if (which $(strip $(c))$(CC)) > /dev/null 2>&1 ; then \
74 echo $(c); \
96 $(CC) $(KBUILD_CFLAGS) $(1) -c -xassembler /dev/null -o "$$TMP",$(1),$(2))
102 echo -e "$(1)" | $(CC) $(KBUILD_AFLAGS) -c -xassembler -o "$$TMP" -,$(2),$(3))
108 $(CC) $(KBUILD_CFLAGS) $(1) -c -xc /dev/null -o "$$TMP",$(1),$(2))
113 $(CC) $(KBUILD_CFLAGS) $(1) -c -xc /dev/null -o "$$TMP",y,n)
DMakefile.modpost109 $(modules:.ko=.mod.c): __modpost ;
125 $(modules:.ko=.mod.o): %.mod.o: %.mod.c FORCE
Dchecksyscalls.sh123 $* -E -x c - > /dev/null
Dextract-ikconfig7 test -e $binoffset || cc -o $binoffset ./scripts/binoffset.c || exit 1
/scripts/kconfig/lxdialog/
Dutil.c476 int i, in_paren = 0, c; in first_alpha() local
479 c = tolower(string[i]); in first_alpha()
481 if (strchr("<[(", c)) in first_alpha()
483 if (strchr(">])", c) && in_paren > 0) in first_alpha()
486 if ((!in_paren) && isalpha(c) && strchr(exempt, c) == 0) in first_alpha()

12