OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EXT_FIRST_INDEX
(Results
1 - 3
of
3
) sorted by null
/external/e2fsprogs/lib/ext2fs/
ext3_extents.h
94
#define
EXT_FIRST_INDEX
(__hdr__) \
102
(
EXT_FIRST_INDEX
((__hdr__)) + (__hdr__)->eh_entries - 1)
106
(
EXT_FIRST_INDEX
((__hdr__)) + (__hdr__)->eh_max - 1)
extent.c
393
ix =
EXT_FIRST_INDEX
(eh);
473
ix =
EXT_FIRST_INDEX
((struct ext3_extent_header *) eh);
957
memcpy(
EXT_FIRST_INDEX
(neweh),
958
EXT_FIRST_INDEX
(eh) +
962
new_node_start = ext2fs_le32_to_cpu(
EXT_FIRST_INDEX
(neweh)->ei_block);
1092
ix =
EXT_FIRST_INDEX
(eh);
[
all
...]
/system/extras/ext4_utils/
ext4_extents.h
79
#define
EXT_FIRST_INDEX
(__hdr__) ((struct ext4_extent_idx *) (((char *) (__hdr__)) + sizeof(struct ext4_extent_header)))
82
#define EXT_LAST_INDEX(__hdr__) (
EXT_FIRST_INDEX
((__hdr__)) + le16_to_cpu((__hdr__)->eh_entries) - 1)
84
#define EXT_MAX_INDEX(__hdr__) (
EXT_FIRST_INDEX
((__hdr__)) + le16_to_cpu((__hdr__)->eh_max) - 1)
Completed in 27 milliseconds