Home
last modified time | relevance | path

Searched refs:ih (Results 1 – 3 of 3) sorted by relevance

/rk3399_rockchip-uboot/cmd/
H A Dbooti.c37 struct Image_header *ih; in booti_setup() local
41 ih = (struct Image_header *)map_sysmem(images->ep, 0); in booti_setup()
43 if (ih->magic != le32_to_cpu(LINUX_ARM64_IMAGE_MAGIC)) { in booti_setup()
53 if (ih->image_size == 0) { in booti_setup()
58 image_size = le64_to_cpu(ih->image_size); in booti_setup()
59 text_offset = le64_to_cpu(ih->text_offset); in booti_setup()
68 if (le64_to_cpu(ih->flags) & BIT(3)) in booti_setup()
75 unmap_sysmem(ih); in booti_setup()
97 struct Image_header *ih; in booti_start() local
117 ih = (struct Image_header *)map_sysmem(images->ep, 0); in booti_start()
[all …]
/rk3399_rockchip-uboot/fs/reiserfs/
H A Dreiserfs_private.h251 #define ih_version(ih) (__le16_to_cpu((ih)->ih_version)) argument
253 #define IH_KEY_OFFSET(ih) (ih_version(ih) == ITEM_VERSION_1 \ argument
254 ? __le32_to_cpu((ih)->ih_key.u.v1.k_offset) \
255 : offset_v2_k_offset(&((ih)->ih_key.u.v2)))
257 #define IH_KEY_ISTYPE(ih, type) (ih_version(ih) == ITEM_VERSION_1 \ argument
258 ? __le32_to_cpu((ih)->ih_key.u.v1.k_uniqueness) == V1_##type \
259 : offset_v2_k_type(&((ih)->ih_key.u.v2)) == V2_##type)
305 #define stat_data_v1(ih) (ih_version(ih) == ITEM_VERSION_1) argument
341 #define stat_data_v2(ih) (ih_version(ih) == ITEM_VERSION_2) argument
H A Dreiserfs.c58 static void sd_print_item (struct item_head * ih, char * item) in sd_print_item() argument
63 if (stat_data_v1 (ih)) { in sd_print_item()
432 struct item_head *ih = INFO->current_ih + 1; in next_key() local
444 if (ih == &ITEMHEAD[__le16_to_cpu(BLOCKHEAD (LEAF)->blk_nr_item)]) in next_key()
456 ih = (struct item_head *) &BLOCKHEAD (LEAF)->blk_right_delim_key; in next_key()
494 ih = ITEMHEAD; in next_key()
497 INFO->current_ih = ih; in next_key()
498 INFO->current_item = &LEAF[__le16_to_cpu(ih->ih_item_location)]; in next_key()
527 struct item_head *ih; in search_stat() local
565 ih = ITEMHEAD; in search_stat()
[all …]