Home
last modified time | relevance | path

Searched defs:btree_info (Results 1 – 1 of 1) sorted by relevance

/external/lzma/CPP/7zip/Archive/
DApfsHandler.cpp730 struct btree_info struct
732 btree_info_fixed fixed;
733 UInt32 longest_key;
734 UInt32 longest_val;
735 UInt64 key_count;
736 UInt64 node_count;
738 bool Is_EPHEMERAL() const { return (fixed.flags & BTREE_EPHEMERAL) != 0; } in Is_EPHEMERAL()
739 bool Is_PHYSICAL() const { return (fixed.flags & BTREE_PHYSICAL) != 0; } in Is_PHYSICAL()
740 bool Is_NOHEADER() const { return (fixed.flags & BTREE_NOHEADER) != 0; } in Is_NOHEADER()
742 void Parse(const Byte *p) in Parse()