Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/mandoc/
H A Dtag.c46 static struct ohash tag_data; variable
117 mandoc_ohash_init(&tag_data, 4, offsetof(struct tag_entry, s)); in tag_init()
166 slot = ohash_qlookupi(&tag_data, s, &se); in tag_put()
167 entry = ohash_find(&tag_data, slot); in tag_put()
178 ohash_insert(&tag_data, slot, entry); in tag_put()
232 if (tag_files.tagname != NULL && ohash_find(&tag_data, in tag_write()
233 ohash_qlookup(&tag_data, tag_files.tagname)) == NULL) { in tag_write()
240 entry = ohash_first(&tag_data, &slot); in tag_write()
251 entry = ohash_next(&tag_data, &slot); in tag_write()
253 ohash_delete(&tag_data); in tag_write()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_external.cpp37 TagData *tag_data = GetTagData(tag); in GetObjectTypeFromTag() local
38 return tag_data ? tag_data->object_type : nullptr; in GetObjectTypeFromTag()
42 TagData *tag_data = GetTagData(tag); in GetReportHeaderFromTag() local
43 return tag_data ? tag_data->header : nullptr; in GetReportHeaderFromTag()
/freebsd-13.1/sys/netgraph/
H A Dng_tag.h54 uint8_t tag_data[0]; /* tag data */ member
63 uint8_t tag_data[0]; /* tag data */ member
H A Dng_tag.c136 (buf - offsetof(struct ng_tag_hookin, tag_data)); in ng_tag_hookinary_getLength()
147 (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-13.1/sys/dev/sfxge/common/
H A Def10_nvram.c1649 __in_bcount(tag_size) caddr_t tag_data, in ef10_nvram_buf_write_tlv()
1677 (uint8_t *)tag_data, tag_size)) != 0) in ef10_nvram_buf_write_tlv()
1687 (uint8_t *)tag_data, tag_size)) != 0) { in ef10_nvram_buf_write_tlv()
H A Def10_impl.h377 __in_bcount(tag_size) caddr_t tag_data,
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp3590 std::vector<uint8_t> tag_data; in Handle_QMemTags() local
3595 tag_data.resize(byte_count); in Handle_QMemTags()
3596 size_t converted_bytes = packet.GetHexBytes(tag_data, 0); in Handle_QMemTags()
3603 m_current_process->WriteMemoryTags(type, addr, length, tag_data); in Handle_QMemTags()
H A DProcessGDBRemote.cpp2791 llvm::ArrayRef<uint8_t> tag_data = buffer_sp->GetData(); in DoReadMemoryTags() local
2793 got.reserve(tag_data.size()); in DoReadMemoryTags()
2794 std::copy(tag_data.begin(), tag_data.end(), std::back_inserter(got)); in DoReadMemoryTags()
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp6114 llvm::Expected<std::vector<uint8_t>> tag_data = in ReadMemoryTags() local
6116 if (!tag_data) in ReadMemoryTags()
6117 return tag_data.takeError(); in ReadMemoryTags()
6119 return tag_manager->UnpackTagsData(*tag_data, in ReadMemoryTags()