Home
last modified time | relevance | path

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

/freebsd/contrib/mandoc/
H A Dtag.c53 static struct ohash tag_data; variable
63 mandoc_ohash_init(&tag_data, 4, offsetof(struct tag_entry, s)); in tag_alloc()
72 if (tag_data.info.free == NULL) in tag_free()
74 entry = ohash_first(&tag_data, &slot); in tag_free()
78 entry = ohash_next(&tag_data, &slot); in tag_free()
80 ohash_delete(&tag_data); in tag_free()
81 tag_data.info.free = NULL; in tag_free()
177 slot = ohash_qlookupi(&tag_data, s, &se); in tag_put()
178 entry = ohash_find(&tag_data, slot); in tag_put()
187 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.cpp3898 std::vector<uint8_t> tag_data; in Handle_QMemTags() local
3903 tag_data.resize(byte_count); in Handle_QMemTags()
3904 size_t converted_bytes = packet.GetHexBytes(tag_data, 0); in Handle_QMemTags()
3911 m_current_process->WriteMemoryTags(type, addr, length, tag_data); in Handle_QMemTags()
H A DProcessGDBRemote.cpp2639 llvm::ArrayRef<uint8_t> tag_data = buffer_sp->GetData(); in DoReadMemoryTags() local
2641 got.reserve(tag_data.size()); in DoReadMemoryTags()
2642 std::copy(tag_data.begin(), tag_data.end(), std::back_inserter(got)); in DoReadMemoryTags()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp6444 llvm::Expected<std::vector<uint8_t>> tag_data = in ReadMemoryTags() local
6446 if (!tag_data) in ReadMemoryTags()
6447 return tag_data.takeError(); in ReadMemoryTags()
6449 return tag_manager->UnpackTagsData(*tag_data, in ReadMemoryTags()