/scripts/dtc/ |
D | treesource.c | 66 struct marker *m = val.markers; in write_propval_string() local 70 while (m && (m->offset == 0)) { in write_propval_string() 71 if (m->type == LABEL) in write_propval_string() 72 fprintf(f, "%s: ", m->ref); in write_propval_string() 73 m = m->next; in write_propval_string() 110 while (m && (m->offset < i)) { in write_propval_string() 111 if (m->type == LABEL) { in write_propval_string() 112 assert(m->offset == (i+1)); in write_propval_string() 113 fprintf(f, "%s: ", m->ref); in write_propval_string() 115 m = m->next; in write_propval_string() [all …]
|
D | data.c | 25 struct marker *m, *nm; in data_free() local 27 m = d.markers; in data_free() 28 while (m) { in data_free() 29 nm = m->next; in data_free() 30 free(m->ref); in data_free() 31 free(m); in data_free() 32 m = nm; in data_free() 205 struct data data_insert_at_marker(struct data d, struct marker *m, in data_insert_at_marker() argument 209 memmove(d.val + m->offset + len, d.val + m->offset, d.len - m->offset); in data_insert_at_marker() 210 memcpy(d.val + m->offset, p, len); in data_insert_at_marker() [all …]
|
D | checks.c | 325 struct marker *m = prop->val.markers; in check_duplicate_label_prop() local 331 for_each_marker_of_type(m, LABEL) in check_duplicate_label_prop() 332 check_duplicate_label(c, dt, m->ref, node, prop, m); in check_duplicate_label_prop() 340 struct marker *m; in check_explicit_phandles() local 354 m = prop->val.markers; in check_explicit_phandles() 355 for_each_marker_of_type(m, REF_PHANDLE) { in check_explicit_phandles() 356 assert(m->offset == 0); in check_explicit_phandles() 357 if (node != get_node_by_ref(root, m->ref)) in check_explicit_phandles() 433 struct marker *m = prop->val.markers; in fixup_phandle_references() local 437 for_each_marker_of_type(m, REF_PHANDLE) { in fixup_phandle_references() [all …]
|
D | dtc.h | 93 #define for_each_marker(m) \ argument 94 for (; (m); (m) = (m)->next) 95 #define for_each_marker_of_type(m, t) \ argument 96 for_each_marker(m) \ 97 if ((m)->type == (t)) 108 struct data data_insert_at_marker(struct data d, struct marker *m,
|
D | livetree.c | 315 struct marker *m; in get_marker_label() local 323 m = p->val.markers; in get_marker_label() 324 for_each_marker_of_type(m, LABEL) in get_marker_label() 325 if (streq(m->ref, label)) in get_marker_label() 326 return m; in get_marker_label() 330 m = get_marker_label(c, label, node, prop); in get_marker_label() 331 if (m) in get_marker_label() 332 return m; in get_marker_label()
|
D | flattree.c | 176 struct marker *m = d.markers; in asm_emit_data() local 178 for_each_marker_of_type(m, LABEL) in asm_emit_data() 179 emit_offset_label(f, m->ref, m->offset); in asm_emit_data()
|
/scripts/basic/ |
D | fixdep.c | 214 static void use_config(const char *m, int slen) in use_config() argument 216 unsigned int hash = strhash(m, slen); in use_config() 219 if (is_defined_config(m, slen, hash)) in use_config() 222 define_config(m, slen, hash); in use_config() 226 c = m[i]; in use_config() 240 const int *m = (const int *) map + 1; in parse_config_file() local 243 for (; m < end; m++) { in parse_config_file() 244 if (*m == INT_CONF) { p = (char *) m ; goto conf; } in parse_config_file() 245 if (*m == INT_ONFI) { p = (char *) m-1; goto conf; } in parse_config_file() 246 if (*m == INT_NFIG) { p = (char *) m-2; goto conf; } in parse_config_file() [all …]
|
/scripts/ |
D | Makefile.host | 37 host-csingle := $(foreach m,$(__hostprogs),$(if $($(m)-objs),,$(m))) 40 host-cmulti := $(foreach m,$(__hostprogs),\ 41 $(if $($(m)-cxxobjs),,$(if $($(m)-objs),$(m)))) 44 host-cobjs := $(sort $(foreach m,$(__hostprogs),$($(m)-objs))) 49 host-cxxmulti := $(foreach m,$(__hostprogs),$(if $($(m)-cxxobjs),$(m))) 52 host-cxxobjs := $(sort $(foreach m,$(host-cxxmulti),$($(m)-cxxobjs))) 61 host-cshobjs := $(sort $(foreach m,$(host-cshlib),$($(m:.so=-objs)))) 68 $(foreach m,$($(f)-objs), \ 69 $(if $(dir $(m)),$(dir $(m))))) 72 $(foreach m,$($(f)-cxxobjs), \ [all …]
|
D | Makefile.lib | 50 multi-used-y := $(sort $(foreach m,$(obj-y), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))), $(m)))) 51 multi-used-m := $(sort $(foreach m,$(obj-m), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))), $(m)))) 57 multi-objs-y := $(foreach m, $(multi-used-y), $($(m:.o=-objs)) $($(m:.o=-y))) 58 multi-objs-m := $(foreach m, $(multi-used-m), $($(m:.o=-objs)) $($(m:.o=-y))) 69 …y := $(foreach m, $(filter-out $(subdir-obj-y), $(obj-y)), $(if $(strip $($(m:.o=-objs)) $($(m:.o=… 70 real-objs-m := $(foreach m, $(obj-m), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))),$($(m:.o=-objs))… 160 modname-multi = $(sort $(foreach m,$(multi-used),\ 161 $(if $(filter $(subst $(obj)/,,$*.o), $($(m:.o=-objs)) $($(m:.o=-y))),$(m:.o=))))
|
D | Makefile.modbuiltin | 42 $(Q)(for m in $(modbuiltin-mods); do echo kernel/$$m; done; \
|
D | Makefile.build | 386 $(foreach m, $(modorder), \ 387 $(if $(filter %/modules.order, $m), \ 388 cat $m;, echo kernel/$m;))
|
D | config | 17 --state|-s option Print state of option (n,y,m,undef)
|
/scripts/kconfig/ |
D | kxgettext.c | 122 struct message *m = message__list; in mesage__find() local 124 while (m != NULL) { in mesage__find() 125 if (strcmp(m->msg, msg) == 0) in mesage__find() 127 m = m->next; in mesage__find() 130 return m; in mesage__find() 155 struct message *m = mesage__find(escaped); in message__add() local 157 if (m != NULL) in message__add() 158 rc = message__add_file_line(m, file, lineno); in message__add() 160 m = message__new(escaped, option, file, lineno); in message__add() 162 if (m != NULL) { in message__add() [all …]
|
D | qconf.h | 146 ConfigItem(Q3ListView *parent, ConfigItem *after, struct menu *m, bool v) in ConfigItem() argument 147 : Parent(parent, after), menu(m), visible(v), goParent(false) in ConfigItem() 151 ConfigItem(ConfigItem *parent, ConfigItem *after, struct menu *m, bool v) in ConfigItem() argument 152 : Parent(parent, after), menu(m), visible(v), goParent(false) in ConfigItem()
|
D | zconf.hash.c_shipped | 22 && ('k' == 107) && ('l' == 108) && ('m' == 109) && ('n' == 110) \
|
D | qconf.cc | 982 void ConfigInfoView::setInfo(struct menu *m) in setInfo() argument 984 if (_menu == m) in setInfo() 986 _menu = m; in setInfo()
|
/scripts/tracing/ |
D | draw_functrace.py | 106 m = re.match("[^]]+?\\] +([0-9.]+): (\\w+) <-(\\w+)", line) 107 if m is None: 109 return (m.group(1), m.group(2), m.group(3))
|
/scripts/mod/ |
D | modpost.c | 1779 static void check_for_gpl_usage(enum export exp, const char *m, const char *s) in check_for_gpl_usage() argument 1781 const char *e = is_vmlinux(m) ?"":".ko"; in check_for_gpl_usage() 1786 "uses GPL-only symbol '%s'\n", m, e, s); in check_for_gpl_usage() 1790 "uses GPL-only symbol marked UNUSED '%s'\n", m, e, s); in check_for_gpl_usage() 1794 "uses future GPL-only symbol '%s'\n", m, e, s); in check_for_gpl_usage() 1804 static void check_for_unused(enum export exp, const char *m, const char *s) in check_for_unused() argument 1806 const char *e = is_vmlinux(m) ?"":".ko"; in check_for_unused() 1812 "uses symbol '%s' marked UNUSED\n", m, e, s); in check_for_unused() 1934 struct module *m; in add_depends() local 1937 for (m = modules; m; m = m->next) in add_depends() [all …]
|
/scripts/genksyms/ |
D | keywords.hash.c_shipped | 22 && ('k' == 107) && ('l' == 108) && ('m' == 109) && ('n' == 110) \
|