Home
last modified time | relevance | path

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

1234

/scripts/coccinelle/iterators/
A Duse_after_iter.cocci22 identifier c,member;
90 list_for_each_entry(c,...) S
98 list_for_each_entry_from(c,...) S
116 hlist_for_each_entry(c,...) S
124 list_remove_head(x,c,...)
126 list_entry_is_head(c,...)
128 sizeof(<+...c...+>)
130 &c->member
132 T c;
134 c = E
[all …]
/scripts/dtc/
A Dchecks.c90 (c->error) ? "ERROR" : "Warning", c->name); in check_msg()
140 if (c->fn) in check_nodes_props()
141 c->fn(c, dti, node); in check_nodes_props()
186 TRACE(c, "\tCompleted, status %d", c->status); in run_check()
190 if ((c->status != PASSED) && (c->error)) in run_check()
2011 if ((warn && !c->warn) || (error && !c->error)) in enable_warning_error()
2015 c->warn = c->warn || warn; in enable_warning_error()
2016 c->error = c->error || error; in enable_warning_error()
2036 c->warn = c->warn && !warn; in disable_warning_error()
2037 c->error = c->error && !error; in disable_warning_error()
[all …]
A Dlivetree.c452 struct node *c; in get_property_by_label() local
479 struct node *c; in get_marker_label() local
804 struct node *c; in sort_node() local
809 sort_node(c); in sort_node()
846 struct node *c; in any_label_tree() local
851 for_each_child(node, c) in any_label_tree()
863 struct node *c; in generate_label_tree_internal() local
901 struct node *c; in any_fixup_tree() local
952 struct node *c; in generate_fixups_tree_internal() local
972 struct node *c; in any_local_fixup_tree() local
[all …]
A Dtreesource.c42 static bool isstring(char c) in isstring() argument
44 return (isprint((unsigned char)c) in isstring()
45 || (c == '\0') in isstring()
46 || strchr("\a\b\t\n\v\f\r", c)); in isstring()
60 char c = *s++; in write_propval_string() local
61 switch (c) { in write_propval_string()
93 if (isprint((unsigned char)c)) in write_propval_string()
94 fprintf(f, "%c", c); in write_propval_string()
96 fprintf(f, "\\x%02"PRIx8, c); in write_propval_string()
A Ddtc.h253 #define for_each_child_withdel(n, c) \ argument
254 for ((c) = (n)->children; (c); (c) = (c)->next_sibling)
256 #define for_each_child(n, c) \ argument
257 for_each_child_withdel(n, c) \
258 if (!(c)->deleted)
/scripts/mod/
A Dsumversion.c69 #define ROUND1(a,b,c,d,k,s) (a = lshift(a + F(b,c,d) + k, s)) argument
70 #define ROUND2(a,b,c,d,k,s) (a = lshift(a + G(b,c,d) + k + (uint32_t)0x5A827999,s)) argument
71 #define ROUND3(a,b,c,d,k,s) (a = lshift(a + H(b,c,d) + k + (uint32_t)0x6ED9EBA1,s)) argument
92 uint32_t a, b, c, d; in md4_transform() local
96 c = hash[2]; in md4_transform()
99 ROUND1(a, b, c, d, in[0], 3); in md4_transform()
100 ROUND1(d, a, b, c, in[1], 7); in md4_transform()
103 ROUND1(a, b, c, d, in[4], 3); in md4_transform()
104 ROUND1(d, a, b, c, in[5], 7); in md4_transform()
152 hash[2] += c; in md4_transform()
[all …]
/scripts/gdb/linux/
A Dlists.py70 c = head
77 p = c['prev'].dereference()
78 n = c['next'].dereference()
80 if p['next'] != c.address:
85 current=c,
94 current=c
98 if n['prev'] != c.address:
103 current=c,
112 current=c
115 c = n
[all …]
/scripts/
A Dcleanfile25 my($i, $c);
28 $c = substr($li, $i, 1);
29 if ($c eq "\t") {
35 } elsif ($c eq "\n" || $c eq "\r") {
39 $lo .= $c;
41 } elsif ($c eq " ") {
47 $lo .= $c;
60 my($c, $i);
65 $c = substr($li,$i,1);
66 if ($c eq "\t") {
[all …]
A Dcleanpatch25 my($i, $c);
28 $c = substr($li, $i, 1);
29 if ($c eq "\t") {
35 } elsif ($c eq "\n" || $c eq "\r") {
39 $lo .= $c;
41 } elsif ($c eq " ") {
47 $lo .= $c;
60 my($c, $i);
65 $c = substr($li,$i,1);
66 if ($c eq "\t") {
[all …]
A Dheaders_install.sh83 for c in $configs
89 if echo "$INFILE:$c" | grep -q "$ignore$"; then
96 echo "error: $INFILE: leak $c to user-space" >&2
A Drustdoc_test_builder.rs46 .filter(|x| x.chars().all(|c| c.is_alphanumeric() || c == '_')) in main()
A DMakefile.host8 $(obj)/%.lex.c: $(src)/%.l FORCE
14 cmd_bison = $(YACC) -o $(basename $@).c --defines=$(basename $@).h -t -l $<
16 $(obj)/%.tab.c $(obj)/%.tab.h: $(src)/%.y FORCE
113 $(host-csingle): $(obj)/%: $(obj)/%.c FORCE
130 $(host-cobjs): $(obj)/%.o: $(obj)/%.c FORCE
164 targets += $(call intermediate_targets, .lex.o, .lex.c) \
165 $(call intermediate_targets, .tab.o, .tab.c .tab.h)
A Dkallsyms.c291 int c, rlen, total=0; in expand_symbol() local
294 c = *data; in expand_symbol()
297 if (best_table[c][0]==c && best_table_len[c]==1) { in expand_symbol()
298 *result++ = c; in expand_symbol()
302 rlen = expand_symbol(best_table[c], best_table_len[c], result); in expand_symbol()
610 unsigned int i, j, c; in insert_real_symbols_in_table() local
614 c = table[i]->sym[j]; in insert_real_symbols_in_table()
615 best_table[c][0]=c; in insert_real_symbols_in_table()
616 best_table_len[c]=1; in insert_real_symbols_in_table()
725 if (c == -1) in main()
[all …]
A DMakefile.compiler12 cc-cross-prefix = $(firstword $(foreach c, $(1), \
13 $(if $(shell command -v -- $(c)gcc 2>/dev/null), $(c))))
46 $(1) -Werror $(2) $(3:-Wno-%=-W%) -c -x c /dev/null -o "$$TMP",$(3),$(4))
/scripts/atomic/fallbacks/
A Dfetch_add_unless2 ${int} c = raw_${atomic}_read(v);
5 if (unlikely(c == u))
7 } while (!raw_${atomic}_try_cmpxchg(v, &c, c + a));
9 return c;
A Ddec_unless_positive2 ${int} c = raw_${atomic}_read(v);
5 if (unlikely(c > 0))
7 } while (!raw_${atomic}_try_cmpxchg(v, &c, c - 1));
A Dinc_unless_negative2 ${int} c = raw_${atomic}_read(v);
5 if (unlikely(c < 0))
7 } while (!raw_${atomic}_try_cmpxchg(v, &c, c + 1));
A Ddec_if_positive2 ${int} dec, c = raw_${atomic}_read(v);
5 dec = c - 1;
8 } while (!raw_${atomic}_try_cmpxchg(v, &c, dec));
/scripts/coccinelle/misc/
A Dorplus.cocci18 constant c,c1;
24 c1 + c - 1
26 c1@i1 +@p c@i
30 constant r.c, r.c1;
36 e | c@i
38 e & c@i
40 e |= c@i
42 e &= c@i
/scripts/coccinelle/api/alloc/
A Dpool_zalloc-simple.cocci35 expression a,b,c;
39 - x = dma_pool_alloc(a,b,c);
40 + x = dma_pool_zalloc(a,b,c);
46 expression a,b,c;
50 - x = pci_pool_alloc(a,b,c);
51 + x = pci_pool_zalloc(a,b,c);
61 expression a,b,c;
66 x = @p\(dma_pool_alloc\|pci_pool_alloc\)(a,b,c);
/scripts/gendwarfksyms/examples/
A Dkabi_ex.h90 KABI_USE2(1, int b, int c);
104 KABI_USE2(1, int b, int c);
172 int c; member
189 int c; member
208 int c; member
/scripts/coccinelle/tests/
A Dunsigned_lesser_than_zero.cocci39 expression c, e, v;
50 (\( v@p < 0 \| v@p <= 0 \)) || ... || (\( v >= c \| v > c \))
52 (\( v >= c \| v > c \)) || ... || (\( v@p < 0 \| v@p <= 0 \))
54 (\( v@p >= 0 \| v@p > 0 \)) && ... && (\( v < c \| v <= c \))
56 ((\( v < c \| v <= c \) && ... && \( v@p >= 0 \| v@p > 0 \)))
/scripts/dtc/libfdt/
A Dfdt_addresses.c16 const fdt32_t *c; in fdt_cells() local
20 c = fdt_getprop(fdt, nodeoffset, name, &len); in fdt_cells()
21 if (!c) in fdt_cells()
24 if (len != sizeof(*c)) in fdt_cells()
27 val = fdt32_to_cpu(*c); in fdt_cells()
/scripts/kconfig/
A Dpreprocess.c502 static char *__expand_string(const char **str, bool (*is_end)(char c), in __expand_string() argument
546 static bool is_end_of_str(char c) in is_end_of_str() argument
548 return !c; in is_end_of_str()
566 static bool is_end_of_token(char c) in is_end_of_token() argument
568 return !(isalnum(c) || c == '_' || c == '-'); in is_end_of_token()
/scripts/bash-completion/
A Dmake66 local c c2
69 for c in "${COMPREPLY[@]}"; do
74 cross_compile+=("${c%elfedit}")
79 while read -r c; do
80 if [[ ${c} == *-elfedit ]]; then
81 keywords+=("${c%elfedit}")
83 done < <(compgen -c)
99 while read -r c; do
101 keywords+=("${c#clang}")
103 done < <(compgen -c)
[all …]

Completed in 29 milliseconds

1234