Home
last modified time | relevance | path

Searched refs:in (Results 1 – 25 of 43) sorted by relevance

12

/scripts/mod/
Dsumversion.c88 static void md4_transform(uint32_t *hash, uint32_t const *in) in md4_transform() argument
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()
102 ROUND1(d, a, b, c, in[5], 7); in md4_transform()
103 ROUND1(c, d, a, b, in[6], 11); in md4_transform()
104 ROUND1(b, c, d, a, in[7], 19); in md4_transform()
105 ROUND1(a, b, c, d, in[8], 3); in md4_transform()
[all …]
/scripts/
DKbuild.include30 # Escape single quote for use in echo statements
53 # - stdin is piped in from the first prerequisite ($<) so one has
70 # See documentation in Documentation/kbuild/makefiles.txt
74 # Return first prefix where a prefix$(CC) is found in PATH.
75 # If no $(CC) found in PATH with listed prefixes return nothing
301 # Replace >#< with >\#< to avoid starting a comment in the .cmd file
303 # Replace >'< with >'\''< to be able to enclose the whole string in '...'
308 # PHONY targets skipped in both cases.
334 # See also __KSYM_DEPS__ in include/linux/export.h.
339 case "$(1)" in \
[all …]
Dkallsyms.c115 static int read_symbol(FILE *in, struct sym_entry *s) in read_symbol() argument
121 rc = fscanf(in, "%llx %c %499s\n", &s->addr, &stype, str); in read_symbol()
123 if (rc != EOF && fgets(str, 500, in) == NULL) in read_symbol()
273 static void read_map(FILE *in) in read_map() argument
275 while (!feof(in)) { in read_map()
284 if (read_symbol(in, &table[table_cnt]) == 0) { in read_map()
/scripts/kconfig/
Dconfdata.c84 static char *conf_expand_value(const char *in) in conf_expand_value() argument
93 while ((src = strchr(in, '$'))) { in conf_expand_value()
94 strncat(res_value, in, src - in); in conf_expand_value()
103 in = src; in conf_expand_value()
105 strcat(res_value, in); in conf_expand_value()
253 FILE *in = NULL; in conf_read_simple() local
261 in = zconf_fopen(name); in conf_read_simple()
266 in = zconf_fopen(name); in conf_read_simple()
267 if (in) in conf_read_simple()
278 in = zconf_fopen(name); in conf_read_simple()
[all …]
Dzconf.lex.c_shipped165 * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case.
174 /* The state buf must be large enough to hold one state per character in the main buffer.
221 char *yy_buf_pos; /* current position in input buffer */
223 /* Size of input buffer in bytes, not including room for EOB
284 /* We provide macros for accessing buffer states in case in the
285 * future we want to put the buffer states in a more general
304 /* Points to current character in buffer. */
730 /* This struct is not used in this scanner,
913 /* Macros after this point can all be overridden by user definitions in
964 * is returned in "result".
[all …]
Dlkc_proto.h33 const char * sym_expand_string_value(const char *in);
34 const char * sym_escape_string_value(const char *in);
Dsymbol.c884 const char *sym_expand_string_value(const char *in) in sym_expand_string_value() argument
890 reslen = strlen(in) + 1; in sym_expand_string_value()
894 while ((src = strchr(in, '$'))) { in sym_expand_string_value()
900 strncat(res, in, src - in); in sym_expand_string_value()
921 in = src; in sym_expand_string_value()
923 strcat(res, in); in sym_expand_string_value()
928 const char *sym_escape_string_value(const char *in) in sym_escape_string_value() argument
935 reslen = strlen(in) + strlen("\"\"") + 1; in sym_escape_string_value()
937 p = in; in sym_escape_string_value()
954 p = in; in sym_escape_string_value()
Dzconf.tab.c_shipped3 /* Bison implementation for Yacc-like parsers in C
12 This program is distributed in the hope that it will be useful,
30 This special exception was added by the Free Software Foundation in
394 elements in the stack, and YYPTR gives the new location of the
432 /* YYLAST -- Last index in YYTABLE. */
487 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
640 /* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM.
677 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
714 /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
831 YYFAIL appears to be in use. Nevertheless, it is formally deprecated
[all …]
/scripts/ksymoops/
DREADME3 The latest version can be found in
5 with patches to other utilities in order to give more accurate Oops
/scripts/coccinelle/misc/
Dbadty.cocci4 //# in memory allocation functions by checking the type of the allocated memory
6 //# to the the memory being allocated. There are false positives in cases the
7 //# sizeof argument is not used in constructing the return value. The result
Dboolreturn.cocci1 /// Return statements in functions returning bool should use
57 msg = "WARNING: return of 0/1 in function '%s' with return type bool" % fn
Difcol.cocci1 /// Find confusingly indented code in or after an if. An if branch should
8 /// is not visually aligned may be considered to be in the same column.
Dorplus.cocci3 /// bits in the two constants are actually disjoint.
Dsemicolon.cocci7 // Comments: Some false positives on empty default cases in switch statements.
Dbugon.cocci60 … sure the condition has no side effects (see conditional BUG_ON definition in include/asm-generic/…
/scripts/genksyms/
Dlex.lex.c_shipped146 /* The state buf must be large enough to hold one state per character in the main buffer.
193 char *yy_buf_pos; /* current position in input buffer */
195 /* Size of input buffer in bytes, not including room for EOB
256 /* We provide macros for accessing buffer states in case in the
257 * future we want to put the buffer states in a more general
276 /* Points to current character in buffer. */
367 /* This struct is not used in this scanner,
552 This program is distributed in the hope that it will be useful, but
570 and then we categorize those basic tokens in the second stage. */
621 /* Macros after this point can all be overridden by user definitions in
[all …]
Dparse.tab.h_shipped3 /* Bison interface for Yacc-like parsers in C
12 This program is distributed in the hope that it will be useful,
30 This special exception was added by the Free Software Foundation in
Dparse.tab.c_shipped3 /* Bison implementation for Yacc-like parsers in C
12 This program is distributed in the hope that it will be useful,
30 This special exception was added by the Free Software Foundation in
403 elements in the stack, and YYPTR gives the new location of the
441 /* YYLAST -- Last index in YYTABLE. */
496 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
665 /* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM.
701 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
737 /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
897 YYFAIL appears to be in use. Nevertheless, it is formally deprecated
[all …]
Dkeywords.gperf36 # attribute commented out in modutils 2.4.2. People are using 'attribute' as a
/scripts/dtc/
Ddtc-lexer.lex.c_shipped147 * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case.
156 /* The state buf must be large enough to hold one state per character in the main buffer.
204 char *yy_buf_pos; /* current position in input buffer */
206 /* Size of input buffer in bytes, not including room for EOB
267 /* We provide macros for accessing buffer states in case in the
268 * future we want to put the buffer states in a more general
287 /* Points to current character in buffer. */
378 /* This struct is not used in this scanner,
621 * This program is distributed in the hope that it will be useful,
715 /* Macros after this point can all be overridden by user definitions in
[all …]
Ddtc-parser.tab.h_shipped3 /* Bison interface for Yacc-like parsers in C
12 This program is distributed in the hope that it will be useful,
30 This special exception was added by the Free Software Foundation in
Ddtc-parser.tab.c_shipped3 /* Bison implementation for Yacc-like parsers in C
12 This program is distributed in the hope that it will be useful,
30 This special exception was added by the Free Software Foundation in
400 elements in the stack, and YYPTR gives the new location of the
438 /* YYLAST -- Last index in YYTABLE. */
552 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
573 /* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM.
611 /* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If
939 if the built-in stack extension method is used).
972 /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
[all …]
/scripts/coccinelle/null/
Dkmerr.cocci2 /// NULL check. It only gives a report in the case where there is some
3 /// error handling code later in the function, which may be helpful
4 /// in determining what the error handling code for the call to kmalloc etc
Dbadzero.cocci96 try let _ = Hashtbl.find negtable f in ()
116 try let _ = Hashtbl.find negtable f in ()
119 // This rule may lead to inconsistent path problems, if E is defined in two
/scripts/coccinelle/api/alloc/
Dkzalloc-simple.cocci5 /// Note in particular that there are no ...s in the rule, so all of the

12