Home
last modified time | relevance | path

Searched refs:byte (Results 1 – 25 of 78) 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/include/media/stagefright/
DDataSourceBase.h53 uint8_t byte[2]; in getUInt16() local
54 if (readAt(offset, byte, 2) != 2) { in getUInt16()
58 *x = (byte[0] << 8) | byte[1]; in getUInt16()
66 uint8_t byte[3]; in getUInt24() local
67 if (readAt(offset, byte, 3) != 3) { in getUInt24()
71 *x = (byte[0] << 16) | (byte[1] << 8) | byte[2]; in getUInt24()
/frameworks/av/include/media/
DDataSourceBase.h53 uint8_t byte[2]; in getUInt16() local
54 if (readAt(offset, byte, 2) != 2) { in getUInt16()
58 *x = (byte[0] << 8) | byte[1]; in getUInt16()
66 uint8_t byte[3]; in getUInt24() local
67 if (readAt(offset, byte, 3) != 3) { in getUInt24()
71 *x = (byte[0] << 16) | (byte[1] << 8) | byte[2]; in getUInt24()
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/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/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/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/mp3dec/fuzzer/
DREADME.md14 …4. `jazz ` 5. `classical ` 6. `talk ` 7. `flat_ ` | Bits 0, 1 and 2 of first byte of input stream |
15 | `crcEnabled` | 0. `false ` 1. `true `| Bit 0 of second byte of input stream |
21 * If the decode operation was un-successful, the input is advanced by 1 byte
/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/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/av/media/extractors/fuzzers/
Dmpeg2ts_extractor_fuzzer.dict1 # Start 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/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/av/media/libstagefright/codecs/amrwb/fuzzer/
DREADME.md17 | `quality` | 0. `Bad Quality` 1. `Good quality` | Bit 0 (LSB) of 1st byte of data. |
18 …` 6. `MODE_20k` 7. `MODE_23k` 8. `MODE_24k` 9. `MRDTX` | Bits 3, 4, 5 and 6 of 1st byte of data. |
/frameworks/av/media/libstagefright/codecs/amrnb/fuzzer/
DREADME.md17 | `input_format` | 0. `MIME_IETF` 1. `IF2` | Bit 0 (LSB) of 1st byte of data. |
18 …R_67` 4. `AMR_74` 5. `AMR_795` 6. `AMR_102` 7. `AMR_122` | Bits 3, 4 and 5 of 1st byte of data. |
/frameworks/base/api/
Dtest-lint-baseline.txt92 ArrayReturn: android.os.HwBlob#wrapArray(byte[]):
108 …android.security.keystore.AttestationUtils#attestDeviceIds(android.content.Context, int[], byte[]):
130 AutoBoxing: android.os.HwBlob#wrapArray(byte[]):
156 BannedThrow: android.media.audiofx.AudioEffect#getParameter(byte[], byte[]):
158 BannedThrow: android.media.audiofx.AudioEffect#getParameter(int, byte[]):
166 BannedThrow: android.media.audiofx.AudioEffect#setParameter(byte[], byte[]):
168 BannedThrow: android.media.audiofx.AudioEffect#setParameter(int, byte[]):
174 BannedThrow: android.media.audiofx.AudioEffect#setParameter(int[], byte[]):
674 MissingNullability: android.app.admin.SecurityLog.SecurityEvent#SecurityEvent(long, byte[]) paramet…
838 MissingNullability: android.location.GnssNavigationMessage#setData(byte[]) parameter #0:
[all …]
/frameworks/base/obex/api/
Dcurrent.txt9 field public byte[] mPayload;
/frameworks/base/test-mock/api/
Dremoved.txt12 method public boolean setInstantAppCookie(@NonNull byte[]);

1234