OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:UINT32_TO_STREAM
(Results
1 - 4
of
4
) sorted by null
/external/bluetooth/bluedroid/hci/include/
utils.h
36
#define
UINT32_TO_STREAM
(p, u32) {*(p)++ = (uint8_t)(u32); *(p)++ = (uint8_t)((u32) >> 8); *(p)++ = (uint8_t)((u32) >> 16); *(p)++ = (uint8_t)((u32) >> 24);}
/external/libnfc-nci/src/hal/include/
nfc_types.h
54
#define
UINT32_TO_STREAM
(p, u32) {*(p)++ = (UINT8)(u32); *(p)++ = (UINT8)((u32) >> 8); *(p)++ = (UINT8)((u32) >> 16); *(p)++ = (UINT8)((u32) >> 24);}
/external/bluetooth/bluedroid/stack/include/
bt_types.h
245
#define
UINT32_TO_STREAM
(p, u32) {*(p)++ = (UINT8)(u32); *(p)++ = (UINT8)((u32) >> 8); *(p)++ = (UINT8)((u32) >> 16); *(p)++ = (UINT8)((u32) >> 24);}
/external/libnfc-nci/src/include/
bt_types.h
222
#define
UINT32_TO_STREAM
(p, u32) {*(p)++ = (UINT8)(u32); *(p)++ = (UINT8)((u32) >> 8); *(p)++ = (UINT8)((u32) >> 16); *(p)++ = (UINT8)((u32) >> 24);}
Completed in 464 milliseconds