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

  /external/lzma/C/
BraIA64.c 24 UInt32 bitPos = 5;
26 for (slot = 0; slot < 3; slot++, bitPos += 41)
33 bytePos = (bitPos >> 3);
34 bitRes = bitPos & 0x7;
  /hardware/qcom/media/mm-video-legacy/vidc/vdec/src/
mp4_utils.cpp 62 uint32 value = (bitBuf >> (32 - posPtr->bitPos - size)) & MASK(size);
65 posPtr->bitPos += size;
67 while (posPtr->bitPos >= 8) {
68 posPtr->bitPos -= 8;
93 m_posInfo.bitPos = 0;
103 m_posInfo.bitPos = 0;
112 m_posInfo.bitPos = 0;
121 m_posInfo.bitPos = 0;
132 m_posInfo.bitPos = 0;
159 m_posInfo.bitPos = 0
    [all...]
  /hardware/qcom/media/mm-video-v4l2/vidc/vdec/src/
mp4_utils.cpp 63 uint32 value = (bitBuf >> (32 - posPtr->bitPos - size)) & MASK(size);
66 posPtr->bitPos += size;
68 while (posPtr->bitPos >= 8) {
69 posPtr->bitPos -= 8;
98 m_posInfo.bitPos = 0;
109 m_posInfo.bitPos = 0;
119 m_posInfo.bitPos = 0;
129 m_posInfo.bitPos = 0;
141 m_posInfo.bitPos = 0;
171 m_posInfo.bitPos = 0
    [all...]
  /frameworks/av/libvideoeditor/vss/common/inc/
M4_BitStreamParser.h 80 M4OSA_UInt32 M4_BitStreamParser_GetBits(void* pContext,M4OSA_Int32 bitPos, M4OSA_Int32 length);
  /hardware/ti/omap3/omx/ti_omx_config_parser/src/
ti_m4v_config_parser.cpp 109 psBits.bitPos = 32;
631 uint32 bitPos = pStream->bitPos;
636 if (ucNBits > (32 - bitPos)) /* not enough bits */
639 bitPos = dataBitPos & 7; /* update bit position */
655 pStream->bitPos = bitPos;
658 bitPos += ucNBits;
660 *pulOutData = (pStream->bitBuf >> (32 - bitPos)) & mask[(uint16)ucNBits];
673 uint32 bitPos = pStream->bitPos
    [all...]
ti_video_config_parser.cpp 80 psBits.bitPos = 32;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_target.cpp 383 relocInfo->entry[n].bitPos = s;
403 value = (bitPos < 0) ? (value >> -bitPos) : (value << bitPos);
nv50_ir_target.h 44 int8_t bitPos;
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_target.cpp 383 relocInfo->entry[n].bitPos = s;
403 value = (bitPos < 0) ? (value >> -bitPos) : (value << bitPos);
nv50_ir_target.h 44 int8_t bitPos;
  /hardware/qcom/media/mm-video-legacy/vidc/vdec/inc/
mp4_utils.h 156 uint8 bitPos;
  /hardware/qcom/media/mm-video-v4l2/vidc/vdec/inc/
mp4_utils.h 153 uint8 bitPos;
  /hardware/ti/omap3/omx/ti_omx_config_parser/inc/
ti_m4v_config_parser.h 68 uint32 bitPos;
  /frameworks/av/libvideoeditor/vss/mcs/inc/
M4MCS_InternalTypes.h 153 M4OSA_UInt32 bitPos;
284 M4OSA_UInt32 bitPos; /*!< bit position in buffer */
  /frameworks/av/libvideoeditor/vss/mcs/src/
M4MCS_API.c 221 p_bs->bitPos += numBits;
231 if( bcnt < (int)(p_bs->numBitsInBuffer - p_bs->bitPos) )
240 /* EPB byte found: skip it and update bitPos accordingly */
242 p_bs->bitPos += 8;
255 if( p_bs->bitPos <= p_bs->numBitsInBuffer )
273 p_bs->bitPos += numBits;
283 if( bcnt < (p_bs->numBitsInBuffer - p_bs->bitPos) )
289 { /* JC: EPB byte found: skip it and update bitPos accordingly */
291 p_bs->bitPos += 8;
392 p_bs->bitPos = 0
    [all...]
  /external/aac/libSBRenc/src/
bit_sbr.cpp 265 INT bitPos = FDKgetValidBits(&cmonData->sbrBitbuf);
275 FDKpushBack(&cmonData->sbrBitbuf, (FDKgetValidBits(&cmonData->sbrBitbuf) - bitPos) );
    [all...]
  /external/llvm/lib/Support/
APFloat.cpp     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelDAGToDAG.cpp 118 int32_t bitPos;
119 bitPos = Log2_32(Imm);
120 assert(bitPos >= 0 && bitPos < 32 &&
121 "Constant out of range for 32 BitPos Memops");
122 return CurDAG->getTargetConstant(bitPos, MVT::i32);
    [all...]
  /frameworks/av/libvideoeditor/vss/stagefrightshells/src/
VideoEditor3gpReader.cpp 232 void* pContext,M4OSA_Int32 bitPos, M4OSA_Int32 bitLength) {
243 bitLocation=bitPos/32;
244 bitIndex=(bitPos) % 32;
    [all...]

Completed in 931 milliseconds