Home
last modified time | relevance | path

Searched refs:_bytes (Results 1 – 5 of 5) sorted by relevance

/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/include/
Dbcmendian.h194 uint8 *_bytes = (uint8 *)(bytes); \
195 _bytes[0] = _val & 0xff; \
196 _bytes[1] = _val >> 8; \
201 uint8 *_bytes = (uint8 *)(bytes); \
202 _bytes[0] = _val & 0xff; \
203 _bytes[1] = (_val >> 8) & 0xff; \
204 _bytes[2] = (_val >> 16) & 0xff; \
205 _bytes[3] = _val >> 24; \
210 uint8 *_bytes = (uint8 *)(bytes); \
213 *_bytes++ = _val & 0xff; \
[all …]
/device/board/kaihong/khdvk_3566b/wifi/bcmdhd_hdf/bcmdhd/include/
Dbcmendian.h205 uint8 *_bytes = (uint8 *)(bytes); \
206 _bytes[0] = _val & 0xff; \
207 _bytes[1] = _val >> 8; \
213 uint8 *_bytes = (uint8 *)(bytes); \
214 _bytes[0] = _val & 0xff; \
215 _bytes[1] = (_val >> 8) & 0xff; \
216 _bytes[2] = (_val >> 16) & 0xff; \
217 _bytes[3] = _val >> 24; \
223 uint8 *_bytes = (uint8 *)(bytes); \
226 *_bytes++ = _val & 0xff; \
[all …]
/device/board/isoftstone/zhiyuan/kernel/driver/drivers/net/wireless/bcmdhd/include/
Dbcmendian.h160 uint8 *_bytes = (uint8 *)(bytes); \
161 _bytes[0] = _val & 0xff; \
162 _bytes[1] = _val >> 8; \
167 uint8 *_bytes = (uint8 *)(bytes); \
168 _bytes[0] = _val & 0xff; \
169 _bytes[1] = (_val >> 8) & 0xff; \
170 _bytes[2] = (_val >> 16) & 0xff; \
171 _bytes[3] = _val >> 24; \
176 uint8 *_bytes = (uint8 *)(bytes); \
177 _bytes[0] = _val >> 8; \
[all …]
/device/board/isoftstone/yangfan/kernel/src/driv/net/rockchip_wlan/rkwifi/bcmdhd/include/
Dbcmendian.h228 uint8 *_bytes = (uint8 *)(bytes); \
229 _bytes[0] = _val & 0xff; \
230 _bytes[1] = _val >> 8; \
235 uint8 *_bytes = (uint8 *)(bytes); \
236 _bytes[0] = _val & 0xff; \
237 _bytes[1] = (_val >> 8) & 0xff; \
238 _bytes[2] = (_val >> 16) & 0xff; \
239 _bytes[3] = _val >> 24; \
244 uint8 *_bytes = (uint8 *)(bytes); \
247 *_bytes++ = _val & 0xff; \
[all …]
/device/soc/winnermicro/wm800/board/src/bt/blehost/nimble/host/mesh/include/mesh/
Dglue.h87 #define BT_DATA_BYTES(_type, _bytes...) \ argument
88 BT_DATA(_type, ((u8_t []) { _bytes }), \
89 sizeof((u8_t []) { _bytes }))