Home
last modified time | relevance | path

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

12345

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src_gcc/
DarmVCM4P10_DequantTables_s.S46 .byte 0, 2, 0, 2
47 .byte 2, 1, 2, 1
48 .byte 0, 2, 0, 2
49 .byte 2, 1, 2, 1
52 .byte 0, 2
53 .byte 2, 1
56 .byte 10, 16, 13
57 .byte 11, 18, 14
58 .byte 13, 20, 16
59 .byte 14, 23, 18
[all …]
DarmVCM4P10_QuantTables_s.S71 .byte 16, 16, 16, 16, 16, 16
72 .byte 17, 17, 17, 17, 17, 17
73 .byte 18, 18, 18, 18, 18, 18
74 .byte 19, 19, 19, 19, 19, 19
75 .byte 20, 20, 20, 20, 20, 20
76 .byte 21, 21, 21, 21, 21, 21
77 .byte 22, 22, 22, 22, 22, 22
78 .byte 23, 23, 23, 23, 23, 23
79 .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()
118 ByteType byte; in decode() local
124 byte = *pBuf; in decode()
[all …]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
DUsimDataDownloadTest.java.broken80 private static final byte[] SMS_PP_MESSAGE_3_1_1 = {
82 0x09, (byte) 0x91, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, (byte) 0xf8,
84 0x04, 0x04, (byte) 0x91, 0x21, 0x43, 0x7f, 0x16, (byte) 0x89, 0x10, 0x10, 0x00, 0x00,
94 private static final byte[] SMS_PP_MESSAGE_3_1_5 = {
96 0x09, (byte) 0x91, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, (byte) 0xf8,
98 0x44, 0x04, (byte) 0x91, 0x21, 0x43, 0x7f, (byte) 0xf6, (byte) 0x89, 0x10, 0x10, 0x00,
100 0x00, 0x00, (byte) 0xbf, (byte) 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
101 (byte) 0xdc, (byte) 0xdc, (byte) 0xdc, (byte) 0xdc, (byte) 0xdc, (byte) 0xdc,
102 (byte) 0xdc, (byte) 0xdc, (byte) 0xdc, (byte) 0xdc
/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.cpp56 uint8_t byte[2]; in getUInt16() local
57 if (readAt(offset, byte, 2) != 2) { in getUInt16()
61 *x = (byte[0] << 8) | byte[1]; in getUInt16()
69 uint8_t byte[3]; in getUInt24() local
70 if (readAt(offset, byte, 3) != 3) { in getUInt24()
74 *x = (byte[0] << 16) | (byte[1] << 8) | byte[2]; in getUInt24()
/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()
108 if (byte <= 3) in AVCBitstreamSaveWord()
115 if (byte != 0) in AVCBitstreamSaveWord()
117 *write_pnt++ = byte; in AVCBitstreamSaveWord()
124 *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 …]
/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/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
DomxVCM4P2_PredictReconCoefIntra_s.s42 ; * block; must be aligned on a 4-byte boundary. The
46 ; * on a 4-byte boundary.
48 ; * aligned on a 4-byte boundary.
74 ; * 4-byte aligned.
DomxVCM4P2_DecodePadMV_PVOP_s.s38 ; * [in] ppBitStream pointer to the pointer to the current byte in
40 ; * [in] pBitOffset pointer to the bit position in the byte pointed
59 ; * so that it points to the current byte in the bit
62 ; * 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.s38 ; * [in] ppBitStream pointer to the pointer to the current byte in
40 ; * [in] pBitOffset pointer to the bit position in the byte pointed
59 ; * so that it points to the current byte in the bit
62 ; * current bit position in the byte pointed by
DomxVCM4P2_PredictReconCoefIntra_s.s42 ; * block; must be aligned on a 4-byte boundary. The
46 ; * on a 4-byte boundary.
48 ; * aligned on a 4-byte boundary.
74 ; * 4-byte aligned.
/frameworks/support/v8/renderscript/api/
D23.txt7 method public void copy1DRangeFrom(int, int, byte[]);
13 method public void copy1DRangeFromUnchecked(int, int, byte[]);
18 method public void copy1DRangeTo(int, int, byte[]);
23 method public void copy1DRangeToUnchecked(int, int, byte[]);
26 method public void copy2DRangeFrom(int, int, int, int, byte[]);
33 method public void copy2DRangeTo(int, int, int, int, byte[]);
43 method public void copyFrom(byte[]);
50 method public void copyFromUnchecked(byte[]);
54 method public void copyTo(byte[]);
108 ctor public Byte2(byte, byte);
[all …]
Dcurrent.txt7 method public void copy1DRangeFrom(int, int, byte[]);
13 method public void copy1DRangeFromUnchecked(int, int, byte[]);
18 method public void copy1DRangeTo(int, int, byte[]);
23 method public void copy1DRangeToUnchecked(int, int, byte[]);
26 method public void copy2DRangeFrom(int, int, int, int, byte[]);
33 method public void copy2DRangeTo(int, int, int, int, byte[]);
43 method public void copyFrom(byte[]);
50 method public void copyFromUnchecked(byte[]);
54 method public void copyTo(byte[]);
108 ctor public Byte2(byte, byte);
[all …]
/frameworks/data-binding/compilerCommon/src/main/grammar-gen/android/databinding/parser/
DBindingExpressionLexer.tokens94 'byte'=38
DBindingExpression.tokens94 'byte'=38
/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
131 // initialize vertex byte buffer for shape coordinates
140 // 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.

12345