Home
last modified time | relevance | path

Searched refs:uint16 (Results 1 – 25 of 52) sorted by relevance

123

/hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
Dethernet.h121 uint16 ether_type;
152 #define eacmp(a, b) ((((const uint16 *)(a))[0] ^ ((const uint16 *)(b))[0]) | \
153 (((const uint16 *)(a))[1] ^ ((const uint16 *)(b))[1]) | \
154 (((const uint16 *)(a))[2] ^ ((const uint16 *)(b))[2]))
161 ((uint16 *)(d))[0] = ((const uint16 *)(s))[0]; \
162 ((uint16 *)(d))[1] = ((const uint16 *)(s))[1]; \
163 ((uint16 *)(d))[2] = ((const uint16 *)(s))[2]; \
171 ((uint16 *)(d))[2] = ((uint16 *)(s))[2]; \
172 ((uint16 *)(d))[1] = ((uint16 *)(s))[1]; \
173 ((uint16 *)(d))[0] = ((uint16 *)(s))[0]; \
[all …]
Dvlan.h49 uint16 vlan_type; /* 0x8100 */
50 uint16 vlan_tag; /* priority, cfi and vid */
56 uint16 vlan_type; /* 0x8100 */
57 uint16 vlan_tag; /* priority, cfi and vid */
58 uint16 ether_type;
64 uint16 length; /* frame length incl header */
71 uint16 vlan_type; /* 0x8100 */
72 uint16 vlan_tag; /* priority, cfi and vid */
73 uint16 ether_type; /* ethertype */
Dbt_amp_hci.h30 uint16 opcode;
136 uint16 bredr;
212 uint16 opcode;
217 uint16 opcode;
222 uint16 handle;
233 uint16 len;
245 uint16 PAL_cap;
246 uint16 AMP_ASSOC_len;
253 uint16 llh;
260 uint16 llh;
[all …]
D802.11.h98 uint16 type; /* ethertype */
111 uint16 fc; /* frame control */
112 uint16 durid; /* duration/ID */
116 uint16 seq; /* sequence control */
123 uint16 fc; /* frame control */
124 uint16 durid; /* duration/ID */
131 uint16 fc; /* frame control */
132 uint16 durid; /* duration/ID */
138 uint16 fc; /* frame control */
139 uint16 durid; /* duration/ID */
[all …]
Dbcmevent.h56 uint16 version;
57 uint16 flags; /* see flags below */
70 uint16 version;
71 uint16 flags; /* see flags below */
317 uint16 version;
318 uint16 channel; /* Matches chanspec_t format from bcmwifi_channels.h */
390 uint16 channel; /* channel of GAS protocol */
393 uint16 status_code; /* status code on GAS completion */
394 uint16 data_len; /* length of data to follow */
400 uint16 length; /* length of response_data */
[all …]
Dp2p.h253 uint16 cat_id; /* Category ID */
256 uint16 sub_cat_id; /* Sub Category ID */
265 uint16 wps_cfg_meths; /* Config Methods: reg_prototlv.h WPS_CONFMET_* */
486 uint16 svc_updi; /* Service Update Indicator */
495 uint16 len; /* Length: 5 plus size of Query Data */
504 uint16 info_id; /* Info ID: 0xDDDD */
505 uint16 len; /* Length of service request TLV, 5 plus the size of request data */
515 uint16 qreq_len; /* Query Request Length */
522 uint16 len; /* Length: 5 plus size of Query Data */
532 uint16 info_id; /* Info ID: 0xDDDD */
[all …]
Dbcmeth.h94 uint16 subtype; /* Vendor specific..32769 */
95 uint16 length;
99 uint16 usr_subtype;
Dbcmip.h104 uint16 tot_len; /* Number of bytes in packet (max 65535) */
105 uint16 id;
106 uint16 frag; /* 3 flag bits and fragment offset */
109 uint16 hdr_chksum; /* IP header checksum */
174 uint16 frag_off;
181 uint16 len = 0, hlen; in ipv6_exthdr_len()
D802.11e.h54 uint16 nom_msdu_size; /* (Nominal or fixed) MSDU Size (bytes) */
55 uint16 max_msdu_size; /* Maximum MSDU Size (bytes) */
67 uint16 surplus_bw; /* Surplus Bandwidth Allowance (range 1.0-8.0) */
68 uint16 medium_time; /* Medium Time (32 us/s periods) */
D802.3.h33 uint16 length; /* frame length incl header */
40 uint16 type; /* ethertype */
/hardware/google/gfxstream/third-party/glm/include/glm/gtc/
Dpacking.hpp67 GLM_FUNC_DECL uint16 packUnorm2x8(vec2 const & v);
83 GLM_FUNC_DECL vec2 unpackUnorm2x8(uint16 p);
125 GLM_FUNC_DECL uint16 packSnorm2x8(vec2 const & v);
141 GLM_FUNC_DECL vec2 unpackSnorm2x8(uint16 p);
154 GLM_FUNC_DECL uint16 packUnorm1x16(float v);
167 GLM_FUNC_DECL float unpackUnorm1x16(uint16 p);
212 GLM_FUNC_DECL uint16 packSnorm1x16(float v);
225 GLM_FUNC_DECL float unpackSnorm1x16(uint16 p);
268 GLM_FUNC_DECL uint16 packHalf1x16(float v);
279 GLM_FUNC_DECL float unpackHalf1x16(uint16 v);
[all …]
Dbitfield.hpp104 GLM_FUNC_DECL uint16 bitfieldInterleave(uint8 x, uint8 y);
118 GLM_FUNC_DECL uint32 bitfieldInterleave(uint16 x, uint16 y);
160 GLM_FUNC_DECL uint64 bitfieldInterleave(uint16 x, uint16 y, uint16 z);
202 GLM_FUNC_DECL uint64 bitfieldInterleave(uint16 x, uint16 y, uint16 z, uint16 w);
Dbitfield.inl19 GLM_FUNC_QUALIFIER glm::uint16 bitfieldInterleave(glm::uint8 x, glm::uint8 y)
21 glm::uint16 REG1(x);
22 glm::uint16 REG2(y);
24 REG1 = ((REG1 << 4) | REG1) & glm::uint16(0x0F0F);
25 REG2 = ((REG2 << 4) | REG2) & glm::uint16(0x0F0F);
27 REG1 = ((REG1 << 2) | REG1) & glm::uint16(0x3333);
28 REG2 = ((REG2 << 2) | REG2) & glm::uint16(0x3333);
30 REG1 = ((REG1 << 1) | REG1) & glm::uint16(0x5555);
31 REG2 = ((REG2 << 1) | REG2) & glm::uint16(0x5555);
37 GLM_FUNC_QUALIFIER glm::uint32 bitfieldInterleave(glm::uint16 x, glm::uint16 y)
[all …]
Dtype_precision.hpp326 typedef detail::uint16 lowp_uint16;
342 typedef detail::uint16 lowp_uint16_t;
358 typedef detail::uint16 lowp_u16;
374 typedef detail::uint16 mediump_uint16;
390 typedef detail::uint16 mediump_uint16_t;
406 typedef detail::uint16 mediump_u16;
422 typedef detail::uint16 highp_uint16;
438 typedef detail::uint16 highp_uint16_t;
454 typedef detail::uint16 highp_u16;
470 typedef detail::uint16 uint16; typedef
[all …]
Dpacking.inl15 GLM_FUNC_QUALIFIER glm::uint16 float2half(glm::uint32 f)
211 uint16 pack;
222 uint16 pack;
234 uint16 pack;
280 GLM_FUNC_QUALIFIER static tvec1<uint16, P> pack(tvec1<float, P> const & v)
288 GLM_FUNC_QUALIFIER static tvec1<float, P> unpack(tvec1<uint16, P> const & v)
299 GLM_FUNC_QUALIFIER static tvec2<uint16, P> pack(tvec2<float, P> const & v)
307 GLM_FUNC_QUALIFIER static tvec2<float, P> unpack(tvec2<uint16, P> const & v)
318 GLM_FUNC_QUALIFIER static tvec3<uint16, P> pack(tvec3<float, P> const & v)
326 GLM_FUNC_QUALIFIER static tvec3<float, P> unpack(tvec3<uint16, P> const & v)
[all …]
Drandom.inl66 struct compute_rand<uint16, P, vecType>
68 GLM_FUNC_QUALIFIER static vecType<uint16, P> call()
71 (vecType<uint16, P>(compute_rand<uint8, P, vecType>::call()) << static_cast<uint16>(8)) |
72 (vecType<uint16, P>(compute_rand<uint8, P, vecType>::call()) << static_cast<uint16>(0));
82 (vecType<uint32, P>(compute_rand<uint16, P, vecType>::call()) << static_cast<uint32>(16)) |
83 (vecType<uint32, P>(compute_rand<uint16, P, vecType>::call()) << static_cast<uint32>(0));
127 …return (vecType<int16, P>(compute_rand<uint16, P, vecType>::call() % vecType<uint16, P>(Max + stat…
132 struct compute_linearRand<uint16, P, vecType>
134 …GLM_FUNC_QUALIFIER static vecType<uint16, P> call(vecType<uint16, P> const & Min, vecType<uint16, …
136 return (compute_rand<uint16, P, vecType>::call() % (Max + static_cast<uint16>(1) - Min)) + Min;
[all …]
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
Dbcmendian.h31 ((uint16)((((uint16)(val) & (uint16)0x00ffU) << 8) | \
32 (((uint16)(val) & (uint16)0xff00U) >> 8)))
85 sizeof(*(ptr)) == sizeof(uint16) ? _LTOH16_UA((const uint8 *)(ptr)) : \
91 sizeof(*(ptr)) == sizeof(uint16) ? _NTOH16_UA((const uint8 *)(ptr)) : \
102 uint16 _val = (val); \
117 uint16 *_buf = (uint16 *)(buf); \
126 uint16 _val = (val); \
142 uint16 _val = (val); \
180 static INLINE uint16
181 bcmswap16(uint16 val) in bcmswap16()
[all …]
Dwlioctl.h71 uint16 len;
98 uint16 id;
120 uint16 beacon_period; /* units are Kusec */
121 uint16 capability; /* Capability information */
129 uint16 atim_window; /* units are Kusec */
153 uint16 beacon_period; /* units are Kusec */
154 uint16 capability; /* Capability information */
162 uint16 atim_window; /* units are Kusec */
175 uint16 ie_offset; /* offset at which IEs start, from beginning */
195 uint16 beacon_period; /* units are Kusec */
[all …]
Dbcm_mpool_pub.h106 uint16 nobj; /* Total number of objects in this pool */
107 uint16 num_alloc; /* Number of objects currently allocated */
108 uint16 high_water; /* Max number of allocated objects. */
109 uint16 failed_alloc; /* Failed allocations. */
Dbcmutils.h105 uint16 len; /* number of queued packets */
106 uint16 max; /* maximum number of queued packets */
144 uint16 num_prec; /* number of precedences in use */ \
145 uint16 hi_prec; /* rapid dequeue hint (>= highest non-empty prec) */ \
146 uint16 max; /* total max packets */ \
147 uint16 len; /* total number of packets */
223 uint16 r;
224 uint16 w;
225 uint16 len;
226 uint16 maxlen;
[all …]
Dhndrte_debug.h86 uint16 pr_cursig; /* Current signal. */
87 uint16 unused;
/hardware/google/gfxstream/third-party/glm/include/glm/detail/
Dglm.cpp12 template struct tvec1<uint16, lowp>;
23 template struct tvec1<uint16, mediump>;
34 template struct tvec1<uint16, highp>;
46 template struct tvec2<uint16, lowp>;
57 template struct tvec2<uint16, mediump>;
68 template struct tvec2<uint16, highp>;
80 template struct tvec3<uint16, lowp>;
91 template struct tvec3<uint16, mediump>;
102 template struct tvec3<uint16, highp>;
114 template struct tvec4<uint16, lowp>;
[all …]
Dtype_int.hpp25 typedef std::uint16_t uint16; typedef
58 typedef unsigned short uint16;
212 typedef detail::uint16 uint16; typedef
301 GLM_STATIC_ASSERT(sizeof(glm::uint16) == 2, "uint16 size isn't 2 bytes on this platform");
/hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/inc/
Dmp4_utils.h34 typedef unsigned short uint16; /* Unsigned 16 bit value */ typedef
160 uint16 m_SrcWidth, m_SrcHeight; // Dimensions of the source clip
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/inc/
Dmp4_utils.h34 typedef unsigned short uint16; /* Unsigned 16 bit value */ typedef
160 uint16 m_SrcWidth, m_SrcHeight; // Dimensions of the source clip

123