Home
last modified time | relevance | path

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

/openbsd/usr.bin/mandoc/
H A Dtag.c51 static struct ohash tag_data; variable
61 mandoc_ohash_init(&tag_data, 4, offsetof(struct tag_entry, s)); in tag_alloc()
70 if (tag_data.info.free == NULL) in tag_free()
72 entry = ohash_first(&tag_data, &slot); in tag_free()
76 entry = ohash_next(&tag_data, &slot); in tag_free()
78 ohash_delete(&tag_data); in tag_free()
79 tag_data.info.free = NULL; in tag_free()
175 slot = ohash_qlookupi(&tag_data, s, &se); in tag_put()
176 entry = ohash_find(&tag_data, slot); in tag_put()
185 ohash_insert(&tag_data, slot, entry); in tag_put()
[all …]
/openbsd/gnu/llvm/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()
/openbsd/gnu/llvm/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()
/openbsd/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp3888 std::vector<uint8_t> tag_data; in Handle_QMemTags() local
3893 tag_data.resize(byte_count); in Handle_QMemTags()
3894 size_t converted_bytes = packet.GetHexBytes(tag_data, 0); in Handle_QMemTags()
3901 m_current_process->WriteMemoryTags(type, addr, length, tag_data); in Handle_QMemTags()
H A DProcessGDBRemote.cpp2551 llvm::ArrayRef<uint8_t> tag_data = buffer_sp->GetData(); in DoReadMemoryTags() local
2553 got.reserve(tag_data.size()); in DoReadMemoryTags()
2554 std::copy(tag_data.begin(), tag_data.end(), std::back_inserter(got)); in DoReadMemoryTags()
/openbsd/gnu/llvm/lldb/source/Target/
H A DProcess.cpp6140 llvm::Expected<std::vector<uint8_t>> tag_data = in ReadMemoryTags() local
6142 if (!tag_data) in ReadMemoryTags()
6143 return tag_data.takeError(); in ReadMemoryTags()
6145 return tag_manager->UnpackTagsData(*tag_data, in ReadMemoryTags()