HomeSort by relevance Sort by last modified time
    Searched refs:byte_ptr (Results 1 - 6 of 6) sorted by null

  /hardware/qcom/media/mm-video-legacy/vidc/common/src/
extra_data_handler.cpp 53 DEBUG_PRINT_LOW("\nIn %s() bit_ptr/byte_ptr :%d/%d/%x", __func__, bit_ptr,
54 byte_ptr, rbsp_buf[byte_ptr]);
57 bins |= ((rbsp_buf[byte_ptr] << shift) & 0xFF) >> shift;
60 byte_ptr ++;
62 DEBUG_PRINT_LOW("\nIn %s() bit_ptr/byte_ptr :%d/%d/%x", __func__, bit_ptr,
63 byte_ptr, rbsp_buf[byte_ptr]);
67 bins |= ((rbsp_buf[byte_ptr] << (8-bit_ptr)) & 0xFF) >> (8-rem_bits);
71 byte_ptr++
    [all...]
  /hardware/qcom/media/mm-video-v4l2/vidc/common/src/
extra_data_handler.cpp 53 DEBUG_PRINT_LOW("In %s() bit_ptr/byte_ptr :%u/%u/%x", __func__, (unsigned int)bit_ptr,
54 (unsigned int)byte_ptr, rbsp_buf[byte_ptr]);
57 bins |= ((rbsp_buf[byte_ptr] << shift) & 0xFF) >> shift;
60 byte_ptr ++;
63 DEBUG_PRINT_LOW("In %s() bit_ptr/byte_ptr :%u/%u/%x", __func__, (unsigned int)bit_ptr,
64 (unsigned int)byte_ptr, rbsp_buf[byte_ptr]);
68 bins |= ((rbsp_buf[byte_ptr] << (8-bit_ptr)) & 0xFF) >> (8-rem_bits);
73 byte_ptr++
    [all...]
  /hardware/qcom/media/mm-video-v4l2/vidc/common/inc/
extra_data_handler.h 67 OMX_U32 byte_ptr; member in class:extra_data_handler
  /hardware/qcom/media/mm-video-legacy/vidc/common/inc/
extra_data_handler.h 86 OMX_U32 byte_ptr; member in class:extra_data_handler
  /art/runtime/gc/space/
space.h 289 const byte* byte_ptr = reinterpret_cast<const byte*>(obj); local
290 return byte_ptr >= Begin() && byte_ptr < Limit();
  /hardware/qcom/media/mm-video-v4l2/vidc/vdec/test/
omx_vdec_test.cpp 213 char *byte_ptr = buf; local
222 crc_16 = crc_16_l_table[ (crc_16 ^ *byte_ptr) & 0x00ff ] ^ (crc_16 >> 8);
224 byte_ptr++;
227 byte_ptr = buf + (scan_lines * stride);
231 crc_16 = crc_16_l_table[ (crc_16 ^ *byte_ptr) & 0x00ff ] ^ (crc_16 >> 8);
233 byte_ptr++;
    [all...]

Completed in 934 milliseconds