Home
last modified time | relevance | path

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

/system/media/audio_utils/spdif/
DSPDIFEncoder.cpp204 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/
DNativeInfo.cpp63 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()
DNativeInfo.h24 void PrintNativeInfo(const char* preamble);
/system/bt/btif/src/
Dbtif_debug_btsnoop.c176 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/
Dhci_layer.c56 #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()