Searched refs:label (Results 1 - 12 of 12) sorted by relevance

/scripts/
H A Dgcc-goto.sh10 * Not related to asm goto, but used by jump label
H A Dkallsyms.c248 static void output_label(char *label) argument
251 printf(".globl %c%s\n", symbol_prefix_char, label);
253 printf(".globl %s\n", label);
256 printf("%c%s:\n", symbol_prefix_char, label);
258 printf("%s:\n", label);
/scripts/dtc/
H A Ddtc.h128 struct label { struct
129 char *label; member in struct:label
130 struct label *next;
139 struct label *labels;
156 struct label *labels;
168 void add_label(struct label **labels, char *label);
185 struct property *get_property_by_label(struct node *tree, const char *label,
187 struct marker *get_marker_label(struct node *tree, const char *label,
191 struct node *get_node_by_label(struct node *tree, const char *label);
[all...]
H A Dlivetree.c27 void add_label(struct label **labels, char *label) argument
29 struct label *new;
31 /* Make sure the label isn't already there */
33 if (streq(new->label, label))
37 new->label = label;
107 struct label *l;
111 add_label(&old_node->labels, l->label);
286 get_property_by_label(struct node *tree, const char *label, struct node **node) argument
312 get_marker_label(struct node *tree, const char *label, struct node **node, struct property **prop) argument
374 get_node_by_label(struct node *tree, const char *label) argument
[all...]
H A Dflattree.c55 void (*beginnode)(void *, struct label *labels);
56 void (*endnode)(void *, struct label *labels);
57 void (*property)(void *, struct label *labels);
92 static void bin_emit_beginnode(void *e, struct label *labels)
97 static void bin_emit_endnode(void *e, struct label *labels)
102 static void bin_emit_property(void *e, struct label *labels)
117 static void emit_label(FILE *f, const char *prefix, const char *label) argument
119 fprintf(f, "\t.globl\t%s_%s\n", prefix, label);
120 fprintf(f, "%s_%s:\n", prefix, label);
121 fprintf(f, "_%s_%s:\n", prefix, label);
124 emit_offset_label(FILE *f, const char *label, int offset) argument
[all...]
H A Dtreesource.c238 struct label *l;
242 fprintf(f, "%s: ", l->label);
251 fprintf(f, "%s: ", l->label);
271 struct label *l;
274 fprintf(f, "%s: ", l->label);
H A Dchecks.c289 const char *label, struct node *node,
296 othernode = get_node_by_label(dt, label);
299 otherprop = get_property_by_label(dt, label, &othernode);
301 othermark = get_marker_label(dt, label, &othernode,
308 FAIL(c, "Duplicate label '%s' on " DESCLABEL_FMT
310 label, DESCLABEL_ARGS(node, prop, mark),
317 struct label *l;
320 check_duplicate_label(c, dt, l->label, node, NULL, NULL);
326 struct label *l;
329 check_duplicate_label(c, dt, l->label, nod
288 check_duplicate_label(struct check *c, struct node *dt, const char *label, struct node *node, struct property *prop, struct marker *mark) argument
[all...]
H A Ddtc-parser.tab.c_shipped1472 print_error("label or path, '%s', not found", (yyvsp[(2) - (3)].labelref));
1807 YYERROR and the label yyerrorlab therefore never appears in user
/scripts/kconfig/lxdialog/
H A Dutil.c391 void print_button(WINDOW * win, const char *label, int y, int x, int selected) argument
399 temp = strspn(label, " ");
400 label += temp;
407 waddch(win, label[0]);
410 waddstr(win, (char *)label + 1);
H A Ddialog.h202 void print_button(WINDOW * win, const char *label, int y, int x, int selected);
/scripts/kconfig/
H A Dqconf.h103 void addColumn(colIdx idx, const QString& label) argument
105 colMap[idx] = Parent::addColumn(label);
H A Dgconf.c443 GtkWidget *dialog, *label; local
463 label = gtk_label_new(_("\nSave configuration ?\n"));
464 gtk_container_add(GTK_CONTAINER(GTK_DIALOG(dialog)->vbox), label);
465 gtk_widget_show(label);

Completed in 253 milliseconds