Searched refs:preamble (Results 1 – 5 of 5) sorted by relevance
/system/media/audio_utils/spdif/ |
D | SPDIFEncoder.cpp | 204 uint16_t preamble[4]; in startDataBurst() local 212 preamble[0] = kSPDIFSync1; in startDataBurst() 213 preamble[1] = kSPDIFSync2; in startDataBurst() 214 preamble[2] = burstInfo; in startDataBurst() 215 preamble[3] = 0; // lengthCode - This will get set after the buffer is full. in startDataBurst() 216 writeBurstBufferShorts(preamble, 4); in startDataBurst()
|
/system/extras/memory_replay/ |
D | NativeInfo.cpp | 63 void PrintNativeInfo(const char* preamble) { in PrintNativeInfo() argument 73 printf("%sNative PSS: %zu bytes %0.2fMB\n", preamble, pss_bytes, pss_bytes/(1024*1024.0)); in PrintNativeInfo() 74 printf("%sNative VA Space: %zu bytes %0.2fMB\n", preamble, va_bytes, va_bytes/(1024*1024.0)); in PrintNativeInfo()
|
D | NativeInfo.h | 24 void PrintNativeInfo(const char* preamble);
|
/system/bt/btif/src/ |
D | btif_debug_btsnoop.c | 176 btsnooz_preamble_t preamble; in btif_debug_btsnoop_dump() local 177 preamble.version = BTSNOOZ_CURRENT_VERSION; in btif_debug_btsnoop_dump() 178 preamble.last_timestamp_ms = last_timestamp_ms; in btif_debug_btsnoop_dump() 179 ringbuffer_insert(ringbuffer, (uint8_t *)&preamble, sizeof(btsnooz_preamble_t)); in btif_debug_btsnoop_dump()
|
/system/bt/hci/src/ |
D | hci_layer.c | 56 #define RETRIEVE_ACL_LENGTH(preamble) ((((preamble)[3]) << 8) | (preamble)[2]) argument 84 uint8_t preamble[PREAMBLE_BUFFER_SIZE]; member 557 memset(incoming->preamble, 0, PREAMBLE_BUFFER_SIZE); in hal_says_data_ready() 562 incoming->preamble[incoming->index] = byte; in hal_says_data_ready() 568 …coming->bytes_remaining = (type == DATA_TYPE_ACL) ? RETRIEVE_ACL_LENGTH(incoming->preamble) : byte; in hal_says_data_ready() 584 memcpy(incoming->buffer->data, incoming->preamble, incoming->index); in hal_says_data_ready()
|