Home
last modified time | relevance | path

Searched refs:in (Results 1 – 25 of 48) 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/kconfig/
Dpreprocess.c17 static char *expand_string_with_args(const char *in, int argc, char *argv[]);
18 static char *expand_string(const char *in);
501 const char *in, *p; in __expand_string() local
509 p = in = *str; in __expand_string()
513 in_len = p - in; in __expand_string()
518 strncat(out, in, in_len); in __expand_string()
521 in = p; in __expand_string()
531 in_len = p - in; in __expand_string()
534 strncat(out, in, in_len); in __expand_string()
552 static char *expand_string_with_args(const char *in, int argc, char *argv[]) in expand_string_with_args() argument
[all …]
Dlexer.l42 static char *expand_token(const char *in, size_t n);
43 static void append_expanded_string(const char *in);
Dconfdata.c348 FILE *in = NULL; in conf_read_simple() local
356 in = zconf_fopen(name); in conf_read_simple()
361 in = zconf_fopen(name); in conf_read_simple()
362 if (in) in conf_read_simple()
387 in = zconf_fopen(env); in conf_read_simple()
388 if (in) { in conf_read_simple()
400 if (!in) in conf_read_simple()
427 while (compat_getline(&line, &line_asize, in) != -1) { in conf_read_simple()
523 fclose(in); in conf_read_simple()
Dlkc_proto.h21 const char * sym_escape_string_value(const char *in);
/scripts/coccinelle/misc/
Dminmax.cocci172 for p0 in p:
179 for p0 in p:
186 for p0 in p:
193 for p0 in p:
200 for p0 in p:
207 for p0 in p:
214 for p0 in p:
221 for p0 in p:
Dnewline_in_nl_msg.cocci3 /// Catch strings ending in newline with GENL_SET_ERR_MSG, NL_SET_ERR_MSG,
59 msg="WARNING avoid newline at end of message in %s" % (fname)
74 msg="WARNING avoid newline at end of message in %s" % (fname)
Dbadty.cocci5 //# in memory allocation functions by checking the type of the allocated memory
7 //# to the the memory being allocated. There are false positives in cases the
8 //# sizeof argument is not used in constructing the return value. The result
Dboolreturn.cocci2 /// Return statements in functions returning bool should use
58 msg = "WARNING: return of 0/1 in function '%s' with return type bool" % fn
Duninitialized_var.cocci9 /// papers over real bugs (or can in the future), and suppresses unrelated
12 /// changes. Keep in mind that in most cases, if an initialization is
Difcol.cocci2 /// Find confusingly indented code in or after an if. An if branch should
9 //# is not visually aligned may be considered to be in the same column.
Dflexible_array.cocci21 for p in positions:
22 if "uapi" in p.file:
Dsemicolon.cocci8 // Comments: Some false positives on empty default cases in switch statements.
Dorplus.cocci4 /// bits in the two constants are actually disjoint.
/scripts/
DKbuild.include32 # Escape single quote for use in echo statements
109 # To address it, we clean the target in signal traps.
112 # So, we cover them, and also SIGPIPE just in case.
142 # Replace >#< with >$(pound)< to avoid starting a comment in the .cmd file
144 # Replace >'< with >'\''< to be able to enclose the whole string in '...'
152 # PHONY targets skipped in both cases.
156 # no more breakage will slip in.
182 # Output (listed in the order they are checked):
188 # (6) - due to target not in $(targets)
192 # (4) The command line stored in the file named dir/.target.cmd
[all …]
Dkallsyms.c199 static struct sym_entry *read_symbol(FILE *in) in read_symbol() argument
207 rc = fscanf(in, "%llx %c %499s\n", &addr, &type, name); in read_symbol()
209 if (rc != EOF && fgets(name, 500, in) == NULL) in read_symbol()
316 static void read_map(FILE *in) in read_map() argument
320 while (!feof(in)) { in read_map()
321 sym = read_symbol(in); in read_map()
/scripts/ksymoops/
DREADME3 The latest version can be found in
5 other utilities in order to give more accurate Oops debugging.
/scripts/coccinelle/api/
Dcheck_bq27xxx_data.cocci4 //# Doesn't unfold macros used in register or property fields.
19 let p = List.hd p in
89 i1regs i2regs (List.hd p2).line in
125 i1dmregs i2dmregs (List.hd p2).line in
161 i1props i2props (List.hd p2).line in
Dstream_open.cocci5 // them to stream_open. A stream-like file is a file that does not use ppos in
6 // its read and write. Rationale for the conversion is to avoid deadlock in
11 virtual explain // explain decisions in the patch (SPFLAGS="-D explain")
189 // XXX maybe_steam.fops cannot be used in other rules - it gives "bad rule maybe_stream or bad vari…
204 // if both are used in the same file_operations together with an opener -
/scripts/coccinelle/null/
Dkmerr.cocci3 /// NULL check. It only gives a report in the case where there is some
4 /// error handling code later in the function, which may be helpful
5 /// in determining what the error handling code for the call to kmalloc etc
Dbadzero.cocci97 try let _ = Hashtbl.find negtable f in ()
117 try let _ = Hashtbl.find negtable f in ()
120 // This rule may lead to inconsistent path problems, if E is defined in two
/scripts/kconfig/tests/preprocess/builtin_func/
DKconfig20 # Every newline in the output is replaced with a space,
/scripts/coccinelle/tests/
Ddoubletest.cocci4 //# another expresssion in the same && or || operation, performs a
/scripts/kconfig/tests/preprocess/variable/
DKconfig49 # $(2) will be blank in this case.
/scripts/coccinelle/free/
Diounmap.cocci5 //# in the same function.

12