Searched defs:in (Results 1 - 5 of 5) sorted by relevance

/scripts/kconfig/
H A Dconf.c21 static void xfgets(char *str, int size, FILE *in);
471 printf(" --defconfig <file> New config with default defined in <file>\n");
680 void xfgets(char *str, int size, FILE *in) argument
682 if (fgets(str, size, in) == NULL)
683 fprintf(stderr, "\nError in reading or end of file.\n");
H A Dconfdata.c78 static char *conf_expand_value(const char *in) argument
87 while ((src = strchr(in, '$'))) {
88 strncat(res_value, in, src - in);
97 in = src;
99 strcat(res_value, in);
187 FILE *in = NULL; local
194 in = zconf_fopen(name);
199 in = zconf_fopen(name);
200 if (in)
[all...]
H A Dsymbol.c677 * in which case "m" becomes "y".
855 * Expand symbol's names embedded in the string given in argument. Symbols'
859 const char *sym_expand_string_value(const char *in) argument
865 reslen = strlen(in) + 1;
869 while ((src = strchr(in, '$'))) {
875 strncat(res, in, src - in);
896 in = src;
898 strcat(res, in);
903 sym_escape_string_value(const char *in) argument
[all...]
/scripts/mod/
H A Dsumversion.c1 #include <netinet/in.h>
21 * by Colin Plumb in 1993.
88 static void md4_transform(uint32_t *hash, uint32_t const *in) argument
97 ROUND1(a, b, c, d, in[0], 3);
98 ROUND1(d, a, b, c, in[1], 7);
99 ROUND1(c, d, a, b, in[2], 11);
100 ROUND1(b, c, d, a, in[3], 19);
101 ROUND1(a, b, c, d, in[4], 3);
102 ROUND1(d, a, b, c, in[5], 7);
103 ROUND1(c, d, a, b, in[
[all...]
/scripts/
H A Dkallsyms.c12 * map char code 0xF7 to represent "write_" and then in every symbol where
14 * The used codes themselves are also placed in the table so that the
68 fprintf(stderr, "Usage: kallsyms [--all-symbols] [--symbol-prefix=<prefix char>] < in.map > out.S\n");
74 * in ARM ELF files: $a, $t and $d.
102 static int read_symbol(FILE *in, struct sym_entry *s) argument
108 rc = fscanf(in, "%llx %c %499s\n", &s->addr, &stype, str);
110 if (rc != EOF && fgets(str, 500, in) == NULL)
145 /* include the type field in the symbol name, so that it gets
179 * after pass 1, they would be included in pass 2 when --all-symbols is
209 * they may get dropped in pas
230 read_map(FILE *in) argument
[all...]

Completed in 139 milliseconds