OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:UINT24_TO_BE_STREAM
(Results
1 - 3
of
3
) sorted by null
/external/libnfc-nci/src/hal/include/
nfc_types.h
97
#define
UINT24_TO_BE_STREAM
(p, u24) {*(p)++ = (UINT8)((u24) >> 16); *(p)++ = (UINT8)((u24) >> 8); *(p)++ = (UINT8)(u24);}
/external/bluetooth/bluedroid/stack/include/
bt_types.h
286
#define
UINT24_TO_BE_STREAM
(p, u24) {*(p)++ = (UINT8)((u24) >> 16); *(p)++ = (UINT8)((u24) >> 8); *(p)++ = (UINT8)(u24);}
/external/libnfc-nci/src/include/
bt_types.h
263
#define
UINT24_TO_BE_STREAM
(p, u24) {*(p)++ = (UINT8)((u24) >> 16); *(p)++ = (UINT8)((u24) >> 8); *(p)++ = (UINT8)(u24);}
Completed in 654 milliseconds