Searched refs:decode (Results 1 - 25 of 132) sorted by relevance

123456

/frameworks/compile/mclinker/include/mcld/Support/
H A DLEB128.h26 IntType decode(const ByteType* pBuf, size_t& pSize);
29 IntType decode(const ByteType*& pBuf);
72 uint64_t decode<uint64_t>(const ByteType* pBuf, size_t& pSize);
79 uint64_t decode<uint64_t>(const ByteType*& pBuf);
85 int64_t decode<int64_t>(const ByteType* pBuf, size_t& pSize);
88 int64_t decode<int64_t>(const ByteType*& pBuf);
101 IntType decode(const char* pBuf, size_t& pSize) { function in namespace:mcld::leb128
102 return decode<IntType>(reinterpret_cast<const ByteType*>(pBuf), pSize);
106 IntType decode(const char*& pBuf) { function in namespace:mcld::leb128
107 return decode<IntTyp
[all...]
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
H A DDepthImage.java61 XmpDepthDecode decode = new XmpDepthDecode(input);
62 return new DepthImage(decode.getFormat(), decode.getFar(),
63 decode.getNear(), decode.getDepthBitmap(),
64 decode.getBlurAtInfinity(),
65 decode.getFocalDistance(),
66 decode.getDepthOfField(),
67 decode.getFocalPointX(),
68 decode
[all...]
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioCodec.h33 virtual int decode(int16_t *samples, int count, void *payload, int length) = 0;
H A DGsmCodec.cpp47 int decode(int16_t *samples, int count, void *payload, int length);
60 int GsmCodec::decode(int16_t *samples, int count, void *payload, int length) function in class:__anon1948::GsmCodec
H A DG711Codec.cpp42 int decode(int16_t *samples, int count, void *payload, int length);
67 int UlawCodec::decode(int16_t *samples, int count, void *payload, int length) function in class:__anon1947::UlawCodec
93 int decode(int16_t *samples, int count, void *payload, int length);
117 int AlawCodec::decode(int16_t *samples, int count, void *payload, int length) function in class:__anon1947::AlawCodec
H A DAmrCodec.cpp55 int decode(int16_t *samples, int count, void *payload, int length);
131 int AmrCodec::decode(int16_t *samples, int /* count */, void *payload, int length) function in class:__anon1943::AmrCodec
216 int decode(int16_t *samples, int count, void *payload, int length);
242 int GsmEfrCodec::decode(int16_t *samples, int count, void *payload, int length) function in class:__anon1943::GsmEfrCodec
/frameworks/compile/mclinker/unittests/
H A DLEB128Test.cpp199 ASSERT_TRUE(leb128::decode<uint64_t>(buffer, size) == 2);
204 ASSERT_TRUE(leb128::decode<uint64_t>(buffer, size) == 127);
209 ASSERT_TRUE(leb128::decode<uint64_t>(buffer, size) == 128);
214 ASSERT_TRUE(leb128::decode<uint64_t>(buffer, size) == 129);
219 ASSERT_TRUE(leb128::decode<uint64_t>(buffer, size) == 130);
224 ASSERT_TRUE(leb128::decode<uint64_t>(buffer, size) == 12857);
234 ASSERT_EQ(leb128::decode<int64_t>(buffer, size), 2);
239 ASSERT_EQ(leb128::decode<int64_t>(buffer, size), -2);
244 ASSERT_EQ(leb128::decode<int64_t>(buffer, size), 127);
249 ASSERT_EQ(leb128::decode<int64_
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/cdma/sms/
H A DCdmaSmsTest.java120 BearerData bearerData = BearerData.decode(HexDump.hexStringToByteArray(pdu));
127 BearerData bearerData = BearerData.decode(HexDump.hexStringToByteArray(pdu));
134 BearerData bearerData = BearerData.decode(HexDump.hexStringToByteArray(pdu));
141 BearerData bearerData = BearerData.decode(HexDump.hexStringToByteArray(pdu));
157 BearerData revBearerData = BearerData.decode(encodedSms);
165 revBearerData = BearerData.decode(BearerData.encode(bearerData));
168 revBearerData = BearerData.decode(BearerData.encode(bearerData));
171 revBearerData = BearerData.decode(BearerData.encode(bearerData));
187 BearerData revBearerData = BearerData.decode(encodedSms);
195 revBearerData = BearerData.decode(BearerDat
[all...]
/frameworks/base/tools/preload/
H A DRecord.java132 processName = decode(parts[3]).intern();
135 className = vmTypeToLanguage(decode(parts[5])).intern();
148 String decode(String rawField) { method in class:Record
/frameworks/base/tests/net/java/android/net/netlink/
H A DConntrackMessageTest.java73 HexEncoding.decode(CT_V4UPDATE_TCP_HEX.replaceAll(" ", "").toCharArray(), false);
106 HexEncoding.decode(CT_V4UPDATE_UDP_HEX.replaceAll(" ", "").toCharArray(), false);
H A DRtNetlinkNeighborMessageTest.java87 HexEncoding.decode(RTM_DELNEIGH_HEX.toCharArray(), false);
126 HexEncoding.decode(RTM_NEWNEIGH_HEX.toCharArray(), false);
146 HexEncoding.decode(RTM_GETNEIGH_RESPONSE_HEX.replaceAll(" ", "").toCharArray(), false);
260 HexEncoding.decode(expectedNewNeighHex.toCharArray(), false);
/frameworks/compile/mclinker/lib/Target/
H A DELFAttributeData.cpp24 leb128::decode<uint64_t>(pBuf, size));
41 uint64_t int_value = leb128::decode<uint64_t>(pBuf, size);
/frameworks/base/core/tests/coretests/src/android/util/
H A DBase64Test.java35 byte[] out = Base64.decode(in, 0);
53 byte[] out = Base64.decode(in, 0);
54 fail("should have failed to decode");
130 assertEquals(BYTES, 0, Base64.decode("", 0));
131 assertEquals(BYTES, 1, Base64.decode("/w==", 0));
132 assertEquals(BYTES, 2, Base64.decode("/+4=", 0));
133 assertEquals(BYTES, 3, Base64.decode("/+7d", 0));
134 assertEquals(BYTES, 4, Base64.decode("/+7dzA==", 0));
135 assertEquals(BYTES, 5, Base64.decode("/+7dzLs=", 0));
136 assertEquals(BYTES, 6, Base64.decode("/
[all...]
/frameworks/base/core/java/android/security/keystore/recovery/
H A DX509CertificateParsingUtils.java51 return Base64.getDecoder().decode(string);
/frameworks/compile/mclinker/lib/Support/
H A DLEB128.cpp96 uint64_t decode<uint64_t>(const ByteType* pBuf, size_t& pSize) { function in namespace:mcld::leb128
136 uint64_t decode<uint64_t>(const ByteType*& pBuf) { function in namespace:mcld::leb128
181 * version like decode() to save the code size.
184 int64_t decode<int64_t>(const ByteType* pBuf, size_t& pSize) { function in namespace:mcld::leb128
205 int64_t decode<int64_t>(const ByteType*& pBuf) { function in namespace:mcld::leb128
/frameworks/ex/framesequence/jni/
H A DAndroid.mk42 LOCAL_STATIC_LIBRARIES += libwebp-decode
/frameworks/layoutlib/bridge/src/android/os/
H A DSystemProperties_Delegate.java56 return Integer.decode(value);
67 return Long.decode(value);
/frameworks/base/core/tests/coretests/src/android/net/
H A DSntpClientTest.java74 mServer.setServerReply(HexEncoding.decode(WORKING_VERSION4.toCharArray(), false));
92 final byte[] reply = HexEncoding.decode(WORKING_VERSION4.toCharArray(), false);
101 final byte[] reply = HexEncoding.decode(WORKING_VERSION4.toCharArray(), false);
127 final byte[] reply = HexEncoding.decode(WORKING_VERSION4.toCharArray(), false);
145 final byte[] reply = HexEncoding.decode(WORKING_VERSION4.toCharArray(), false);
/frameworks/base/core/java/android/net/
H A DMailTo.java58 * Parse and decode a mailto scheme string. This parser implements
87 m.mHeaders.put(Uri.decode(nameval[0]).toLowerCase(Locale.ROOT),
88 nameval.length > 1 ? Uri.decode(nameval[1]) : null);
/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/recoverablekeystore/
H A DTestData.java455 byte[] keyBytes = Base64.getDecoder().decode(INSECURE_PRIVATE_KEY_FOR_ENDPOINT1_BASE64);
462 byte[] certPathBytes = Base64.getDecoder().decode(base64CertPath);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DComprehensionTlv.java43 * {@link #decode(byte[], int) decode} method.
93 ComprehensionTlv ctlv = ComprehensionTlv.decode(data, startIndex);
114 public static ComprehensionTlv decode(byte[] data, int startIndex) method in class:ComprehensionTlv
128 Rlog.d("CAT ", "decode: unexpected first tag byte=" + Integer.toHexString(temp) +
/frameworks/av/media/libheif/
H A DHeifDecoderImpl.h47 bool decode(HeifFrameInfo* frameInfo) override;
/frameworks/base/core/java/android/webkit/
H A DWebViewProviderInfo.java42 this.signatures[n] = new Signature(Base64.decode(signatures[n], Base64.DEFAULT));
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
H A DNativeUtil.java127 return HexEncoding.decode(cleanMac.toCharArray(), false);
166 return HexEncoding.decode(cleanMac.toCharArray(), false);
257 CharBuffer decoded = decoder.decode(ByteBuffer.wrap(byteArray));
325 return HexEncoding.decode(hexStr.toCharArray(), false);
/frameworks/support/compat/src/androidTest/java/androidx/core/provider/
H A DFontRequestTest.java39 Base64.decode("e04fd020ea3a6910a2d808002b30", Base64.DEFAULT);

Completed in 472 milliseconds

123456