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

12

/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/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.cpp58 uint8_t byte[2]; local
59 if (readAt(offset, byte, 2) != 2) {
63 *x = (byte[0] << 8) | byte[1];
71 uint8_t byte[3]; local
72 if (readAt(offset, byte, 3) != 3) {
76 *x = (byte[0] << 16) | (byte[1] << 8) | byte[2];
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dbitstream_io.cpp75 /* Purpose : Save the current_word into the buffer, byte-swap, and */
85 uint8 *write_pnt, byte; local
88 /* check number of bytes in current_word, must always be byte-aligned!!!! */
99 /* write word, byte-by-byte */
105 byte = (current_word >> num_bits) & 0xFF;
108 if (byte <= 3)
115 if (byte != 0)
117 *write_pnt++ = byte;
124 *write_pnt++ = byte;
[all...]
H A Dmotion_est.cpp746 uint8 *ptr, byte; local
764 byte = ptr[4];
765 word |= (byte << 8);
766 byte = ptr[8];
767 word |= (byte << 16);
768 byte = ptr[12];
769 word |= (byte << 24);
773 byte = ptr[4];
774 word |= (byte << 8);
775 byte
[all...]
H A Dmotion_comp.cpp216 prev_pix = (pix4 << 24) & 0xFF000000; /* mask out byte belong to previous word */
236 prev_pix = (pix4 << 16) & 0xFFFF0000; /* mask out byte belong to previous word */
255 prev_pix = (pix4 << 8) & 0xFFFFFF00; /* mask out byte belong to previous word */
817 r6 = (r0 >> 8) & 0xFF00FF; /* second and fourth byte */
965 r6 = (r0 >> 8) & 0xFF00FF; /* second and fourth byte */
1324 /* It is faster to read 1 byte at time to avoid calling CreateAlign */
1341 /* It is faster to read 1 byte at a time */
1354 /* It is faster to read 1 byte at a time */
1487 /* Read 1 byte at a time is too slow, too many read and pack ops, need to call CreateAlign */
1493 r6 = (r0 >> 8) & 0xFF00FF; /* second and fourth byte */
1656 uint8 byte; local
2118 uint8 byte; local
[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/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/opt/net/wifi/service/jni/
H A Djni_helper.h85 void getByteArrayField(jobject obj, const char *name, byte* buf, int size);
H A Dcom_android_server_wifi_WifiNative.cpp554 byte b = flush ? 0xFF : 0;
647 static byte parseHexChar(char ch) {
660 static byte parseHexByte(const char * &str) {
665 byte b = parseHexChar(str[0]);
1171 helper.setByteField(LCI, "id", (byte)(0xff));
1187 helper.setByteField(LCR, "id", (byte)(0xff));
1384 return hal_fn.wifi_set_scanning_mac_oui(handle, (byte *)bytes) == WIFI_SUCCESS;
2094 "(BJB[B)V", // byte, long, byte, byte arra
[all...]
H A Dcom_android_server_wifi_nan_WifiNanNative.cpp452 memcpy(msg.service_specific_info, (byte*) messageBytes.get(), message_length);
455 memcpy(msg.addr, (byte*) destBytes.get(), 6);
H A Dwifi_hal_stub.h49 wifi_error wifi_get_cached_gscan_results_stub(wifi_interface_handle iface, byte flush,
H A Djni_helper.cpp244 void JNIHelper::getByteArrayField(jobject obj, const char *name, byte* buf, int size) {
/frameworks/opt/net/wifi/service/lib/
H A Dwifi_hal_stub.cpp86 wifi_error wifi_get_cached_gscan_results_stub(wifi_interface_handle iface, byte flush,

Completed in 340 milliseconds

12