Searched refs:tag_data (Results 1 – 10 of 10) sorted by relevance
/freebsd/contrib/mandoc/ |
H A D | tag.c | 53 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 D | tsan_external.cpp | 40 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 D | ng_tag.h | 52 uint8_t tag_data[0]; /* tag data */ member 61 uint8_t tag_data[0]; /* tag data */ member
|
H A D | ng_tag.c | 134 (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 D | MemoryTagManagerAArch64MTE.cpp | 289 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 D | ef10_nvram.c | 1647 __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 D | ef10_impl.h | 375 __in_bcount(tag_size) caddr_t tag_data,
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
H A D | GDBRemoteCommunicationServerLLGS.cpp | 3898 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 D | ProcessGDBRemote.cpp | 2639 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 D | Process.cpp | 6444 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()
|