HomeSort by relevance Sort by last modified time
    Searched defs:UINT32_TO_STREAM (Results 1 - 5 of 5) 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);}
  /hardware/broadcom/libbt/src/
hardware.c 96 #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);}
757 UINT32_TO_STREAM(p, UART_TARGET_BAUD_RATE);
    [all...]
  /external/bluetooth/bluedroid/stack/include/
bt_types.h 238 #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 363 milliseconds