/lk-master/external/platform/nrfx/doc/ |
A D | nrfx.doxyfile | 2138 # The TAGFILES tag can be used to specify one or more tag files. For each tag 2238 # This tag requires that the tag HAVE_DOT is set to YES. 2248 # This tag requires that the tag HAVE_DOT is set to YES. 2255 # This tag requires that the tag HAVE_DOT is set to YES. 2262 # This tag requires that the tag HAVE_DOT is set to YES. 2270 # This tag requires that the tag HAVE_DOT is set to YES. 2279 # This tag requires that the tag HAVE_DOT is set to YES. 2286 # This tag requires that the tag HAVE_DOT is set to YES. 2294 # This tag requires that the tag HAVE_DOT is set to YES. 2307 # This tag requires that the tag HAVE_DOT is set to YES. [all …]
|
/lk-master/external/platform/pico/common/pico_binary_info/include/pico/binary_info/ |
A D | code.h | 51 .tag = _tag, \ 61 .tag = _tag, \ 71 .tag = _tag, \ 84 .tag = BINARY_INFO_TAG_RASPBERRY_PI, \ 93 .tag = BINARY_INFO_TAG_RASPBERRY_PI, \ 103 .tag = _parent_tag, \ 121 … bi_program_feature_group(tag, id, name) __bi_named_group(BINARY_INFO_TAG_RASPBERRY_PI, BINARY_INF… argument 122 …ature_group_with_flags(tag, id, name, flags) __bi_named_group(BINARY_INFO_TAG_RASPBERRY_PI, BINARY… argument
|
A D | structure.h | 65 uint16_t tag; member
|
/lk-master/platform/lpc43xx/ |
A D | udc-common.c | 26 desc->tag = (type << 8) | num; in udc_descriptor_alloc() 35 .tag = 0x0300, 43 udc_descriptor_t *udc_descriptor_find(unsigned tag) { in udc_descriptor_find() argument 46 if (desc->tag == tag) { in udc_descriptor_find() 51 printf("cant find %08x\n", tag); in udc_descriptor_find() 85 return desc->tag & 0xff; in udc_string_desc_alloc()
|
A D | udc-common.h | 58 uint16_t tag; /* ((TYPE << 8) | NUM) */ member 67 udc_descriptor_t *udc_descriptor_find(unsigned tag);
|
/lk-master/external/lib/fdt/ |
A D | fdt.c | 156 uint32_t tag; in fdt_next_tag() local 164 tag = fdt32_to_cpu(*tagp); in fdt_next_tag() 168 switch (tag) { in fdt_next_tag() 204 return tag; in fdt_next_tag() 230 uint32_t tag; in fdt_next_node() local 238 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_next_node() 240 switch (tag) { in fdt_next_node() 262 } while (tag != FDT_BEGIN_NODE); in fdt_next_node()
|
A D | fdt_check.c | 18 uint32_t tag; in fdt_check_full() local 37 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_check_full() 42 switch (tag) { in fdt_check_full()
|
A D | fdt_sw.c | 228 nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE); in fdt_begin_node() 315 prop->tag = cpu_to_fdt32(FDT_PROP); in fdt_property_placeholder() 339 uint32_t tag; in fdt_finish() local 358 while ((tag = fdt_next_tag(fdt, offset, &nextoffset)) != FDT_END) { in fdt_finish() 359 if (tag == FDT_PROP) { in fdt_finish()
|
A D | fdt_rw.c | 228 (*prop)->tag = cpu_to_fdt32(FDT_PROP); in fdt_add_property_() 339 uint32_t tag; in fdt_add_subnode_namelen() local 354 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_add_subnode_namelen() 355 } while ((tag == FDT_PROP) || (tag == FDT_NOP)); in fdt_add_subnode_namelen() 364 nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE); in fdt_add_subnode_namelen()
|
A D | fdt_ro.c | 201 uint32_t tag; in nextprop_() local 205 tag = fdt_next_tag(fdt, offset, &nextoffset); in nextprop_() 207 switch (tag) { in nextprop_() 218 } while (tag == FDT_NOP); in nextprop_()
|
/lk-master/external/lib/fdt/include/ |
A D | fdt.h | 37 fdt32_t tag; member 42 fdt32_t tag; member
|
/lk-master/.github/workflows/ |
A D | notify-irc.yml | 29 - name: irc tag created 31 if: github.event_name == 'create' && github.event.ref_type == 'tag'
|
/lk-master/lib/bootargs/ |
A D | bootargs.c | 170 static struct lk_boot_arg *find_tag(uint32_t tag) { in find_tag() argument 177 if (arg->type == tag) in find_tag()
|
/lk-master/platform/bcm28xx/include/platform/ |
A D | mailbox.h | 77 uint32_t _get_vcore_single(uint32_t tag, uint32_t req_len, uint8_t *rsp, uint32_t rsp_len);
|
/lk-master/external/lib/lwip/include/netif/ |
A D | ppp_oe.h | 99 PACK_STRUCT_FIELD(u16_t tag);
|
/lk-master/external/lib/lwip/netif/ppp/ |
A D | ppp_oe.c | 287 u16_t tag, len; in pppoe_dispatch_disc_pkt() local 343 tag = 0; in pppoe_dispatch_disc_pkt() 348 tag = ntohs(pt.tag); in pppoe_dispatch_disc_pkt() 351 printf("pppoe: tag 0x%x len 0x%x is too long\n", tag, len); in pppoe_dispatch_disc_pkt() 354 switch (tag) { in pppoe_dispatch_disc_pkt()
|
/lk-master/lib/heap/cmpctmalloc/ |
A D | cmpctmalloc.c | 286 int tag = (uintptr_t)right->left & 1; in FixLeftPointer() local 287 right->left = (header_t *)(((uintptr_t)new_left & ~1) | tag); in FixLeftPointer()
|