Searched refs:byte (Results 1 - 20 of 20) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src_gcc/
H A 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 1
[all...]
H A 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/
H A DLEB128.cpp20 ByteType byte = pValue & 0x7f; local
23 byte |= 0x80;
24 *pBuf++ = byte;
72 ByteType byte = pValue & 0x7f; local
75 if (((pValue == 0) && ((byte & 0x40) == 0)) ||
76 ((pValue == -1) && ((byte & 0x40) == 0x40)))
79 byte |= 0x80;
81 *pBuf++ = byte;
118 ByteType byte; local
120 // Start the read from the 4th byte
137 ByteType byte; local
186 ByteType byte; local
207 ByteType byte; local
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_byte_stream.c56 Extracts one NAL unit from the byte stream buffer. Removes
62 and nothing else, or one or more NAL units embedded in byte
67 pByteStream pointer to byte stream buffer
76 HANTRO_NOK error in byte stream
89 u8 byte; local
101 /* byte stream format if starts with 0x000001 or 0x000000 */
112 byte = *readPtr++;
122 if (!byte)
124 else if ((byte == 0x01) && (zeroCount >= 2))
138 byte
[all...]
H A Dh264bsd_stream.c142 u32 byte = (u32)pStrm[4]; local
145 out |= byte>>tmp;
215 Check if current stream position is byte aligned.
224 TRUE stream is byte aligned
225 FALSE stream is not byte aligned
H A DDecTestBench.c493 u8 byte; local
510 byte = stream[index++];
511 } while (byte != 1 && index < maxIndex);
534 byte = stream[index++];
535 if (!byte)
538 if ( (byte == 0x01) && (zeroCount >= 2) )
556 else if (byte)
/frameworks/compile/libbcc/bcinfo/Wrap/
H A Dfile_wrapper_output.cpp34 bool FileWrapperOutput::Write(uint8_t byte) { argument
35 return EOF != fputc(byte, _file);
/frameworks/compile/libbcc/bcinfo/include/bcinfo/Wrap/
H A Dfile_wrapper_output.h32 // Writes a single byte, returning false if unable to write.
33 virtual bool Write(uint8_t byte);
H A Dwrapper_output.h36 // Writes a single byte, returning false if unable to write.
37 virtual bool Write(uint8_t byte) = 0;
/frameworks/av/media/libstagefright/
H A DDataSource.cpp46 uint8_t byte[2]; local
47 if (readAt(offset, byte, 2) != 2) {
51 *x = (byte[0] << 8) | byte[1];
59 uint8_t byte[3]; local
60 if (readAt(offset, byte, 3) != 3) {
64 *x = (byte[0] << 16) | (byte[1] << 8) | byte[2];
H A DMPEG4Writer.cpp159 // @arg value must be in network byte order
177 // @arg value the retrieved value at the position in network byte order.
214 // @arg value must be in network byte order.
2163 static void getNalUnitType(uint8_t byte, uint8_t* type) { argument
2164 ALOGV("getNalUnitType: %d", byte);
2167 *type = (byte & 0x1F);
3368 // Make sure all sizes encode to a single byte.
3410 // Make sure all sizes encode to a single byte.
3530 // Removing "r" for the name string just makes the string 4 byte aligned
3660 duration = htonl(duration); // Back to host byte orde
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dbitstream_io.cpp37 1. There is a problem when output the last bits(which can not form a byte yet
38 so when you output, you need to stuff to make sure it is a byte
39 2. I now hard coded byte to be 8 bits*/
265 numbyte = bitused >> 3; /* number of byte fully used */
303 // *ptr = (UChar)((word>>shift)&0xFF); /* need to do it for the last fractional byte */
360 /* Question: in MPEG-4 , short_video_header[0]==0 => even already byte aligned, will still stuff 8 bits
437 if (!offset) /* bitstream1 is byte-aligned */
444 /* since bitstream1 doesn't have to be byte-aligned, we have to process byte by byte */
583 UChar *ptr, byte; local
683 UChar *pSrc, *pDst, byte; local
[all...]
H A Dmotion_est.cpp678 UChar *ptr, byte; local
697 byte = ptr[4];
698 word |= (byte << 8);
699 byte = ptr[8];
700 word |= (byte << 16);
701 byte = ptr[12];
702 word |= (byte << 24);
706 byte = ptr[4];
707 word |= (byte << 8);
708 byte
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A 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.
H A 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/base/tools/bit/
H A Dadb.cpp90 uint8_t byte; local
91 ssize_t amt = read(fd, &byte, 1);
98 result |= uint64_t(byte & 0x7F) << bits;
99 if ((byte & 0x80) == 0) {
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A 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
H A 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/native/libs/vr/libpdx/private/pdx/rpc/
H A Dserialization.h450 // SerializeRaw() converts a primitive array or type into a raw byte string.
461 // Serializes a primitive array into a raw byte string.
493 // Encoding byte contains the fixext length, nothing else to do.
534 // Encoding byte contains the fixstr length, nothing else to do.
586 // Encoding byte contains the fixarray length, nothing else to do.
601 // Encoding byte contains the fixmap length, nothing else to do.
699 // Encoding byte contains the value, nothing else to do.
710 // Encoding byte contains the value, nothing else to do.
721 // Encoding byte contains the value, nothing else to do.
730 const int8_t byte
[all...]
/frameworks/opt/net/wifi/libwifi_hal/
H A Dhal_tool.cpp97 byte flush, int max,

Completed in 7115 milliseconds