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

  /external/webkit/Source/WebCore/platform/text/
SuffixTree.h 36 static int codeWord(UChar c) { return c; }
42 static int codeWord(UChar c) { return c & (codeSize - 1); }
61 current = current->at(Codebook::codeWord(query[i]));
87 Node*& at(int codeWord) { return m_children.at(codeWord); }
103 Node*& child = current->at(Codebook::codeWord(text[base + offset]));
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
armCOMM_Bitstream.c 196 if (pCodeBook->codeWord == (Value >> (32 - pCodeBook->codeLen)))
231 * [in] codeWord Code word that need to be inserted in to the
250 OMX_U32 codeWord,
265 codeWord = codeWord << (32-codeLength);
267 Value = Value | (codeWord >> (24+Offset));
273 codeWord = codeWord << (8-Offset);
276 Value = codeWord >> 24;
326 return (armPackBits(ppBitStream, pBitOffset, code.codeWord, code.codeLen))
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/src/
armCOMM_Bitstream.c 196 if (pCodeBook->codeWord == (Value >> (32 - pCodeBook->codeLen)))
231 * [in] codeWord Code word that need to be inserted in to the
250 OMX_U32 codeWord,
265 codeWord = codeWord << (32-codeLength);
267 Value = Value | (codeWord >> (24+Offset));
273 codeWord = codeWord << (8-Offset);
276 Value = codeWord >> 24;
326 return (armPackBits(ppBitStream, pBitOffset, code.codeWord, code.codeLen))
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/src/
armCOMM_Bitstream.c 196 if (pCodeBook->codeWord == (Value >> (32 - pCodeBook->codeLen)))
231 * [in] codeWord Code word that need to be inserted in to the
250 OMX_U32 codeWord,
265 codeWord = codeWord << (32-codeLength);
267 Value = Value | (codeWord >> (24+Offset));
273 codeWord = codeWord << (8-Offset);
276 Value = codeWord >> 24;
326 return (armPackBits(ppBitStream, pBitOffset, code.codeWord, code.codeLen))
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
armCOMM_Bitstream.h 24 OMX_U32 codeWord;
148 * [in] codeWord Code word that need to be inserted in to the
167 OMX_U32 codeWord,
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/
armCOMM_Bitstream.h 24 OMX_U32 codeWord;
148 * [in] codeWord Code word that need to be inserted in to the
167 OMX_U32 codeWord,
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/api/
armCOMM_Bitstream.h 24 OMX_U32 codeWord;
148 * [in] codeWord Code word that need to be inserted in to the
167 OMX_U32 codeWord,
  /external/aac/libAACenc/src/
bit_cnt.cpp 783 INT codeWord,codeLength;
796 codeWord = FDKaacEnc_huff_ctab1[t0][t1][t2][t3];
798 FDKwriteBits(hBitstream,codeWord,codeLength);
808 codeWord = FDKaacEnc_huff_ctab2[t0][t1][t2][t3];
810 FDKwriteBits(hBitstream,codeWord,codeLength);
855 codeWord = FDKaacEnc_huff_ctab3[t0][t1][t2][t3];
857 FDKwriteBits(hBitstream,codeWord,codeLength);
902 codeWord = FDKaacEnc_huff_ctab4[t0][t1][t2][t3];
904 FDKwriteBits(hBitstream,codeWord,codeLength);
913 codeWord = FDKaacEnc_huff_ctab5[t0][t1]
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
bit_cnt.c 499 UWord16 codeWord, codeLength;
513 codeWord = huff_ctab1[t0+1][t1+1][t2+1][t3+1];
515 WriteBits(hBitstream, codeWord, codeLength);
525 codeWord = huff_ctab2[t0+1][t1+1][t2+1][t3+1];
527 WriteBits(hBitstream,codeWord,codeLength);
579 codeWord = huff_ctab3[t0][t1][t2][t3];
581 WriteBits(hBitstream,codeWord,codeLength);
633 codeWord = huff_ctab4[t0][t1][t2][t3];
635 WriteBits(hBitstream,codeWord,codeLength);
644 codeWord = huff_ctab5[t0+4][t1+4]
    [all...]

Completed in 251 milliseconds