/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src_gcc/ |
D | armVCM4P10_DequantTables_s.S | 46 .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 …]
|
D | armVCM4P10_QuantTables_s.S | 71 .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/ |
D | LEB128.cpp | 20 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/ |
D | UsimDataDownloadTest.java.broken | 80 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/ |
D | h264bsd_byte_stream.c | 89 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()
|
D | DecTestBench.c | 493 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()
|
D | h264bsd_stream.c | 142 u32 byte = (u32)pStrm[4]; in h264bsdShowBits32() local 145 out |= byte>>tmp; in h264bsdShowBits32()
|
/frameworks/av/media/libstagefright/ |
D | DataSource.cpp | 58 uint8_t byte[2]; in getUInt16() local 59 if (readAt(offset, byte, 2) != 2) { in getUInt16() 63 *x = (byte[0] << 8) | byte[1]; in getUInt16() 71 uint8_t byte[3]; in getUInt24() local 72 if (readAt(offset, byte, 3) != 3) { in getUInt24() 76 *x = (byte[0] << 16) | (byte[1] << 8) | byte[2]; in getUInt24()
|
/frameworks/av/media/libstagefright/codecs/avc/enc/src/ |
D | bitstream_io.cpp | 85 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()
|
D | motion_est.cpp | 746 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/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
D | bitstream_io.cpp | 583 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()
|
D | motion_est.cpp | 678 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/libbcc/bcinfo/Wrap/ |
D | file_wrapper_output.cpp | 34 bool FileWrapperOutput::Write(uint8_t byte) { in Write() argument 35 return EOF != fputc(byte, _file); in Write()
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/ |
D | omxVCM4P2_PredictReconCoefIntra_s.s | 42 ; * 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.
|
D | omxVCM4P2_DecodePadMV_PVOP_s.s | 38 ; * [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/minikin/doc/ |
D | hyb_file_format.md | 40 into the string pool); and second, the string pool. Each pattern is encoded as a byte 41 (packing 2 per byte would be possible but the space savings would not be signficant). 78 In general, pad bytes follow this table, aligning the next table to a 4-byte boundary. 126 points to the first byte of pattern_buf.
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/ |
D | omxVCM4P2_PredictReconCoefIntra_s.s | 42 ; * 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.
|
D | omxVCM4P2_DecodePadMV_PVOP_s.s | 38 ; * [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/ |
D | wrapper_output.h | 37 virtual bool Write(uint8_t byte) = 0;
|
D | file_wrapper_output.h | 33 virtual bool Write(uint8_t byte);
|
/frameworks/support/v8/renderscript/api/ |
D | current.txt | 7 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[]); 110 ctor public Byte2(byte, byte); [all …]
|
D | 23.0.0.txt | 7 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 …]
|
D | 23.1.0.txt | 7 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 …]
|
D | 23.1.1.txt | 7 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/base/docs/html/training/graphics/opengl/ |
D | shapes.jd | 69 // 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
|