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

  /external/libhevc/decoder/
ihevcd_bitstream.h 42 #define WORD_SIZE 32
44 * @brief Twice the WORD_SIZE
46 #define DBL_WORD_SIZE (2 * (WORD_SIZE))
49 * @brief WORD_SIZE - 1
51 #define WORD_SIZE_MINUS1 (WORD_SIZE - 1)
94 (WORD_SIZE - m_cnt); \
96 if(m_u4_bit_ofst > (WORD_SIZE - m_cnt)) \
99 (WORD_SIZE + WORD_SIZE - m_cnt \
116 m_u4_bits |= SHR(m_u4_nxt_word, (WORD_SIZE - m_u4_bit_ofst));
    [all...]
  /external/libavc/encoder/
ih264e_bitstream.c 105 ps_bitstrm->i4_bits_left_in_cw = WORD_SIZE;
131 * bitstream buffer size. Range of length[1:WORD_SIZE]
149 ASSERT(code_len > 0 && code_len <= WORD_SIZE);
151 if(code_len < WORD_SIZE)
155 ASSERT(bits_left_in_cw > 0 && bits_left_in_cw <= WORD_SIZE);
200 if((u4_strm_buf_offset + (WORD_SIZE>>3)) >= u4_max_strm_size)
209 for(i = WORD_SIZE; i > 0; i -= 8)
218 u4_cur_word = rem_bits ? (u4_code_val << (WORD_SIZE - rem_bits)) : 0;
222 ps_bitstrm->i4_bits_left_in_cw = WORD_SIZE - rem_bits;
294 if((u4_strm_buf_offset + (WORD_SIZE>>3) - bytes_left_in_cw) >
    [all...]
ih264e_bitstream.h 51 #define WORD_SIZE 32
184 for (i = WORD_SIZE; i > ps_bitstrm->i4_bits_left_in_cw; i -= 8) \
191 ps_bitstrm->i4_bits_left_in_cw = WORD_SIZE; \
226 * WORD_SIZE bits. Will be copied to stream buffer when the word is
235 * Range of this variable [1 : WORD_SIZE]
ih264e_cabac.c 325 ps_stream->i4_bits_left_in_cw = WORD_SIZE;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
bitstream_io.cpp 34 #define WORD_SIZE 4 /* for 32-bit machine */
70 #if WORD_SIZE==4
213 if (stream->byteCount + WORD_SIZE > stream->bufferSize)
215 if (PV_SUCCESS != BitstreamUseOverrunBuffer(stream, WORD_SIZE))
217 stream->byteCount += WORD_SIZE;
227 #if (WORD_SIZE == 4)
235 #if (WORD_SIZE == 4)
264 bitused = (WORD_SIZE << 3) - bitleft; /* number of bits used */
289 bitleft = (WORD_SIZE << 3) - bitleft;
293 shift = ((WORD_SIZE - 1) << 3)
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
bitstream_io.cpp 20 #define WORD_SIZE 32
63 stream->bit_left = WORD_SIZE;
89 num_bits = WORD_SIZE - stream->bit_left; /* must be multiple of 8 !!*/
131 stream->bit_left = WORD_SIZE;
153 if (nBits > WORD_SIZE) /* has to be taken care of specially */
179 stream->bit_left = WORD_SIZE - nBits;
246 //if(bitstream->bit_left<(WORD_SIZE<<3)) /* in fact, no need to check */
residual.cpp 51 #if (WORD_SIZE==32)
84 #if (WORD_SIZE==32)
117 #if (WORD_SIZE==32)
  /external/pcre/dist/sljit/
sljitNativeARM_T2_32.c 791 #define WORD_SIZE 0x00
    [all...]
sljitNativeARM_64.c 776 #define WORD_SIZE 0x300
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
StaticLayoutTest.java     [all...]
  /external/zxing/core/
core.jar 

Completed in 126 milliseconds