Home
last modified time | relevance | path

Searched refs:__u16 (Results 1 – 25 of 47) sorted by relevance

12

/u-boot/include/linux/
A Dscreen_info.h13 __u16 ext_mem_k; /* 0x02 */
14 __u16 orig_video_page; /* 0x04 */
19 __u16 orig_video_ega_bx;/* 0x0a */
20 __u16 unused3; /* 0x0c */
26 __u16 lfb_width; /* 0x12 */
27 __u16 lfb_height; /* 0x14 */
28 __u16 lfb_depth; /* 0x16 */
32 __u16 lfb_linelength; /* 0x24 */
41 __u16 vesapm_seg; /* 0x2e */
42 __u16 vesapm_off; /* 0x30 */
[all …]
A Dedd.h63 __u16 length;
64 __u16 info_flags;
69 __u16 bytes_per_sector;
74 __u16 reserved3;
79 __u16 base_address;
80 __u16 reserved1;
108 __u16 reserved2;
121 __u16 id;
123 __u16 reserved1;
150 __u16 reserved2;
[all …]
A Dfb.h146 __u16 *red; /* Red values */
147 __u16 *green;
148 __u16 *blue;
246 __u16 x, y;
250 __u16 set; /* what to set */
251 __u16 enable; /* cursor on/off */
252 __u16 rop; /* bitop operation */
340 __u16 *red; /* Red values */
341 __u16 *green;
342 __u16 *blue;
[all …]
A Dapm_bios.h16 __u16 version;
17 __u16 cseg;
19 __u16 cseg_16;
20 __u16 dseg;
21 __u16 flags;
22 __u16 cseg_len;
23 __u16 cseg_16_len;
24 __u16 dseg_len;
A Dtypes.h98 typedef __u16 u_int16_t;
106 typedef __u16 uint16_t;
141 typedef __u16 __bitwise __le16;
142 typedef __u16 __bitwise __be16;
149 typedef __u16 __bitwise __sum16;
/u-boot/disk/
A Dpart_mac.h26 __u16 signature; /* expected to be MAC_DRIVER_MAGIC */
27 __u16 blk_size; /* block size of device */
29 __u16 dev_type; /* device type */
30 __u16 dev_id; /* device id */
32 __u16 drvr_cnt; /* number of driver descriptor entries */
33 __u16 drvr_map[247]; /* driver descriptor map */
42 __u16 size; /* size of driver, in 512 byte blocks */
43 __u16 type; /* OS Type */
56 __u16 signature; /* expected to be MAC_PARTITION_MAGIC */
57 __u16 sig_pad; /* reserved */
[all …]
/u-boot/arch/x86/include/asm/
A Dbyteorder.h16 #define _constant_swab16(x) ((__u16)( \
17 (((__u16)(x) & (__u16)0x00ffU) << 8) | \
18 (((__u16)(x) & (__u16)0xff00U) >> 8)))
20 static __inline__ __u16 ___arch__swab16(__u16 x) in ___arch__swab16()
A Dbootparam.h34 __u16 root_flags;
36 __u16 ram_size;
40 __u16 vid_mode;
41 __u16 root_dev;
42 __u16 boot_flag;
43 __u16 jump;
45 __u16 version;
47 __u16 start_sys;
48 __u16 kernel_version;
61 __u16 heap_end_ptr;
[all …]
/u-boot/fs/reiserfs/
A Dreiserfs_private.h54 __u16 s_version;
232 __u16 ih_free_space;
235 __u16 ih_entry_count;
270 __u16 dc_reserved;
285 __u16 sd_uid; /* owner */
286 __u16 sd_gid; /* group */
437 __u16 version;
439 __u16 tree_depth;
445 __u16 blocksize;
447 __u16 cached_slots;
[all …]
/u-boot/include/
A Dfat.h98 __u16 reserved; /* Number of reserved sectors */
103 __u16 fat_length; /* Sectors/FAT */
104 __u16 secs_track; /* Sectors/track */
105 __u16 heads; /* Number of heads */
114 __u16 info_sector; /* Filesystem info sector */
115 __u16 backup_boot; /* Backup boot sector */
116 __u16 reserved2[6]; /* Unused */
145 __u16 ctime; /* Creation time */
146 __u16 cdate; /* Creation date */
147 __u16 adate; /* Last access date */
[all …]
A Dvirtio_ring.h150 static inline int vring_need_event(__u16 event_idx, __u16 new_idx, __u16 old) in vring_need_event()
159 return (__u16)(new_idx - event_idx - 1) < (__u16)(new_idx - old); in vring_need_event()
A Dbmp_layout.h33 __u16 planes;
34 __u16 bit_count;
/u-boot/fs/jffs2/
A Dsummary.h33 __u16 nodetype; /* node type */
38 __u16 nodetype; /* node type */
47 __u16 nodetype; /* == JFFS_NODETYPE_DIRENT */
60 __u16 nodetype; /* == JFFS2_NODETYPE_XATR */
69 __u16 nodetype; /* == JFFS2_NODETYPE_XREF */
87 __u16 nodetype; /* node type */
93 __u16 nodetype; /* node type */
103 __u16 nodetype; /* == JFFS_NODETYPE_DIRENT */
117 __u16 nodetype;
127 __u16 nodetype;
/u-boot/arch/m68k/include/asm/
A Dbyteorder.h24 static inline __u16 __sw16(__u16 x) in __sw16()
26 __u16 v = x; in __sw16()
28 return (v & (__u16)0x00ffU) << 8 | in __sw16()
29 (v & (__u16)0xff00U) >> 8; in __sw16()
63 __u16 ___arch__swab16(__u16 value)
/u-boot/include/linux/byteorder/
A Dbig_endian.h18 #define __constant_htons(x) ((__force __be16)(__u16)(x))
19 #define __constant_ntohs(x) ((__force __u16)(__be16)(x))
37 #define __le16_to_cpu(x) __swab16((__force __u16)(__le16)(x))
42 #define __cpu_to_be16(x) ((__force __be16)(__u16)(x))
43 #define __be16_to_cpu(x) ((__force __u16)(__be16)(x))
61 static inline __le16 __cpu_to_le16p(const __u16 *p) in __cpu_to_le16p()
65 static inline __u16 __le16_to_cpup(const __le16 *p) in __le16_to_cpup()
67 return __swab16p((__u16 *)p); in __le16_to_cpup()
85 static inline __be16 __cpu_to_be16p(const __u16 *p) in __cpu_to_be16p()
89 static inline __u16 __be16_to_cpup(const __be16 *p) in __be16_to_cpup()
[all …]
A Dswab.h22 ((__u16)( \
23 (((__u16)(x) & (__u16)0x00ffU) << 8) | \
24 (((__u16)(x) & (__u16)0xff00U) >> 8) ))
81 (__builtin_constant_p((__u16)(x)) ? \
99 static __inline__ __attribute__((const)) __u16 __fswab16(__u16 x) in __fswab16()
103 static __inline__ __u16 __swab16p(const __u16 *x) in __swab16p()
107 static __inline__ void __swab16s(__u16 *addr) in __swab16s()
A Dlittle_endian.h24 #define __constant_cpu_to_le16(x) ((__force __le16)(__u16)(x))
25 #define __constant_le16_to_cpu(x) ((__force __u16)(__le16)(x))
36 #define __cpu_to_le16(x) ((__force __le16)(__u16)(x))
37 #define __le16_to_cpu(x) ((__force __u16)(__le16)(x))
43 #define __be16_to_cpu(x) __swab16((__force __u16)(__be16)(x))
61 static inline __le16 __cpu_to_le16p(const __u16 *p) in __cpu_to_le16p()
65 static inline __u16 __le16_to_cpup(const __le16 *p) in __le16_to_cpup()
67 return (__force __u16)*p; in __le16_to_cpup()
85 static inline __be16 __cpu_to_be16p(const __u16 *p) in __cpu_to_be16p()
89 static inline __u16 __be16_to_cpup(const __be16 *p) in __be16_to_cpup()
[all …]
/u-boot/include/jffs2/
A Djffs2.h116 __u16 magic;
117 __u16 nodetype;
124 __u16 magic;
125 __u16 nodetype; /* == JFFS_NODETYPE_DIRENT */
148 __u16 magic; /* A constant magic number. */
149 __u16 nodetype; /* == JFFS_NODETYPE_INODE */
155 __u16 uid; /* The file's owner. */
156 __u16 gid; /* The file's group. */
166 __u16 flags; /* See JFFS2_INO_FLAG_* */
174 __u16 magic;
[all …]
/u-boot/drivers/nvme/
A Dnvme.h45 __u16 cntlid;
113 __u16 rsvd46;
229 __u16 command_id;
241 __u16 command_id;
283 __u16 command_id;
360 __u16 command_id;
372 __u16 command_id;
385 __u16 command_id;
399 __u16 command_id;
416 __u16 rsvd10;
[all …]
/u-boot/drivers/virtio/
A Dvirtio_blk.h44 __u16 cylinders;
58 __u16 min_io_size;
67 __u16 num_queues;
A Dvirtio_net.h76 __u16 status;
82 __u16 max_virtqueue_pairs;
84 __u16 mtu;
/u-boot/drivers/video/imx/
A Dmxcfb.h41 __u16 x;
42 __u16 y;
/u-boot/arch/powerpc/include/asm/
A Dbyteorder.h42 static __inline__ __attribute__((const)) __u16 ___arch__swab16(__u16 value) in ___arch__swab16()
44 __u16 result; in ___arch__swab16()
/u-boot/include/asm-generic/
A Dint-ll64.h22 typedef unsigned short __u16; typedef
38 typedef __u16 u16;
/u-boot/arch/xtensa/include/asm/
A Dbyteorder.h29 static inline __attribute__((const)) __u16 ___arch__swab16(__u16 x) in ___arch__swab16()

Completed in 34 milliseconds

12