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

12345

/frameworks/rs/java/tests/Refocus/src/com/android/rs/test/
H A DDepthImage.java32 XmpDepthDecode decode = new XmpDepthDecode(input);
33 mFormat = decode.getFormat();
34 mFar = decode.getFar();
35 mNear = decode.getNear();
36 mDepthBitmap = decode.getDepthBitmap();
37 mBlurAtInfinity = decode.getBlurAtInfinity();
38 mFocalDistance = decode.getFocalDistance();
39 mDepthOfFiled = decode.getDepthOfField();
40 mFocalPointX = decode.getFocalPointX();
41 mFocalPointY = decode
[all...]
/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/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:__anon1616::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:__anon1615::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:__anon1615::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:__anon1611::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:__anon1611::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/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.java33 byte[] out = Base64.decode(in, 0);
51 byte[] out = Base64.decode(in, 0);
52 fail("should have failed to decode");
128 assertEquals(BYTES, 0, Base64.decode("", 0));
129 assertEquals(BYTES, 1, Base64.decode("/w==", 0));
130 assertEquals(BYTES, 2, Base64.decode("/+4=", 0));
131 assertEquals(BYTES, 3, Base64.decode("/+7d", 0));
132 assertEquals(BYTES, 4, Base64.decode("/+7dzA==", 0));
133 assertEquals(BYTES, 5, Base64.decode("/+7dzLs=", 0));
134 assertEquals(BYTES, 6, Base64.decode("/
[all...]
/frameworks/base/services/tests/servicestests/src/android/net/netlink/
H A DRtNetlinkNeighborMessageTest.java77 HexEncoding.decode(RTM_DELNEIGH_HEX.toCharArray(), false);
116 HexEncoding.decode(RTM_NEWNEIGH_HEX.toCharArray(), false);
136 HexEncoding.decode(RTM_GETNEIGH_RESPONSE_HEX.replaceAll(" ", "").toCharArray(), false);
246 HexEncoding.decode(expectedNewNeighHex.toCharArray(), false);
H A DNetlinkErrorMessageTest.java54 HexEncoding.decode(NLM_ERROR_OK_HEX.toCharArray(), false);
/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/base/tools/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.java65 mServer.setServerReply(HexEncoding.decode(WORKING_VERSION4.toCharArray(), false));
83 final byte[] reply = HexEncoding.decode(WORKING_VERSION4.toCharArray(), false);
92 final byte[] reply = HexEncoding.decode(WORKING_VERSION4.toCharArray(), false);
117 final byte[] reply = HexEncoding.decode(WORKING_VERSION4.toCharArray(), false);
134 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/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/base/services/tests/servicestests/src/android/net/dhcp/
H A DDhcpPacketTest.java288 final ByteBuffer packet = ByteBuffer.wrap(HexEncoding.decode((
319 final ByteBuffer packet = ByteBuffer.wrap(HexEncoding.decode((
357 return HexEncoding.decode(hexString.toCharArray(), false);
375 final ByteBuffer packet = ByteBuffer.wrap(HexEncoding.decode((
412 final ByteBuffer packet = ByteBuffer.wrap(HexEncoding.decode((
489 final ByteBuffer packet = ByteBuffer.wrap(HexEncoding.decode((
522 final ByteBuffer packet = ByteBuffer.wrap(HexEncoding.decode((
553 final ByteBuffer packet = ByteBuffer.wrap(HexEncoding.decode((
587 final ByteBuffer packet = ByteBuffer.wrap(HexEncoding.decode((
623 final ByteBuffer packet = ByteBuffer.wrap(HexEncoding.decode((
[all...]
/frameworks/base/packages/Osu/src/com/android/hotspot2/asn1/
H A DAsn1Decoder.java86 public static Collection<Asn1Object> decode(ByteBuffer data) throws DecodeException { method in class:Asn1Decoder
89 decode(0, root);
93 private static void decode(int level, Asn1Constructed parent) throws DecodeException { method in class:Asn1Decoder
112 decode(level + 1, root);
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/commands/
H A DGetCertData.java48 mPassword = Base64.decode(values.get("estpassword"), Base64.DEFAULT);
/frameworks/base/core/java/android/util/
H A DBase64.java76 * Encode/decode another block of input data. this.output is
109 * @param str the input String to decode, which is converted to
112 * Pass {@code DEFAULT} to decode standard Base64.
117 public static byte[] decode(String str, int flags) { method in class:Base64
118 return decode(str.getBytes(), flags);
128 * @param input the input array to decode
130 * Pass {@code DEFAULT} to decode standard Base64.
135 public static byte[] decode(byte[] input, int flags) { method in class:Base64
136 return decode(input, 0, input.length, flags);
146 * @param input the data to decode
155 public static byte[] decode(byte[] input, int offset, int len, int flags) { method in class:Base64
[all...]
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerCCDecoder.h42 void decode(const sp<ABuffer> &accessUnit);
/frameworks/base/services/core/java/com/android/server/am/
H A DDumpHeapProvider.java80 final String tag = Uri.decode(path);

Completed in 4975 milliseconds

12345