/netbsd-src/sys/dev/ |
H A D | dev_verbose.h | 37 #define DEV_VERBOSE_COMMON_DEFINE(tag) \ argument 39 tag ## _findvendor_real(char *buf, size_t len, uint32_t vendor) \ 41 return dev_findvendor(buf, len, tag ## _words, \ 42 __arraycount(tag ## _words), tag ## _vendors, \ 43 __arraycount(tag ## _vendors), vendor, tag ## _id1_format); \ 47 tag ## _findproduct_real(char *buf, size_t len, uint32_t vendor, \ 50 return dev_findproduct(buf, len, tag ## _words, \ 51 __arraycount(tag ## _words), tag ## _products, \ 52 __arraycount(tag ## _products), vendor, product, \ 53 tag ## _id2_format); \ [all …]
|
/netbsd-src/usr.sbin/btconfig/ |
H A D | btconfig.c | 64 static void tag(const char *); 254 tag(NULL); in main() 363 tag(const char *f) in tag() function 629 tag(btr.btr_name); in print_info() 693 if (val & HCI_INQUIRY_SCAN_ENABLE) tag("iscan"); in print_info() 694 else if (level > 0) tag("-iscan"); in print_info() 696 if (val & HCI_PAGE_SCAN_ENABLE) tag("pscan"); in print_info() 697 else if (level > 0) tag("-pscan"); in print_info() 700 if (val) tag("auth"); in print_info() 701 else if (level > 0) tag("-auth"); in print_info() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
H A D | ARMAttributeParser.cpp | 67 Error ARMAttributeParser::stringAttribute(AttrType tag) { in stringAttribute() argument 69 ELFAttrs::attrTypeAsString(tag, tagToStringMap, /*TagPrefix=*/false); in stringAttribute() 74 sw->printNumber("Tag", tag); in stringAttribute() 82 Error ARMAttributeParser::CPU_arch(AttrType tag) { in CPU_arch() argument 90 return parseStringAttribute("CPU_arch", tag, makeArrayRef(strings)); in CPU_arch() 93 Error ARMAttributeParser::CPU_arch_profile(AttrType tag) { in CPU_arch_profile() argument 106 printAttribute(tag, value, profile); in CPU_arch_profile() 110 Error ARMAttributeParser::ARM_ISA_use(AttrType tag) { in ARM_ISA_use() argument 112 return parseStringAttribute("ARM_ISA_use", tag, makeArrayRef(strings)); in ARM_ISA_use() 115 Error ARMAttributeParser::THUMB_ISA_use(AttrType tag) { in THUMB_ISA_use() argument [all …]
|
/netbsd-src/external/mit/libcbor/dist/test/ |
H A D | type_6_test.c | 17 cbor_item_t *tag; variable 24 tag = cbor_load(embedded_tag_data, 2, &res); in test_embedded_tag() 25 assert_true(cbor_typeof(tag) == CBOR_TYPE_TAG); in test_embedded_tag() 26 assert_true(cbor_tag_value(tag) == 0); in test_embedded_tag() 27 assert_uint8(cbor_tag_item(tag), 0); in test_embedded_tag() 28 cbor_decref(&tag); in test_embedded_tag() 29 assert_null(tag); in test_embedded_tag() 36 tag = cbor_load(int8_tag_data, 3, &res); in test_int8_tag() 37 assert_true(cbor_typeof(tag) == CBOR_TYPE_TAG); in test_int8_tag() 38 assert_true(cbor_tag_value(tag) == 255); in test_int8_tag() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
H A D | ARMAttributeParser.h | 30 Error handler(uint64_t tag, bool &handled) override; 32 Error stringAttribute(ARMBuildAttrs::AttrType tag); 34 Error CPU_arch(ARMBuildAttrs::AttrType tag); 35 Error CPU_arch_profile(ARMBuildAttrs::AttrType tag); 36 Error ARM_ISA_use(ARMBuildAttrs::AttrType tag); 37 Error THUMB_ISA_use(ARMBuildAttrs::AttrType tag); 38 Error FP_arch(ARMBuildAttrs::AttrType tag); 39 Error WMMX_arch(ARMBuildAttrs::AttrType tag); 40 Error Advanced_SIMD_arch(ARMBuildAttrs::AttrType tag); 41 Error MVE_arch(ARMBuildAttrs::AttrType tag); [all …]
|
/netbsd-src/sys/dev/sdmmc/ |
H A D | sdmmcchip.h | 71 #define sdmmc_chip_host_reset(tag, handle) \ argument 72 ((tag)->host_reset((handle))) 74 #define sdmmc_chip_host_ocr(tag, handle) \ argument 75 ((tag)->host_ocr((handle))) 76 #define sdmmc_chip_host_maxblklen(tag, handle) \ argument 77 ((tag)->host_maxblklen((handle))) 79 #define sdmmc_chip_card_detect(tag, handle) \ argument 80 ((tag)->card_detect((handle))) 82 #define sdmmc_chip_write_protect(tag, handle) \ argument 83 ((tag)->write_protect((handle))) [all …]
|
/netbsd-src/sys/dev/i2c/ |
H A D | i2c_exec.c | 71 iic_tag_init(i2c_tag_t tag) in iic_tag_init() argument 74 memset(tag, 0, sizeof(*tag)); in iic_tag_init() 75 mutex_init(&tag->ic_bus_lock, MUTEX_DEFAULT, IPL_NONE); in iic_tag_init() 84 iic_tag_fini(i2c_tag_t tag) in iic_tag_fini() argument 87 mutex_destroy(&tag->ic_bus_lock); in iic_tag_fini() 96 iic_acquire_bus(i2c_tag_t tag, int flags) in iic_acquire_bus() argument 118 if (mutex_tryenter(&tag->ic_bus_lock) == 0) { in iic_acquire_bus() 134 mutex_enter(&tag->ic_bus_lock); in iic_acquire_bus() 138 if (tag->ic_acquire_bus) { in iic_acquire_bus() 139 error = (*tag->ic_acquire_bus)(tag->ic_cookie, flags); in iic_acquire_bus() [all …]
|
/netbsd-src/sys/dev/ic/ |
H A D | i128.c | 45 i128_init(bus_space_tag_t tag, bus_space_handle_t regh, int stride, int depth) in i128_init() argument 50 bus_space_write_4(tag, regh, BUF_CTRL, BC_PSIZ_8B); in i128_init() 53 bus_space_write_4(tag, regh, BUF_CTRL, BC_PSIZ_16B); in i128_init() 56 bus_space_write_4(tag, regh, BUF_CTRL, BC_PSIZ_32B); in i128_init() 64 bus_space_write_4(tag, regh, DE_PGE, 0); in i128_init() 65 bus_space_write_4(tag, regh, DE_SORG, 0); in i128_init() 66 bus_space_write_4(tag, regh, DE_DORG, 0); in i128_init() 67 bus_space_write_4(tag, regh, DE_MSRC, 0); in i128_init() 68 bus_space_write_4(tag, regh, DE_WKEY, 0); in i128_init() 69 bus_space_write_4(tag, regh, DE_SPTCH, stride); in i128_init() [all …]
|
/netbsd-src/sys/arch/netwinder/pci/ |
H A D | pci_machdep.c | 19 pcitag_t tag; in netwinder_pci_attach_hook() local 24 tag = pci_make_tag(pba->pba_pc, pba->pba_bus, 9, 0); in netwinder_pci_attach_hook() 25 pci_conf_write(pba->pba_pc, tag, in netwinder_pci_attach_hook() 30 intreg = pci_conf_read(pba->pba_pc, tag, PCI_INTERRUPT_REG); in netwinder_pci_attach_hook() 36 pci_conf_write(pba->pba_pc, tag, PCI_INTERRUPT_REG, intreg); in netwinder_pci_attach_hook() 37 pci_conf_write(pba->pba_pc, tag, 0x10, 0x400 | PCI_MAPREG_TYPE_IO); in netwinder_pci_attach_hook() 38 pci_conf_write(pba->pba_pc, tag, 0x14, 0x00800000); in netwinder_pci_attach_hook() 43 tag = pci_make_tag(pba->pba_pc, pba->pba_bus, 12, 0); in netwinder_pci_attach_hook() 44 pci_conf_write(pba->pba_pc, tag, in netwinder_pci_attach_hook() 48 intreg = pci_conf_read(pba->pba_pc, tag, PCI_INTERRUPT_REG); in netwinder_pci_attach_hook() [all …]
|
/netbsd-src/sys/arch/arc/include/ |
H A D | bus_funcs.h | 233 #define bus_space_read_stream_2(tag, bsh, offset) \ argument 234 bus_space_read_2(tag, bsh, offset) 235 #define bus_space_read_stream_4(tag, bsh, offset) \ argument 236 bus_space_read_4(tag, bsh, offset) 237 #define bus_space_read_stream_8(tag, bsh, offset) \ argument 238 bus_space_read_8(tag, bsh, offset) 239 #define bus_space_read_multi_stream_2(tag, bsh, offset, datap, count) \ argument 240 bus_space_read_multi_2(tag, bsh, offset, datap, count) 241 #define bus_space_read_multi_stream_4(tag, bsh, offset, datap, count) \ argument 242 bus_space_read_multi_4(tag, bsh, offset, datap, count) [all …]
|
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/ |
H A D | der_writer.c | 16 static int int_start_context(WPACKET *pkt, int tag) in int_start_context() argument 18 if (tag < 0) in int_start_context() 20 if (!ossl_assert(tag <= 30)) in int_start_context() 25 static int int_end_context(WPACKET *pkt, int tag) in int_end_context() argument 37 if (tag < 0) in int_end_context() 39 if (!ossl_assert(tag <= 30)) in int_end_context() 43 tag |= DER_F_CONSTRUCTED | DER_C_CONTEXT; in int_end_context() 48 && (size1 == size2 || WPACKET_put_bytes_u8(pkt, tag)); in int_end_context() 51 int ossl_DER_w_precompiled(WPACKET *pkt, int tag, in ossl_DER_w_precompiled() argument 55 return int_start_context(pkt, tag) in ossl_DER_w_precompiled() [all …]
|
/netbsd-src/external/gpl3/binutils.old/dist/bfd/ |
H A D | elf-attrs.c | 59 obj_attr_size (unsigned int tag, obj_attribute *attr) in obj_attr_size() argument 66 size = uleb128_size (tag); in obj_attr_size() 106 size += obj_attr_size (list->tag, &list->attr); in vendor_obj_attr_size() 148 write_obj_attribute (bfd_byte *p, unsigned int tag, obj_attribute *attr) in write_obj_attribute() argument 154 p = write_uleb128 (p, tag); in write_obj_attribute() 194 unsigned int tag = i; in vendor_set_obj_attr_contents() local 196 tag = get_elf_backend_data (abfd)->obj_attrs_order (i); in vendor_set_obj_attr_contents() 197 p = write_obj_attribute (p, tag, &attr[tag]); in vendor_set_obj_attr_contents() 203 p = write_obj_attribute (p, list->tag, &list->attr); in vendor_set_obj_attr_contents() 232 elf_new_obj_attr (bfd *abfd, int vendor, unsigned int tag) in elf_new_obj_attr() argument [all …]
|
/netbsd-src/external/gpl3/binutils/dist/bfd/ |
H A D | elf-attrs.c | 59 obj_attr_size (unsigned int tag, obj_attribute *attr) in obj_attr_size() argument 66 size = uleb128_size (tag); in obj_attr_size() 106 size += obj_attr_size (list->tag, &list->attr); in vendor_obj_attr_size() 148 write_obj_attribute (bfd_byte *p, unsigned int tag, obj_attribute *attr) in write_obj_attribute() argument 154 p = write_uleb128 (p, tag); in write_obj_attribute() 194 unsigned int tag = i; in vendor_set_obj_attr_contents() local 196 tag = get_elf_backend_data (abfd)->obj_attrs_order (i); in vendor_set_obj_attr_contents() 197 p = write_obj_attribute (p, tag, &attr[tag]); in vendor_set_obj_attr_contents() 203 p = write_obj_attribute (p, list->tag, &list->attr); in vendor_set_obj_attr_contents() 232 elf_new_obj_attr (bfd *abfd, int vendor, unsigned int tag) in elf_new_obj_attr() argument [all …]
|
/netbsd-src/external/ibm-public/postfix/dist/src/util/ |
H A D | check_arg.h | 93 #define CHECK_VAL(tag, type, v) check_val_##tag##type(v) argument 94 #define CHECK_PTR(tag, type, v) check_ptr_##tag##type(v) argument 95 #define CHECK_CPTR(tag, type, v) check_cptr_##tag##type(v) argument 96 #define CHECK_PPTR(tag, type, v) check_pptr_##tag##type(v) argument 101 #define CHECK_VAL_HELPER_DCL(tag, type) \ argument 102 static inline type check_val_##tag##type(type v) { return v; } 103 #define CHECK_PTR_HELPER_DCL(tag, type) \ argument 104 static inline type *check_ptr_##tag##type(type *v) { return v; } 105 #define CHECK_CPTR_HELPER_DCL(tag, type) \ argument 106 static inline const type *check_cptr_##tag##type(const type *v) \ [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/spu/ |
H A D | spu_mfcio.h | 192 #define mfc_put( ls,ea,size,tag,tid,rid) spu_mfcdma64(ls,mfc_ea2h(ea),mfc_ea2l(ea),size,tag,MFC_CM… argument 193 #define mfc_putf( ls,ea,size,tag,tid,rid) spu_mfcdma64(ls,mfc_ea2h(ea),mfc_ea2l(ea),size,tag,MFC_CM… argument 194 #define mfc_putb( ls,ea,size,tag,tid,rid) spu_mfcdma64(ls,mfc_ea2h(ea),mfc_ea2l(ea),size,tag,MFC_CM… argument 195 #define mfc_get( ls,ea,size,tag,tid,rid) spu_mfcdma64(ls,mfc_ea2h(ea),mfc_ea2l(ea),size,tag,MFC_CM… argument 196 #define mfc_getf( ls,ea,size,tag,tid,rid) spu_mfcdma64(ls,mfc_ea2h(ea),mfc_ea2l(ea),size,tag,MFC_CM… argument 197 #define mfc_getb( ls,ea,size,tag,tid,rid) spu_mfcdma64(ls,mfc_ea2h(ea),mfc_ea2l(ea),size,tag,MFC_CM… argument 200 #define mfc_putl( ls,ea,lsa,size,tag,tid,rid) spu_mfcdma64(ls,mfc_ea2h(ea),(unsigned int)(lsa),siz… argument 201 #define mfc_putlf( ls,ea,lsa,size,tag,tid,rid) spu_mfcdma64(ls,mfc_ea2h(ea),(unsigned int)(lsa),siz… argument 202 #define mfc_putlb( ls,ea,lsa,size,tag,tid,rid) spu_mfcdma64(ls,mfc_ea2h(ea),(unsigned int)(lsa),siz… argument 203 #define mfc_getl( ls,ea,lsa,size,tag,tid,rid) spu_mfcdma64(ls,mfc_ea2h(ea),(unsigned int)(lsa),siz… argument [all …]
|
/netbsd-src/sys/dev/pcmcia/ |
H A D | pcmciachip.h | 98 #define pcmcia_chip_mem_alloc(tag, handle, size, pcmhp) \ argument 99 ((*(tag)->mem_alloc)((handle), (size), (pcmhp))) 101 #define pcmcia_chip_mem_free(tag, handle, pcmhp) \ argument 102 ((*(tag)->mem_free)((handle), (pcmhp))) 104 #define pcmcia_chip_mem_map(tag, handle, kind, card_addr, size, pcmhp, \ argument 106 ((*(tag)->mem_map)((handle), (kind), (card_addr), (size), (pcmhp), \ 109 #define pcmcia_chip_mem_unmap(tag, handle, window) \ argument 110 ((*(tag)->mem_unmap)((handle), (window))) 113 #define pcmcia_chip_io_alloc(tag, handle, start, size, align, pcihp) \ argument 114 ((*(tag)->io_alloc)((handle), (start), (size), (align), (pcihp))) [all …]
|
/netbsd-src/sys/arch/sh3/sh3/ |
H A D | sh3_bus_space.c | 48 bus_space_read_1(bus_space_tag_t tag, bus_space_handle_t bsh, in bus_space_read_1() argument 56 bus_space_read_2(bus_space_tag_t tag, bus_space_handle_t bsh, in bus_space_read_2() argument 64 bus_space_read_4(bus_space_tag_t tag, bus_space_handle_t bsh, in bus_space_read_4() argument 72 bus_space_read_stream_2(bus_space_tag_t tag, bus_space_handle_t bsh, in bus_space_read_stream_2() argument 80 bus_space_read_stream_4(bus_space_tag_t tag, bus_space_handle_t bsh, in bus_space_read_stream_4() argument 96 bus_space_read_multi_1(bus_space_tag_t tag, bus_space_handle_t bsh, in bus_space_read_multi_1() argument 101 *addr++ = bus_space_read_1(tag, bsh, offset); in bus_space_read_multi_1() 105 bus_space_read_multi_2(bus_space_tag_t tag, bus_space_handle_t bsh, in bus_space_read_multi_2() argument 110 *addr++ = bus_space_read_2(tag, bsh, offset); in bus_space_read_multi_2() 114 bus_space_read_multi_4(bus_space_tag_t tag, bus_space_handle_t bsh, in bus_space_read_multi_4() argument [all …]
|
/netbsd-src/sys/dev/pci/ |
H A D | pci.c | 273 pci_bus_get_child_devhandle(struct pci_softc *sc, pcitag_t tag) in pci_bus_get_child_devhandle() argument 277 .tag = tag, in pci_bus_get_child_devhandle() 293 pci_probe_device1(struct pci_softc *sc, pcitag_t tag, in pci_probe_device1() argument 307 pci_decompose_tag(pc, tag, &bus, &device, &function); in pci_probe_device1() 313 id = pci_conf_read(pc, tag, PCI_ID_REG); in pci_probe_device1() 322 bhlcr = pci_conf_read(pc, tag, PCI_BHLC_REG); in pci_probe_device1() 327 pciclass = pci_conf_read(pc, tag, PCI_CLASS_REG); in pci_probe_device1() 349 if (pci_mapreg_probe(pc, tag, bar, &type) == 0) in pci_probe_device1() 358 if (pci_mapreg_info(pc, tag, bar, type, in pci_probe_device1() 396 pa.pa_tag = tag; in pci_probe_device1() [all …]
|
/netbsd-src/sys/external/bsd/drm/dist/bsd-core/ |
H A D | drm_pci.c | 90 &dmah->tag); in drm_pci_alloc() 96 ret = bus_dmamem_alloc(dmah->tag, &dmah->vaddr, in drm_pci_alloc() 99 bus_dma_tag_destroy(dmah->tag); in drm_pci_alloc() 104 ret = bus_dmamap_load(dmah->tag, dmah->map, dmah->vaddr, size, in drm_pci_alloc() 107 bus_dmamem_free(dmah->tag, dmah->vaddr, dmah->map); in drm_pci_alloc() 108 bus_dma_tag_destroy(dmah->tag); in drm_pci_alloc() 114 dmah->tag = dev->pa.pa_dmat; /* use 32-bit DMA tag */ in drm_pci_alloc() 116 if ((ret = bus_dmamem_alloc(dmah->tag, size, align, 0, in drm_pci_alloc() 120 dmah->tag = NULL; in drm_pci_alloc() 127 bus_dmamem_free(dmah->tag, dmah->segs, 1); in drm_pci_alloc() [all …]
|
/netbsd-src/external/bsd/openldap/dist/libraries/libldap/ |
H A D | stctrl.c | 51 ber_tag_t tag; in ldap_create_session_tracking_value() local 115 tag = ber_printf( ber, "{OOOO}", &ip, &name, &oid, &id ); in ldap_create_session_tracking_value() 116 if ( tag == LBER_ERROR ) { in ldap_create_session_tracking_value() 176 ber_tag_t tag; in ldap_parse_session_tracking_control() local 208 tag = ber_skip_tag( ber, &len ); in ldap_parse_session_tracking_control() 209 if ( tag != LBER_SEQUENCE ) { in ldap_parse_session_tracking_control() 210 tag = LBER_ERROR; in ldap_parse_session_tracking_control() 215 tag = ber_peek_tag( ber, &len ); in ldap_parse_session_tracking_control() 216 if ( tag == LBER_DEFAULT ) { in ldap_parse_session_tracking_control() 217 tag = LBER_ERROR; in ldap_parse_session_tracking_control() [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/tsan/ |
H A D | tsan_external.cpp | 33 static TagData *GetTagData(uptr tag) { in GetTagData() argument 35 if (tag >= atomic_load(&used_tags, memory_order_relaxed)) return nullptr; in GetTagData() 36 return ®istered_tags[tag]; in GetTagData() 39 const char *GetObjectTypeFromTag(uptr tag) { in GetObjectTypeFromTag() argument 40 TagData *tag_data = GetTagData(tag); in GetObjectTypeFromTag() 44 const char *GetReportHeaderFromTag(uptr tag) { in GetReportHeaderFromTag() argument 45 TagData *tag_data = GetTagData(tag); in GetReportHeaderFromTag() 49 void InsertShadowStackFrameForTag(ThreadState *thr, uptr tag) { in InsertShadowStackFrameForTag() argument 50 FuncEntry(thr, (uptr)®istered_tags[tag]); in InsertShadowStackFrameForTag() 63 void ExternalAccess(void *addr, uptr caller_pc, void *tag, AccessType typ) { in ExternalAccess() argument [all …]
|
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/doc/ |
H A D | texi2html | 558 $tag = ''; 563 $tag = $1; 575 } elsif ($tag eq 'ifhtml') { 585 } elsif ($tag) { 586 next if $to_skip{$tag}; 587 last if $tag eq 'bye'; 591 if ($tag eq 'node' || $tag eq 'include' || $sec2level{$tag}) { 613 if ($tag) { 615 &skip_until($tag), next if $tag eq 'ignore'; 617 &skip_until($tag), next if $tag eq 'ifnotinfo'; [all …]
|
/netbsd-src/external/gpl2/gettext/dist/gettext-runtime/libasprintf/ |
H A D | texi2html | 558 $tag = ''; 563 $tag = $1; 575 } elsif ($tag eq 'ifhtml') { 585 } elsif ($tag) { 586 next if $to_skip{$tag}; 587 last if $tag eq 'bye'; 591 if ($tag eq 'node' || $tag eq 'include' || $sec2level{$tag}) { 613 if ($tag) { 615 &skip_until($tag), next if $tag eq 'ignore'; 617 &skip_until($tag), next if $tag eq 'ifnotinfo'; [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/tsan/ |
H A D | tsan_external.cc | 28 static TagData *GetTagData(uptr tag) { in GetTagData() argument 30 if (tag >= atomic_load(&used_tags, memory_order_relaxed)) return nullptr; in GetTagData() 31 return ®istered_tags[tag]; in GetTagData() 34 const char *GetObjectTypeFromTag(uptr tag) { in GetObjectTypeFromTag() argument 35 TagData *tag_data = GetTagData(tag); in GetObjectTypeFromTag() 39 const char *GetReportHeaderFromTag(uptr tag) { in GetReportHeaderFromTag() argument 40 TagData *tag_data = GetTagData(tag); in GetReportHeaderFromTag() 44 void InsertShadowStackFrameForTag(ThreadState *thr, uptr tag) { in InsertShadowStackFrameForTag() argument 45 FuncEntry(thr, (uptr)®istered_tags[tag]); in InsertShadowStackFrameForTag() 59 void ExternalAccess(void *addr, void *caller_pc, void *tag, AccessFunc access) { in ExternalAccess() argument [all …]
|
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
H A D | tsan_external.cc | 30 static TagData *GetTagData(uptr tag) { in GetTagData() argument 32 if (tag >= atomic_load(&used_tags, memory_order_relaxed)) return nullptr; in GetTagData() 33 return ®istered_tags[tag]; in GetTagData() 36 const char *GetObjectTypeFromTag(uptr tag) { in GetObjectTypeFromTag() argument 37 TagData *tag_data = GetTagData(tag); in GetObjectTypeFromTag() 41 const char *GetReportHeaderFromTag(uptr tag) { in GetReportHeaderFromTag() argument 42 TagData *tag_data = GetTagData(tag); in GetReportHeaderFromTag() 46 void InsertShadowStackFrameForTag(ThreadState *thr, uptr tag) { in InsertShadowStackFrameForTag() argument 47 FuncEntry(thr, (uptr)®istered_tags[tag]); in InsertShadowStackFrameForTag() 61 void ExternalAccess(void *addr, void *caller_pc, void *tag, AccessFunc access) { in ExternalAccess() argument [all …]
|