/scripts/ |
A D | setlocalversion | 36 tag="$1" 39 if [ "$(git cat-file -t "$tag" 2> /dev/null)" != tag ]; then 45 set -- $(git rev-list --count --left-right "$tag"...HEAD 2> /dev/null) 62 local tag
|
A D | asn1_compiler.c | 1229 e->tag); in dump_element() 1239 tag, in dump_element() 1446 (tag && tag->flags & ELEMENT_SKIPPABLE)) in render_element() 1503 if (!tag || !(tag->flags & ELEMENT_TAG_SPECIFIED)) in render_element() 1504 tag = e; in render_element() 1507 tag->tag != 14 && in render_element() 1508 tag->tag != 15 && in render_element() 1509 tag->tag != 31) in render_element() 1513 asn1_universal_tags[tag->tag]); in render_element() 1518 tag->tag); in render_element() [all …]
|
/scripts/genksyms/ |
A D | genksyms.c | 348 newnode->tag = SYM_NORMAL; in mk_node() 377 newnode->tag = node->tag; in copy_node() 401 if (a->tag != b->tag || strcmp(a->string, b->string)) in equal_list() 417 .tag = SYM_NORMAL }; in read_node() 449 node.tag = n; in read_node() 469 if (sym && sym->tag == SYM_NORMAL && in read_reference() 498 if (symbol_types[list->tag].n) { in print_node() 499 putc(symbol_types[list->tag].n, f); in print_node() 561 switch (cur->tag) { in expand_and_crc_sym() 596 (symbol_types[cur->tag].name), in expand_and_crc_sym() [all …]
|
A D | parse.y | 53 (*ident)->tag = type; in record_compound() 57 r = copy_node(i); r->tag = type; in record_compound() 240 { remove_node($1); (*$3)->tag = SYM_STRUCT; $$ = $3; } 242 { remove_node($1); (*$3)->tag = SYM_UNION; $$ = $3; } 244 { remove_node($1); (*$2)->tag = SYM_ENUM; $$ = $2; } 276 | TYPE { (*$1)->tag = SYM_TYPEDEF; $$ = $1; }
|
A D | genksyms.h | 31 enum symbol_type tag; member
|
A D | lex.l | 106 cur_node->tag = \
|
/scripts/dtc/libfdt/ |
A D | fdt.c | 165 uint32_t tag, len, sum; in fdt_next_tag() local 173 tag = fdt32_to_cpu(*tagp); in fdt_next_tag() 177 switch (tag) { in fdt_next_tag() 220 return tag; in fdt_next_tag() 250 uint32_t tag; in fdt_next_node() local 258 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_next_node() 260 switch (tag) { in fdt_next_node() 282 } while (tag != FDT_BEGIN_NODE); in fdt_next_node()
|
A D | fdt.h | 37 fdt32_t tag; member 42 fdt32_t tag; member
|
A D | fdt_rw.c | 229 (*prop)->tag = cpu_to_fdt32(FDT_PROP); in fdt_add_property_() 340 uint32_t tag; in fdt_add_subnode_namelen() local 352 tag = fdt_next_tag(fdt, parentoffset, &nextoffset); in fdt_add_subnode_namelen() 354 if (!can_assume(LIBFDT_FLAWLESS) && (tag != FDT_BEGIN_NODE)) in fdt_add_subnode_namelen() 358 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_add_subnode_namelen() 359 } while ((tag == FDT_PROP) || (tag == FDT_NOP)); in fdt_add_subnode_namelen() 368 nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE); in fdt_add_subnode_namelen()
|
A D | fdt_sw.c | 231 nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE); in fdt_begin_node() 318 prop->tag = cpu_to_fdt32(FDT_PROP); in fdt_property_placeholder() 342 uint32_t tag; in fdt_finish() local 361 while ((tag = fdt_next_tag(fdt, offset, &nextoffset)) != FDT_END) { in fdt_finish() 362 if (tag == FDT_PROP) { in fdt_finish()
|
A D | fdt_ro.c | 203 uint32_t tag; in nextprop_() local 207 tag = fdt_next_tag(fdt, offset, &nextoffset); in nextprop_() 209 switch (tag) { in nextprop_() 220 } while (tag == FDT_NOP); in nextprop_()
|
/scripts/lib/abi/ |
A D | abi_parser.py | 111 if fdata.tag == "description": 115 elif fdata.tag != "": 130 if fdata.tag == "what": 170 fdata.tag = new_tag 180 if fdata.tag and new_tag: 181 fdata.tag = new_tag 223 if fdata.tag == "description": 244 if fdata.tag == "what": 253 if fdata.tag: 254 if fdata.tag == "what": [all …]
|
/scripts/gendwarfksyms/ |
A D | kabi.c | 132 const char *tag; in kabi_read_rules() member 136 .tag = KABI_RULE_TAG_DECLONLY, in kabi_read_rules() 140 .tag = KABI_RULE_TAG_ENUMERATOR_IGNORE, in kabi_read_rules() 144 .tag = KABI_RULE_TAG_ENUMERATOR_VALUE, in kabi_read_rules() 148 .tag = KABI_RULE_TAG_BYTE_SIZE, in kabi_read_rules() 152 .tag = KABI_RULE_TAG_TYPE_STRING, in kabi_read_rules() 222 if (!strcmp(field, rule_types[i].tag)) { in kabi_read_rules()
|
A D | dwarf.c | 856 return tag == DW_TAG_class_type || tag == DW_TAG_structure_type || in is_expanded_type() 857 tag == DW_TAG_union_type || tag == DW_TAG_enumeration_type; in is_expanded_type() 870 int tag = dwarf_tag(die); in process_type() local 909 switch (tag) { in process_type() 945 die->addr, tag); in process_type() 948 cache->tag = tag; in process_type() 1043 int tag = dwarf_tag(die); in process_exported_symbols() local 1045 switch (tag) { in process_exported_symbols() 1111 int tag; in resolve_fqns() local 1116 tag = dwarf_tag(die); in resolve_fqns() [all …]
|
A D | types.c | 276 static char get_type_prefix(int tag) in get_type_prefix() argument 278 switch (tag) { in get_type_prefix() 308 prefix = get_type_prefix(cache->tag); in get_type_name()
|
A D | die.c | 27 cd->tag = -1; in init_die()
|
A D | gendwarfksyms.h | 187 int tag; member
|
/scripts/dtc/ |
A D | yamltree.c | 36 void *tag; in yaml_propval_int() local 40 case 1: tag = "!u8"; break; in yaml_propval_int() 41 case 2: tag = "!u16"; break; in yaml_propval_int() 42 case 4: tag = "!u32"; break; in yaml_propval_int() 43 case 8: tag = "!u64"; break; in yaml_propval_int() 50 (yaml_char_t *)tag, width == 4, YAML_FLOW_SEQUENCE_STYLE); in yaml_propval_int()
|
A D | fdtget.c | 139 uint32_t tag; /* current tag */ in list_subnodes() local 145 tag = fdt_next_tag(blob, node, &nextoffset); in list_subnodes() 146 switch (tag) { in list_subnodes() 174 printf("Unknown tag 0x%08X\n", tag); in list_subnodes()
|
/scripts/kconfig/lxdialog/ |
A D | dialog.h | 99 struct dialog_color tag; member 124 void item_set_tag(char tag); 135 char tag; member 155 int item_is_tag(char tag);
|
A D | util.c | 28 dlg.tag.atr = A_BOLD; in set_mono_theme() 64 DLG_COLOR(tag, COLOR_YELLOW, COLOR_WHITE, true); in set_classic_theme() 99 DLG_COLOR(tag, COLOR_RED, COLOR_BLACK, false); in set_blackbg_theme() 118 DLG_COLOR(tag, COLOR_BLUE, COLOR_WHITE, true); in set_bluetitle_theme() 174 init_one_color(&dlg.tag); in init_dialog_colors() 596 void item_set_tag(char tag) in item_set_tag() argument 598 item_cur->node.tag = tag; in item_set_tag() 625 return item_cur->node.tag; in item_tag() 669 int item_is_tag(char tag) in item_is_tag() argument 671 return (item_cur->node.tag == tag); in item_is_tag()
|
A D | checklist.c | 38 wattrset(win, selected ? dlg.tag_selected.atr : dlg.tag.atr); in print_item()
|
/scripts/coccinelle/misc/ |
A D | add_namespace.cocci | 6 /// add a missing namespace tag to a module source file.
|
/scripts/kconfig/ |
A D | nconf.c | 258 char tag; member 537 static void item_make(struct menu *menu, char tag, const char *fmt, ...) in item_make() argument 545 k_menu_items[items_num].tag = tag; in item_make() 616 return mcur->tag; in item_tag() 637 static int item_is_tag(char tag) in item_is_tag() argument 639 return item_tag() == tag; in item_is_tag()
|
/scripts/mod/ |
A D | modpost.c | 676 static char *get_next_modinfo(struct elf_info *info, const char *tag, in get_next_modinfo() argument 680 unsigned int taglen = strlen(tag); in get_next_modinfo() 690 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=') in get_next_modinfo() 696 static char *get_modinfo(struct elf_info *info, const char *tag) in get_modinfo() argument 699 return get_next_modinfo(info, tag, NULL); in get_modinfo()
|