Home
last modified time | relevance | path

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

1234

/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/base/media/lib/signer/api/
Dcurrent.txt6 …aDrmSigner.Certificate provideCertificateResponse(android.media.MediaDrm, byte[]) throws android.m…
7 method public static byte[] signRSA(android.media.MediaDrm, byte[], String, byte[], byte[]);
12 method public byte[] getContent();
13 method public byte[] getWrappedPrivateKey();
17 method public byte[] getData();
/frameworks/av/media/libstagefright/
DDataSourceBase.cpp29 uint8_t byte[2]; in getUInt16() local
30 if (readAt(offset, byte, 2) != 2) { in getUInt16()
34 *x = (byte[0] << 8) | byte[1]; in getUInt16()
42 uint8_t byte[3]; in getUInt24() local
43 if (readAt(offset, byte, 3) != 3) { in getUInt24()
47 *x = (byte[0] << 16) | (byte[1] << 8) | byte[2]; in getUInt24()
/frameworks/av/drm/mediadrm/plugins/clearkey/common/
DUtils.cpp37 char byte = in_buffer[i]; in ByteArrayToHexString() local
38 out_buffer[(i * 2)] = kHexChars[(byte >> 4) & 0xf]; in ByteArrayToHexString()
39 out_buffer[(i * 2) + 1] = kHexChars[byte & 0xf]; in ByteArrayToHexString()
/frameworks/base/libs/protoutil/src/
DProtoFileReader.cpp115 uint8_t byte = next(); in readRawVarint() local
116 val |= (INT64_C(0x7F) & byte) << shift; in readRawVarint()
117 if ((byte & 0x80) == 0) break; in readRawVarint()
DEncodedBuffer.cpp289 uint8_t byte = readRawByte(); in readRawVarint() local
290 val |= (UINT64_C(0x7F) & byte) << shift; in readRawVarint()
291 if ((byte & 0x80) == 0) break; in readRawVarint()
403 uint8_t byte = next(); in readRawVarint() local
404 val |= (INT64_C(0x7F) & byte) << shift; in readRawVarint()
405 if ((byte & 0x80) == 0) break; in readRawVarint()
/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/include/media/
DMediaExtractorPluginHelper.h331 uint8_t byte[2]; in getUInt16() local
332 if (readAt(offset, byte, 2) != 2) { in getUInt16()
336 *x = (byte[0] << 8) | byte[1]; in getUInt16()
345 uint8_t byte[3]; in getUInt24() local
346 if (readAt(offset, byte, 3) != 3) { in getUInt24()
350 *x = (byte[0] << 16) | (byte[1] << 8) | byte[2]; in getUInt24()
/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/base/nfc-extras/api/
Dcurrent.txt35 method public void authenticate(byte[]);
56 method public byte[] transceive(byte[]) throws java.io.IOException;
/frameworks/base/tools/processors/view_inspector/test/resources/android/processor/view/inspector/InspectionCompanionGeneratorTest/
DSimpleProperties.java.txt27 * Property ID of {@code byte}.
84 mByteId = propertyMapper.mapByte("byte", R.attr.byte);
/frameworks/compile/libbcc/bcinfo/include/bcinfo/Wrap/
Dwrapper_output.h37 virtual bool Write(uint8_t byte) = 0;
Dfile_wrapper_output.h33 virtual bool Write(uint8_t byte);
/frameworks/base/tools/bit/
Dadb.cpp90 uint8_t byte; in read_varint() local
91 ssize_t amt = read(fd, &byte, 1); in read_varint()
98 result |= uint64_t(byte & 0x7F) << bits; in read_varint()
99 if ((byte & 0x80) == 0) { in read_varint()
/frameworks/base/obex/api/
Dcurrent.txt9 field public byte[] mPayload;
/frameworks/base/test-mock/api/
Dremoved.txt12 method public boolean setInstantAppCookie(@NonNull byte[]);
/frameworks/minikin/doc/
Dhyb_file_format.md40 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/compile/slang/tests/P_struct_field/
DScriptField_InnerTwo.java.expect36 byte z;
147 public synchronized void set_z(int index, byte v, boolean copyNow) {
181 public synchronized byte get_z(int index) {
/frameworks/base/test-base/api/
Dcurrent.txt105 method public static void assertEquals(String, byte, byte);
106 method public static void assertEquals(byte, byte);
/frameworks/compile/slang/tests/P_reduce_general_result/
DScriptC_reduce_general_result.java.expect118 byte[] outArray = new byte[7];
157 public byte[] get() {
159 byte[] outArray = new byte[7];
187 private byte[] mResult;
195 byte[] outArray = new byte[14];
236 byte[] outArray = new byte[28];
985 byte[] outArray = new byte[7];
1026 byte[] outArray = new byte[14];
1067 byte[] outArray = new byte[28];
1487 byte[] outArray = new byte[1];
[all …]
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
Dserialization.h732 const int8_t byte = value;
733 SerializeRaw(byte, buffer);
746 const uint8_t byte = value;
747 SerializeRaw(byte, buffer);
760 const int8_t byte = value;
761 SerializeRaw(byte, buffer);
777 const uint8_t byte = value;
778 SerializeRaw(byte, buffer);
794 const int8_t byte = value;
795 SerializeRaw(byte, buffer);
[all …]
/frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
Dmime_io.tab28 /* size of packed frame for each mode, excluding TOC byte */
/frameworks/compile/slang/tests/P_reduce_general_inputs/
DScriptC_reduce_general_inputs.java.expect926 public result_int reduce_my_half_char_0(short[] in1, byte[] in2) {
990 public result_int reduce_my_half_char_1(short[] in1, byte[] in2) {
1054 public result_int reduce_my_half_char2_0(short[] in1, byte[] in2) {
1122 public result_int reduce_my_half_char2_1(short[] in1, byte[] in2) {
1190 public result_int reduce_my_half_char4_0(short[] in1, byte[] in2) {
1258 public result_int reduce_my_half_char4_1(short[] in1, byte[] in2) {
1726 public result_int reduce_my_half_uchar_0(short[] in1, byte[] in2) {
1790 public result_int reduce_my_half_uchar_1(short[] in1, byte[] in2) {
1854 public result_int reduce_my_half_uchar2_0(short[] in1, byte[] in2) {
1922 public result_int reduce_my_half_uchar2_1(short[] in1, byte[] in2) {
[all …]

1234