Home
last modified time | relevance | path

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

/scripts/
Dget_abi.pl98 my $label = "";
143 $label = $content;
146 push @labels, [($content, $label)];
159 $label = "";
256 my ($content, $label) = @{$p};
257 $label = "abi_" . $label . " ";
258 $label =~ tr/A-Z/a-z/;
261 $label =~s/([\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\xff])/_/g;
262 $label =~ s,_+,_,g;
263 $label =~ s,_$,,;
[all …]
Dgcc-goto.sh11 * Not related to asm goto, but used by jump label
Dkallsyms.c339 static void output_label(const char *label) in output_label() argument
341 printf(".globl %s\n", label); in output_label()
343 printf("%s:\n", label); in output_label()
/scripts/dtc/
Dlivetree.c13 void add_label(struct label **labels, char *label) in add_label() argument
15 struct label *new; in add_label()
19 if (streq(new->label, label)) { in add_label()
26 new->label = label; in add_label()
31 void delete_labels(struct label **labels) in delete_labels()
33 struct label *label; in delete_labels() local
35 for_each_label(*labels, label) in delete_labels()
36 label->deleted = 1; in delete_labels()
146 struct label *l; in merge_nodes()
152 add_label(&old_node->labels, l->label); in merge_nodes()
[all …]
Ddtc.h160 struct label { struct
162 char *label; argument
163 struct label *next; argument
177 struct label *labels;
196 struct label *labels;
224 void add_label(struct label **labels, char *label);
225 void delete_labels(struct label **labels);
257 struct property *get_property_by_label(struct node *tree, const char *label,
259 struct marker *get_marker_label(struct node *tree, const char *label,
263 struct node *get_node_by_label(struct node *tree, const char *label);
[all …]
Dflattree.c40 void (*beginnode)(void *, struct label *labels);
41 void (*endnode)(void *, struct label *labels);
42 void (*property)(void *, struct label *labels);
77 static void bin_emit_beginnode(void *e, struct label *labels) in bin_emit_beginnode()
82 static void bin_emit_endnode(void *e, struct label *labels) in bin_emit_endnode()
87 static void bin_emit_property(void *e, struct label *labels) in bin_emit_property()
102 static void emit_label(FILE *f, const char *prefix, const char *label) in emit_label() argument
104 fprintf(f, "\t.globl\t%s_%s\n", prefix, label); in emit_label()
105 fprintf(f, "%s_%s:\n", prefix, label); in emit_label()
106 fprintf(f, "_%s_%s:\n", prefix, label); in emit_label()
[all …]
Dtreesource.c285 struct label *l; in write_tree_source_node()
290 fprintf(f, "%s: ", l->label); in write_tree_source_node()
308 fprintf(f, "%s: ", l->label); in write_tree_source_node()
335 struct label *l; in dt_to_source()
338 fprintf(f, "%s: ", l->label); in dt_to_source()
Ddtx_diff353 diff ${diff_flags} ${diff_color} --label "${dtx_file_1}" --label "${dtx_file_2}" \
Dchecks.c415 const char *label, struct node *node, in check_duplicate_label() argument
423 othernode = get_node_by_label(dt, label); in check_duplicate_label()
426 otherprop = get_property_by_label(dt, label, &othernode); in check_duplicate_label()
428 othermark = get_marker_label(dt, label, &othernode, in check_duplicate_label()
437 label, DESCLABEL_ARGS(node, prop, mark), in check_duplicate_label()
444 struct label *l; in check_duplicate_label_node()
448 check_duplicate_label(c, dti, l->label, node, NULL, NULL); in check_duplicate_label_node()
454 check_duplicate_label(c, dti, l->label, node, prop, NULL); in check_duplicate_label_node()
/scripts/coccinelle/misc/
Dsemicolon.cocci51 identifier label;
54 label:;
/scripts/dtc/libfdt/
Dfdt_overlay.c372 int poffset, const char *label) in overlay_fixup_one_phandle() argument
383 symbol_path = fdt_getprop(fdt, symbols_off, label, in overlay_fixup_one_phandle()
432 const char *label; in overlay_fixup_phandle() local
436 &label, &len); in overlay_fixup_phandle()
485 poffset, label); in overlay_fixup_phandle()
/scripts/kconfig/lxdialog/
Dutil.c434 void print_button(WINDOW * win, const char *label, int y, int x, int selected) in print_button() argument
442 temp = strspn(label, " "); in print_button()
443 label += temp; in print_button()
450 waddch(win, label[0]); in print_button()
453 waddstr(win, (char *)label + 1); in print_button()
Ddialog.h205 void print_button(WINDOW * win, const char *label, int y, int x, int selected);
/scripts/coccinelle/iterators/
Duse_after_iter.cocci7 //#reported reference is at the label of this goto. Some flag tests
/scripts/kconfig/
Dgconf.c418 GtkWidget *dialog, *label; in on_window1_delete_event() local
438 label = gtk_label_new("\nSave configuration ?\n"); in on_window1_delete_event()
439 gtk_container_add(GTK_CONTAINER(GTK_DIALOG(dialog)->vbox), label); in on_window1_delete_event()
440 gtk_widget_show(label); in on_window1_delete_event()