Home
last modified time | relevance | path

Searched refs:ref (Results 1 – 15 of 15) sorted by relevance

/scripts/
Ddocumentation-file-ref-check108 my $ref = $2;
119 $ref =~ s/(txt|rst)\[\d+]$/$1/;
122 $ref =~ s/\].*// if (!($ref =~ m/\[/));
125 $ref =~ s/[\,\.]+$//;
127 my $fulref = "$prefix$ref";
144 next if (grep -e, glob("$ref $fulref"));
151 next if (grep -e, glob("$path/$ref $path/../$ref $path/$fulref"));
160 if (!($ref =~ m/(scripts|Kconfig|Kbuild)/)) {
161 $broken_ref{$ref}++;
177 foreach my $ref (keys %broken_ref) {
[all …]
Dleaking_addresses.pl600 my ($ref, $desc) = @_;
605 if (keys %$ref == 0) {
610 foreach(keys %$ref) {
611 my $lines = $ref->{$_};
Dget_maintainer.pl1818 foreach my $ref (@{$commit_author}) {
1819 print STDERR " Author: @{$ref}[1]\n";
1824 foreach my $ref (@{$commit_signer}) {
1825 print STDERR " @{$ref}[2]: @{$ref}[1]\n";
2106 foreach my $ref(@{$commit_author_hash{$authors[$i]}}) {
2107 if (@{$ref}[0] eq $commits[$i] &&
2108 @{$ref}[1] eq $subjects[$i]) {
2141 foreach my $ref(@{$commit_signer_hash{$signer}}) {
2142 if (@{$ref}[0] eq $commit &&
2143 @{$ref}[1] eq $subject &&
[all …]
Dasn1_compiler.c859 struct type **ref; in parse_type() local
1012 ref = bsearch(cursor, type_index, nr_types, sizeof(type_index[0]), in parse_type()
1014 if (!ref) { in parse_type()
1019 cursor->type = *ref; in parse_type()
1020 (*ref)->ref_count++; in parse_type()
Dcheckpatch.pl4488 my $ref = $1;
4490 $ref .= $1;
4491 $ref =~ s/\s//g;
4493 "Avoid multiple line dereference - prefer '$ref'\n" . $hereprev);
/scripts/dtc/
Dlivetree.c228 struct node * add_orphan_node(struct node *dt, struct node *new_node, char *ref) in add_orphan_node() argument
236 if (ref[0] == '/') { in add_orphan_node()
237 d = data_add_marker(d, TYPE_STRING, ref); in add_orphan_node()
238 d = data_append_data(d, ref, strlen(ref) + 1); in add_orphan_node()
242 d = data_add_marker(d, REF_PHANDLE, ref); in add_orphan_node()
486 if (streq(m->ref, label)) in get_marker_label()
582 struct node *get_node_by_ref(struct node *tree, const char *ref) in get_node_by_ref() argument
587 if (streq(ref, "/")) in get_node_by_ref()
590 if (ref[0] == '/') in get_node_by_ref()
591 path = ref; in get_node_by_ref()
[all …]
Dtreesource.c203 dummy_marker.ref = NULL; in write_propval()
217 fprintf(f, " %s:", m->ref); in write_propval()
233 if (m_phandle->ref[0] == '/') in write_propval()
234 fprintf(f, "&{%s}", m_phandle->ref); in write_propval()
236 fprintf(f, "&%s", m_phandle->ref); in write_propval()
Ddata.c15 free(m->ref); in data_free()
227 struct data data_add_marker(struct data d, enum markertype type, char *ref) in data_add_marker() argument
234 m->ref = ref; in data_add_marker()
Ddtc.h130 char *ref; member
186 struct data data_add_marker(struct data d, enum markertype type, char *ref);
277 struct node *add_orphan_node(struct node *old_node, struct node *new_node, char *ref);
301 struct node *get_node_by_ref(struct node *tree, const char *ref);
Ddtc-parser.y27 static bool is_ref_relative(const char *ref) in is_ref_relative() argument
29 return ref[0] != '/' && strchr(&ref[1], '/'); in is_ref_relative()
Dchecks.c480 check_duplicate_label(c, dti, m->ref, node, prop, m); in check_duplicate_label_node()
506 if (node != get_node_by_ref(root, m->ref)) in check_phandle_prop()
616 refnode = get_node_by_ref(dt, m->ref); in fixup_phandle_references()
620 "label \"%s\"\n", m->ref); in fixup_phandle_references()
651 refnode = get_node_by_ref(dt, m->ref); in fixup_path_references()
654 m->ref); in fixup_path_references()
Dflattree.c157 emit_offset_label(f, m->ref, m->offset); in asm_emit_data()
/scripts/gdb/linux/
Dmodules.py87 ref=str(module['refcnt']['counter'] - 1)))
/scripts/coccinelle/free/
Dkfree.cocci126 cocci.print_secs("ref",p2)
/scripts/gcc-plugins/
Dgcc-common.h398 static inline cgraph_node_ptr ipa_ref_referring_node(struct ipa_ref *ref) in ipa_ref_referring_node() argument
400 return dyn_cast<cgraph_node_ptr>(ref->referring); in ipa_ref_referring_node()