Home
last modified time | relevance | path

Searched refs:hash_data (Results 1 – 4 of 4) sorted by relevance

/trueos/contrib/subversion/subversion/libsvn_fs_fs/
HDtemp_serializer.c281 hash_data_t hash_data; in serialize_dir() local
293 hash_data.count = count; in serialize_dir()
294 hash_data.over_provision = over_provision; in serialize_dir()
295 hash_data.operations = 0; in serialize_dir()
296 hash_data.entries = apr_palloc(pool, entries_len); in serialize_dir()
297 hash_data.lengths = apr_palloc(pool, lengths_len); in serialize_dir()
300 hash_data.entries[i] = svn__apr_hash_index_val(hi); in serialize_dir()
303 qsort(hash_data.entries, in serialize_dir()
305 sizeof(*hash_data.entries), in serialize_dir()
310 context = svn_temp_serializer__init(&hash_data, in serialize_dir()
[all …]
/trueos/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
HDHashedNameToDIE.h437 DIEInfo &hash_data) const in Read()
453hash_data.offset = (dw_offset_t)form_value.Reference (header_data.die_base_offset); in Read()
457 hash_data.tag = (dw_tag_t)form_value.Unsigned (); in Read()
460 hash_data.type_flags = (uint32_t)form_value.Unsigned (); in Read()
464 hash_data.qualified_name_hash = form_value.Unsigned (); in Read()
476 Dump (lldb_private::Stream& strm, const DIEInfo &hash_data) const in Dump()
488 strm.Printf ("{0x%8.8x}", hash_data.offset); in Dump()
493 … const char *tag_cstr = lldb_private::DW_TAG_value_to_name (hash_data.tag); in Dump()
497 strm.Printf ("DW_TAG_(0x%4.4x)", hash_data.tag); in Dump()
502 strm.Printf ("0x%2.2x", hash_data.type_flags); in Dump()
[all …]
/trueos/cddl/contrib/opensolaris/tools/ctf/cvt/
HDhash.c51 struct hash_data { struct
155 struct hash_data *hd = arg; in hash_find_list_cb()
173 struct hash_data hd; in hash_find_iter()
188 struct hash_data *hd = arg; in hash_find_first_cb()
201 struct hash_data hd; in hash_find()
/trueos/contrib/llvm/tools/lldb/include/lldb/Core/
HDMappedHash.h206 WriteHashData (const HashData &hash_data,
492 HashData &hash_data) const = 0;
523 ForEach (std::function <bool(const HashData &hash_data)> const &callback) const in ForEach()
531 HashData hash_data; in ForEach() local
532 if (ReadHashData (hash_data_offset, hash_data)) in ForEach()
535 if (callback(hash_data) == false) in ForEach()