Home
last modified time | relevance | path

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

/rk3399_rockchip-uboot/fs/reiserfs/
H A Dreiserfs_private.h62 #define sb_blocksize(sbp) (__le16_to_cpu((sbp)->s_blocksize))
64 #define sb_version(sbp) (__le16_to_cpu((sbp)->s_version))
251 #define ih_version(ih) (__le16_to_cpu((ih)->ih_version))
307 #define sd_v1_nlink(sdp) (__le16_to_cpu((sdp)->sd_nlink))
308 #define sd_v1_uid(sdp) (__le16_to_cpu((sdp)->sd_uid))
309 #define sd_v1_gid(sdp) (__le16_to_cpu((sdp)->sd_gid))
342 #define sd_v2_mode(sdp) (__le16_to_cpu((sdp)->sd_mode))
349 #define sd_mode(sdp) (__le16_to_cpu((sdp)->sd_mode))
370 #define deh_location(p_deh) (__le16_to_cpu((p_deh)->deh_location))
371 #define deh_state(p_deh) (__le16_to_cpu((p_deh)->deh_state))
H A Dreiserfs.c350 INFO->tree_depth = __le16_to_cpu(BLOCKHEAD (cache)->blk_level); in reiserfs_mount()
415 if (__le16_to_cpu(BLOCKHEAD (cache)->blk_level) != depth) in read_tree_node()
441 __le16_to_cpu(INFO->current_ih->ih_version)); in next_key()
444 if (ih == &ITEMHEAD[__le16_to_cpu(BLOCKHEAD (LEAF)->blk_nr_item)]) in next_key()
479 int nr_item = __le16_to_cpu(BLOCKHEAD (cache)->blk_nr_item); in next_key()
498 INFO->current_item = &LEAF[__le16_to_cpu(ih->ih_item_location)]; in next_key()
505 __le16_to_cpu(INFO->current_ih->ih_version)); in next_key()
538 nr_item = __le16_to_cpu(BLOCKHEAD (cache)->blk_nr_item); in search_stat()
564 nr_item = __le16_to_cpu(BLOCKHEAD (LEAF)->blk_nr_item); in search_stat()
577 INFO->current_item = &LEAF[__le16_to_cpu(ih->ih_item_location)]; in search_stat()
[all …]
/rk3399_rockchip-uboot/drivers/net/
H A Ddm9000x.c199 *RxStatus = __le16_to_cpu(tmpdata); in dm9000_rx_status_32bit()
200 *RxLen = __le16_to_cpu(tmpdata >> 16); in dm9000_rx_status_32bit()
207 *RxStatus = __le16_to_cpu(DM9000_inw(DM9000_DATA)); in dm9000_rx_status_16bit()
208 *RxLen = __le16_to_cpu(DM9000_inw(DM9000_DATA)); in dm9000_rx_status_16bit()
216 __le16_to_cpu(DM9000_inb(DM9000_DATA) + in dm9000_rx_status_8bit()
219 __le16_to_cpu(DM9000_inb(DM9000_DATA) + in dm9000_rx_status_8bit()
/rk3399_rockchip-uboot/include/linux/byteorder/
H A Dgeneric.h92 #define le16_to_cpu __le16_to_cpu
H A Dbig_endian.h37 #define __le16_to_cpu(x) __swab16((__force __u16)(__le16)(x)) macro
H A Dlittle_endian.h37 #define __le16_to_cpu(x) ((__force __u16)(__le16)(x)) macro
/rk3399_rockchip-uboot/include/linux/usb/
H A Dch9.h631 return __le16_to_cpu(get_unaligned(&epd->wMaxPacketSize)); in usb_endpoint_maxp()
643 int maxp = __le16_to_cpu(epd->wMaxPacketSize); in usb_endpoint_maxp_mult()
/rk3399_rockchip-uboot/arch/sh/include/asm/
H A Dio.h89 #define inw(p) ({ unsigned int __v = __le16_to_cpu(__raw_readw(p)); __v; })
/rk3399_rockchip-uboot/fs/jffs2/
H A Djffs2_1pass.c1302 return __le16_to_cpu(val); in sum_get_unaligned16()