Home
last modified time | relevance | path

Searched refs:byte_ptr (Results 1 – 7 of 7) sorted by relevance

/external/libbrillo/brillo/streams/
Dfake_stream.cc64 auto* byte_ptr = static_cast<const uint8_t*>(data); in AddReadPacketData() local
65 AddReadPacketData(delay, brillo::Blob{byte_ptr, byte_ptr + size}); in AddReadPacketData()
112 auto* byte_ptr = static_cast<const uint8_t*>(data); in ExpectWritePacketData() local
113 ExpectWritePacketData(delay, brillo::Blob{byte_ptr, byte_ptr + size}); in ExpectWritePacketData()
295 auto byte_ptr = static_cast<const uint8_t*>(buffer); in WriteNonBlocking() local
297 byte_ptr, byte_ptr + size_to_write); in WriteNonBlocking()
/external/libxaac/decoder/
Dixheaacd_bitbuffer.c285 *it_bit_buff->byte_ptr++ = it_bit_buff->byte; in ixheaacd_write_bit()
294 UWORD8 *ptr_read_next = it_bit_buff->byte_ptr; in ixheaacd_read_bit()
302 it_bit_buff->byte_ptr += (no_of_bits >> 3); in ixheaacd_read_bit()
305 UWORD8 *v = it_bit_buff->byte_ptr; in ixheaacd_read_bit()
Dixheaacd_bitbuffer.h84 UWORD8 *byte_ptr; member
Dixheaacd_huff_code_reorder.c285 itt_bit_buff->byte_ptr = (UWORD8 *)ptr_aac_dec_channel_info->scratch_buf_ptr; in ixheaacd_huff_code_reorder_init()
744 read_word = ixheaacd_aac_showbits_32(itt_bit_buff->byte_ptr, in ixheaacd_huff_dec_pair_hcr_non_pcw()
1289 read_word = ixheaacd_aac_showbits_32(itt_bit_buff->byte_ptr, in ixheaacd_huff_dec_quad_hcr_non_pcw()
1364 read_word = ixheaacd_aac_showbits_32(itt_bit_buff->byte_ptr, in ixheaacd_huff_dec_word_hcr_non_pcw()
1367 UWORD8 *ptr_read_next = itt_bit_buff->byte_ptr; in ixheaacd_huff_dec_word_hcr_non_pcw()
1479 itt_bit_buff->byte_ptr = itt_bit_buff->ptr_start; in ixheaacd_decode_hcr_non_pcw()
1551 itt_bit_buff->byte_ptr = itt_bit_buff->ptr_start; in ixheaacd_decode_hcr_non_pcw()
/external/compiler-rt/lib/tsan/rtl/
Dtsan_interceptors_mac.cc125 char *byte_ptr = ((char *)ptr) + (n >> 3); \
128 char orig_byte = op((a8 *)byte_ptr, mask, mo); \
/external/cpuinfo/src/arm/linux/
Dchipset.c43 const uint8_t* byte_ptr = (const uint8_t*) ptr; in load_u16le()
44 return ((uint16_t) byte_ptr[1] << 8) | (uint16_t) byte_ptr[0]; in load_u16le()
52 const uint8_t* byte_ptr = (const uint8_t*) ptr; in load_u24le()
53 return ((uint32_t) byte_ptr[2] << 16) | ((uint32_t) byte_ptr[1] << 8) | (uint32_t) byte_ptr[0]; in load_u24le()
/external/pdfium/core/fxcodec/
Dprogressivedecoder.cpp503 uint8_t* byte_ptr = row_buf; in GifReadScanline() local
505 if (*byte_ptr == m_GifTransIndex) { in GifReadScanline()
506 *byte_ptr = m_GifBgIndex; in GifReadScanline()
508 byte_ptr++; in GifReadScanline()