Home
last modified time | relevance | path

Searched refs:byte (Results 1 – 25 of 68) sorted by relevance

123

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src_gcc/
DarmVCM4P10_DequantTables_s.S24 .byte 0, 2, 0, 2
25 .byte 2, 1, 2, 1
26 .byte 0, 2, 0, 2
27 .byte 2, 1, 2, 1
30 .byte 0, 2
31 .byte 2, 1
34 .byte 10, 16, 13
35 .byte 11, 18, 14
36 .byte 13, 20, 16
37 .byte 14, 23, 18
[all …]
DarmVCM4P10_QuantTables_s.S57 .byte 16, 16, 16, 16, 16, 16
58 .byte 17, 17, 17, 17, 17, 17
59 .byte 18, 18, 18, 18, 18, 18
60 .byte 19, 19, 19, 19, 19, 19
61 .byte 20, 20, 20, 20, 20, 20
62 .byte 21, 21, 21, 21, 21, 21
63 .byte 22, 22, 22, 22, 22, 22
64 .byte 23, 23, 23, 23, 23, 23
65 .byte 24, 24, 24, 24, 24, 24
/frameworks/compile/mclinker/lib/Support/
DLEB128.cpp20 ByteType byte = pValue & 0x7f; in encode() local
23 byte |= 0x80; in encode()
24 *pBuf++ = byte; in encode()
72 ByteType byte = pValue & 0x7f; in encode() local
75 if (((pValue == 0) && ((byte & 0x40) == 0)) || in encode()
76 ((pValue == -1) && ((byte & 0x40) == 0x40))) in encode()
79 byte |= 0x80; in encode()
81 *pBuf++ = byte; in encode()
122 ByteType byte; in decode() local
128 byte = *pBuf; in decode()
[all …]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
Dh264bsd_byte_stream.c89 u8 byte; in h264bsdExtractNalUnit() local
112 byte = *readPtr++; in h264bsdExtractNalUnit()
122 if (!byte) in h264bsdExtractNalUnit()
124 else if ((byte == 0x01) && (zeroCount >= 2)) in h264bsdExtractNalUnit()
138 byte = *readPtr++; in h264bsdExtractNalUnit()
140 if (!byte) in h264bsdExtractNalUnit()
143 if ( (byte == 0x03) && (zeroCount == 2) ) in h264bsdExtractNalUnit()
148 if ( (byte == 0x01) && (zeroCount >= 2 ) ) in h264bsdExtractNalUnit()
155 else if (byte) in h264bsdExtractNalUnit()
DDecTestBench.c493 u8 byte; in NextPacket() local
510 byte = stream[index++]; in NextPacket()
511 } while (byte != 1 && index < maxIndex); in NextPacket()
534 byte = stream[index++]; in NextPacket()
535 if (!byte) in NextPacket()
538 if ( (byte == 0x01) && (zeroCount >= 2) ) in NextPacket()
556 else if (byte) in NextPacket()
Dh264bsd_stream.c142 u32 byte = (u32)pStrm[4]; in h264bsdShowBits32() local
145 out |= byte>>tmp; in h264bsdShowBits32()
/frameworks/av/media/libstagefright/
DDataSource.cpp51 uint8_t byte[2]; in getUInt16() local
52 if (readAt(offset, byte, 2) != 2) { in getUInt16()
56 *x = (byte[0] << 8) | byte[1]; in getUInt16()
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
Dbitstream_io.cpp85 uint8 *write_pnt, byte; in AVCBitstreamSaveWord() local
105 byte = (current_word >> num_bits) & 0xFF; in AVCBitstreamSaveWord()
106 if (byte != 0) in AVCBitstreamSaveWord()
108 *write_pnt++ = byte; in AVCBitstreamSaveWord()
115 *write_pnt++ = byte; in AVCBitstreamSaveWord()
Dmotion_est.cpp746 uint8 *ptr, byte; in HTFMPrepareCurMB_AVC() local
764 byte = ptr[4]; in HTFMPrepareCurMB_AVC()
765 word |= (byte << 8); in HTFMPrepareCurMB_AVC()
766 byte = ptr[8]; in HTFMPrepareCurMB_AVC()
767 word |= (byte << 16); in HTFMPrepareCurMB_AVC()
768 byte = ptr[12]; in HTFMPrepareCurMB_AVC()
769 word |= (byte << 24); in HTFMPrepareCurMB_AVC()
773 byte = ptr[4]; in HTFMPrepareCurMB_AVC()
774 word |= (byte << 8); in HTFMPrepareCurMB_AVC()
775 byte = ptr[8]; in HTFMPrepareCurMB_AVC()
[all …]
Dmotion_comp.cpp1660 uint8 byte; in eFullPelMC() local
1669 byte = *in++; in eFullPelMC()
1670 temp |= (byte << 8); in eFullPelMC()
1671 byte = *in++; in eFullPelMC()
1672 temp |= (byte << 16); in eFullPelMC()
1673 byte = *in++; in eFullPelMC()
1674 temp |= (byte << 24); in eFullPelMC()
2122 uint8 byte; in eChromaFullMC_SIMD() local
2131 byte = *pRef++; in eChromaFullMC_SIMD()
2132 temp |= (byte << 8); in eChromaFullMC_SIMD()
/frameworks/compile/libbcc/runtime/lib/
Dgcc_personality_v0.c89 unsigned char byte; in readULEB128() local
92 byte = *p++; in readULEB128()
93 result |= (byte & 0x7f) << shift; in readULEB128()
95 } while (byte & 0x80); in readULEB128()
/frameworks/compile/libbcc/bcinfo/Wrap/
Dfile_wrapper_output.cpp34 bool FileWrapperOutput::Write(uint8_t byte) { in Write() argument
35 return EOF != fputc(byte, _file); in Write()
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
Dbitstream_io.cpp583 UChar *ptr, byte; in BitstreamRepos() local
595 byte = *ptr++; in BitstreamRepos()
596 word = byte | (word << 8); in BitstreamRepos()
598 byte = *ptr++; in BitstreamRepos()
599 word = byte | (word << 8); in BitstreamRepos()
600 byte = *ptr++; in BitstreamRepos()
601 word = byte | (word << 8); in BitstreamRepos()
683 UChar *pSrc, *pDst, byte; in BitstreamPrependPacket() local
716 byte = (bitstream2->word) << leftover; in BitstreamPrependPacket()
718 *pDst++ = byte | (pSrc[0] >> bitused); in BitstreamPrependPacket()
Dmotion_est.cpp678 UChar *ptr, byte; in HTFMPrepareCurMB() local
697 byte = ptr[4]; in HTFMPrepareCurMB()
698 word |= (byte << 8); in HTFMPrepareCurMB()
699 byte = ptr[8]; in HTFMPrepareCurMB()
700 word |= (byte << 16); in HTFMPrepareCurMB()
701 byte = ptr[12]; in HTFMPrepareCurMB()
702 word |= (byte << 24); in HTFMPrepareCurMB()
706 byte = ptr[4]; in HTFMPrepareCurMB()
707 word |= (byte << 8); in HTFMPrepareCurMB()
708 byte = ptr[8]; in HTFMPrepareCurMB()
[all …]
/frameworks/compile/linkloader/include/
DELFTypes.h124 typedef unsigned char byte;
145 typedef unsigned char byte;
186 typedef typename ELFPrimitiveTypes<BITWIDTH>::byte byte_t; \
204 typedef ELFPrimitiveTypes<BITWIDTH>::byte byte_t; \
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
DomxVCM4P2_PredictReconCoefIntra_s.s28 ; * block; must be aligned on a 4-byte boundary. The
32 ; * on a 4-byte boundary.
34 ; * aligned on a 4-byte boundary.
60 ; * 4-byte aligned.
DomxVCM4P2_DecodePadMV_PVOP_s.s24 ; * [in] ppBitStream pointer to the pointer to the current byte in
26 ; * [in] pBitOffset pointer to the bit position in the byte pointed
45 ; * so that it points to the current byte in the bit
48 ; * current bit position in the byte pointed by
/frameworks/compile/libbcc/include/bcinfo/Wrap/
Dwrapper_output.h37 virtual bool Write(uint8_t byte) = 0;
Dfile_wrapper_output.h33 virtual bool Write(uint8_t byte);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
DomxVCM4P2_DecodePadMV_PVOP_s.s24 ; * [in] ppBitStream pointer to the pointer to the current byte in
26 ; * [in] pBitOffset pointer to the bit position in the byte pointed
45 ; * so that it points to the current byte in the bit
48 ; * current bit position in the byte pointed by
DomxVCM4P2_PredictReconCoefIntra_s.s28 ; * block; must be aligned on a 4-byte boundary. The
32 ; * on a 4-byte boundary.
34 ; * aligned on a 4-byte boundary.
60 ; * 4-byte aligned.
/frameworks/base/docs/html/training/graphics/opengl/
Dshapes.jd69 // initialize vertex byte buffer for shape coordinates
73 // use the device hardware's native byte order
130 // initialize vertex byte buffer for shape coordinates
139 // initialize byte buffer for the draw list
/frameworks/base/docs/html/tools/help/
Dzipalign.jd11 to be aligned on 4-byte boundaries. This
54 <p>The {@code &lt;alignment>} is an integer that defines the byte-alignment boundaries.
/frameworks/base/docs/html/guide/topics/connectivity/nfc/
Dnfc.jd526 new byte[0], new byte[0]);
549 new byte[0], "Beam me up, Android!".getBytes(Charset.forName("US-ASCII")));
568 byte[] langBytes = locale.getLanguage().getBytes(Charset.forName("US-ASCII"));
570 byte[] textBytes = payload.getBytes(utfEncoding);
573 byte[] data = new byte[1 + langBytes.length + textBytes.length];
574 data[0] = (byte) status;
578 NdefRecord.RTD_TEXT, new byte[0], data);
599 byte[] uriField = "example.com".getBytes(Charset.forName("US-ASCII"));
600 byte[] payload = new byte[uriField.length + 1]; //add 1 for the URI Prefix
601 byte payload[0] = 0x01; //prefixes http://www. to the URI
[all …]
/frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
Dmime_io.tab28 /* size of packed frame for each mode, excluding TOC byte */

123