Home
last modified time | relevance | path

Searched refs:tag_data (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/mandoc/
H A Dtag.c50 static struct ohash tag_data; variable
60 mandoc_ohash_init(&tag_data, 4, offsetof(struct tag_entry, s)); in tag_alloc()
69 if (tag_data.info.free == NULL) in tag_free()
71 entry = ohash_first(&tag_data, &slot); in tag_free()
75 entry = ohash_next(&tag_data, &slot); in tag_free()
77 ohash_delete(&tag_data); in tag_free()
78 tag_data.info.free = NULL; in tag_free()
133 slot = ohash_qlookupi(&tag_data, s, &se); in tag_put()
134 entry = ohash_find(&tag_data, slot); in tag_put()
144 ohash_insert(&tag_data, slot, entry); in tag_put()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_external.cpp40 TagData *tag_data = GetTagData(tag); in GetObjectTypeFromTag() local
41 return tag_data ? tag_data->object_type : nullptr; in GetObjectTypeFromTag()
45 TagData *tag_data = GetTagData(tag); in GetReportHeaderFromTag() local
46 return tag_data ? tag_data->header : nullptr; in GetReportHeaderFromTag()
/freebsd/sys/netgraph/
H A Dng_tag.h52 uint8_t tag_data[0]; /* tag data */ member
61 uint8_t tag_data[0]; /* tag data */ member
H A Dng_tag.c134 (buf - offsetof(struct ng_tag_hookin, tag_data)); in ng_tag_hookinary_getLength()
145 (buf - offsetof(struct ng_tag_hookout, tag_data)); in ng_tag_hookoutary_getLength()
686 hip->in_tag_data = (void*)(hip->in->tag_data); in ng_tag_setdata_in()
715 hip->out_tag_data = (void*)(hip->out->tag_data); in ng_tag_setdata_out()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DMemoryTagManagerAArch64MTE.cpp289 std::vector<uint8_t> tag_data(tag_bytes_to_read); in UnpackTagsFromCoreFileSegment() local
292 tag_data.data()); in UnpackTagsFromCoreFileSegment()
297 tags.reserve(2 * tag_data.size()); in UnpackTagsFromCoreFileSegment()
300 for (auto tag_byte : tag_data) { in UnpackTagsFromCoreFileSegment()
/freebsd/sys/dev/sfxge/common/
H A Def10_nvram.c1647 __in_bcount(tag_size) caddr_t tag_data, in ef10_nvram_buf_write_tlv()
1675 (uint8_t *)tag_data, tag_size)) != 0) in ef10_nvram_buf_write_tlv()
1685 (uint8_t *)tag_data, tag_size)) != 0) { in ef10_nvram_buf_write_tlv()
H A Def10_impl.h375 __in_bcount(tag_size) caddr_t tag_data,
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp3896 std::vector<uint8_t> tag_data; in Handle_QMemTags() local
3901 tag_data.resize(byte_count); in Handle_QMemTags()
3902 size_t converted_bytes = packet.GetHexBytes(tag_data, 0); in Handle_QMemTags()
3909 m_current_process->WriteMemoryTags(type, addr, length, tag_data); in Handle_QMemTags()
H A DProcessGDBRemote.cpp2618 llvm::ArrayRef<uint8_t> tag_data = buffer_sp->GetData(); in DoReadMemoryTags() local
2620 got.reserve(tag_data.size()); in DoReadMemoryTags()
2621 std::copy(tag_data.begin(), tag_data.end(), std::back_inserter(got)); in DoReadMemoryTags()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp6243 llvm::Expected<std::vector<uint8_t>> tag_data = in ReadMemoryTags() local
6245 if (!tag_data) in ReadMemoryTags()
6246 return tag_data.takeError(); in ReadMemoryTags()
6248 return tag_manager->UnpackTagsData(*tag_data, in ReadMemoryTags()