Home
last modified time | relevance | path

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

/haiku/src/add-ons/kernel/file_systems/reiserfs/
H A DSuperBlock.h40 ? le2h(fCurrentData->s_blocksize) : le2h(fOldData->s_blocksize)); in GetBlockSize()
46 ? le2h(fCurrentData->s_block_count) in CountBlocks()
47 : le2h(fOldData->s_block_count)); in CountBlocks()
53 ? le2h(fCurrentData->s_free_blocks) in CountFreeBlocks()
54 : le2h(fOldData->s_free_blocks)); in CountFreeBlocks()
60 ? le2h(fCurrentData->s_version) : REISERFS_VERSION_0); in GetVersion()
66 ? le2h(fCurrentData->s_root_block) : le2h(fOldData->s_root_block)); in GetRootBlock()
72 ? le2h(fCurrentData->s_state) : le2h(fOldData->s_state)); in GetState()
78 ? le2h(fCurrentData->s_hash_function_code) : UNSET_HASH); in GetHashFunctionCode()
84 ? le2h(fCurrentData->s_tree_height) in GetTreeHeight()
[all …]
H A DStatItem.h105 return (GetVersion() == STAT_DATA_V2 ? le2h(fCurrentData->sd_mode) in GetMode()
106 : le2h(fOldData->sd_mode)); in GetMode()
111 return (GetVersion() == STAT_DATA_V2 ? le2h(fCurrentData->sd_nlink) in GetNLink()
112 : le2h(fOldData->sd_nlink)); in GetNLink()
117 return (GetVersion() == STAT_DATA_V2 ? le2h(fCurrentData->sd_uid) in GetUID()
118 : le2h(fOldData->sd_uid)); in GetUID()
123 return (GetVersion() == STAT_DATA_V2 ? le2h(fCurrentData->sd_gid) in GetGID()
124 : le2h(fOldData->sd_gid)); in GetGID()
129 return (GetVersion() == STAT_DATA_V2 ? le2h(fCurrentData->sd_size) in GetSize()
130 : le2h(fOldData->sd_size)); in GetSize()
[all …]
H A DItem.h36 uint16 GetLen() const { return le2h(ih_item_len); } in GetLen()
37 uint16 GetLocation() const { return le2h(ih_item_location); } in GetLocation()
38 uint16 GetVersion() const { return le2h(ih_version); } in GetVersion()
46 ? 0 : le2h(u.ih_free_space_reserved)); in GetFreeSpaceReserved()
50 uint16 GetEntryCount() const { return le2h(u.ih_entry_count); } in GetEntryCount()
H A DDirItem.h48 uint32 GetOffset() const { return le2h(deh_offset); } in GetOffset()
49 uint32 GetDirID() const { return le2h(deh_dir_id); } in GetDirID()
50 uint32 GetObjectID() const { return le2h(deh_objectid); } in GetObjectID()
51 uint16 GetLocation() const { return le2h(deh_location); } in GetLocation()
52 uint16 GetState() const { return le2h(deh_state); } in GetState()
H A DBlock.h144 uint32 GetBlockNumber() const { return le2h(dc_block_number); } in GetBlockNumber()
145 uint16 GetSize() const { return le2h(dc_size); } in GetSize()
H A DKey.h81 uint32 GetDirID() const { return le2h(k_dir_id); } in GetDirID()
82 uint32 GetObjectID() const { return le2h(k_objectid); } in GetObjectID()
86 : le2h(u.k_offset_v1.k_offset)); in GetOffset()
102 switch (le2h(u.k_offset_v1.k_uniqueness)) { in GetType()
H A DBlock.cpp242 return le2h(GetHeader()->blk_level); in GetLevel()
257 return le2h(GetHeader()->blk_nr_item); in CountItems()
264 return le2h(GetHeader()->blk_free_space); in GetFreeSpace()
H A DIndirectItem.h49 number = le2h(((uint32*)GetData())[index]); in BlockNumberAt()
H A Dendianess.h106 le2h(const T &v) in le2h() function