Searched defs:decode (Results 1 - 21 of 21) sorted by relevance

/frameworks/compile/mclinker/include/mcld/Support/
H A DLEB128.h30 IntType decode(const ByteType *pBuf, size_t &pSize);
33 IntType decode(const ByteType *&pBuf);
76 uint64_t decode<uint64_t>(const ByteType *pBuf, size_t &pSize);
83 uint64_t decode<uint64_t>(const ByteType *&pBuf);
89 int64_t decode<int64_t>(const ByteType *pBuf, size_t &pSize);
92 int64_t decode<int64_t>(const ByteType *&pBuf);
105 IntType decode(const char *pBuf, size_t &pSize) { function in namespace:mcld::leb128
106 return decode<IntType>(reinterpret_cast<const ByteType*>(pBuf), pSize);
110 IntType decode(const char *&pBuf) { function in namespace:mcld::leb128
111 return decode<IntTyp
[all...]
/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
140 uint64_t decode<uint64_t>(const ByteType *&pBuf) { function in namespace:mcld::leb128
185 * version like decode() to save the code size.
188 int64_t decode<int64_t>(const ByteType *pBuf, size_t &pSize) { function in namespace:mcld::leb128
209 int64_t decode<int64_t>(const ByteType *&pBuf) { function in namespace:mcld::leb128
/frameworks/opt/net/voip/src/jni/rtp/
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:__anon1584::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:__anon1583::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:__anon1583::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:__anon1579::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:__anon1579::GsmEfrCodec
H A DAudioGroup.cpp106 void decode(int tick);
208 // the first time we successfully decode an incoming packet.
360 void AudioStream::decode(int tick) function in class:__anon1580::AudioStream
402 // Receive the packet and decode it.
432 length = mCodec->decode(samples, count, &buffer[offset], length);
755 ((AudioStream *)events[i].data.ptr)->decode(tick);
/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/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DBerTlv.java74 * @param data A byte array to decode from
78 public static BerTlv decode(byte[] data) throws ResultException { method in class:BerTlv
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/core/java/android/webkit/
H A DURLUtil.java110 public static byte[] decode(byte[] url) throws IllegalArgumentException { method in class:URLUtil
320 String decodedUrl = Uri.decode(url);
/frameworks/base/core/java/com/android/internal/net/
H A DVpnProfile.java114 public static VpnProfile decode(String key, byte[] value) { method in class:VpnProfile
/frameworks/base/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/
H A DDisplaySinkService.java99 decode(content);
168 private void decode(ByteBuffer content) { method in class:DisplaySinkService
/frameworks/av/cmds/stagefright/
H A Dcodec.cpp67 static int decode( function
423 decode(looper, argv[0], useAudio, useVideo, surface);
/frameworks/av/media/libmedia/
H A DIMediaPlayerService.cpp89 virtual status_t decode(const char* url, uint32_t *pSampleRate, int* pNumChannels, function in class:android::BpMediaPlayerService
110 virtual status_t decode(int fd, int64_t offset, int64_t length, uint32_t *pSampleRate, function in class:android::BpMediaPlayerService
231 status_t status = decode(url, &sampleRate, &numChannels, &format, heap, &size);
251 status_t status = decode(fd, offset, length, &sampleRate, &numChannels, &format,
H A Dmediaplayer.cpp779 /*static*/ status_t MediaPlayer::decode(const char* url, uint32_t *pSampleRate, function in class:android::MediaPlayer
783 ALOGV("decode(%s)", url);
787 status = service->decode(url, pSampleRate, pNumChannels, pFormat, heap, pSize);
802 /*static*/ status_t MediaPlayer::decode(int fd, int64_t offset, int64_t length, function in class:android::MediaPlayer
807 ALOGV("decode(%d, %lld, %lld)", fd, offset, length);
811 status = service->decode(fd, offset, length, pSampleRate,
/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/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
H A DMediaDecoder.java210 decode();
318 private void decode() { method in class:MediaDecoder
/frameworks/base/core/java/android/net/
H A DUri.java1091 return decode(encodedHost);
1117 String portString = decode(authority.substring(portSeparator + 1));
1579 names.add(decode(name));
1634 values.add(decode(query.substring(separator + 1, end)));
1691 return UriCodec.decode(encodedValue, true, StandardCharsets.UTF_8, false);
1922 * @param s encoded string to decode
1926 public static String decode(String s) { method in class:Uri
1930 return UriCodec.decode(s, false, StandardCharsets.UTF_8, false);
1960 return hasDecoded ? decoded : (decoded = decode(encoded));
2146 = decode(pat
[all...]
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DTiledImageRenderer.java499 boolean decodeComplete = tile.decode();
682 boolean decode() { method in class:TiledImageRenderer.Tile
692 Log.w(TAG, "fail to decode tile", t);
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp1179 status_t MediaPlayerService::decode(const char* url, uint32_t *pSampleRate, int* pNumChannels, function in class:android::MediaPlayerService
1183 ALOGV("decode(%s)", url);
1189 // If the application wants to decode those, it should open a
1192 ALOGD("Can't decode %s by path, use filedescriptor instead", url);
1240 status_t MediaPlayerService::decode(int fd, int64_t offset, int64_t length, function in class:android::MediaPlayerService
1245 ALOGV("decode(%d, %lld, %lld)", fd, offset, length);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/sms/
H A DBearerData.java38 * An object to encode and decode CDMA SMS bearer data.
564 * access to the main bitwise stream from encode/decode.
976 Rlog.d(LOG_TAG, "MESSAGE_IDENTIFIER decode " +
995 Rlog.d(LOG_TAG, "RESERVED bearer data subparameter " + subparamId + " decode "
1045 // Try to decode the max number of characters in payload
1049 throw new CodingException(charset + " decode failed: offset out of range");
1051 Rlog.e(LOG_TAG, charset + " decode error: offset = " + offset + " numFields = "
1059 throw new CodingException(charset + " decode failed: " + ex);
1092 throw new CodingException("7bit ASCII decode failed: " + ex);
1316 Rlog.d(LOG_TAG, "REPLY_OPTION decode "
1876 public static BearerData decode(byte[] smsData) { method in class:BearerData
1893 public static BearerData decode(byte[] smsData, int serviceCategory) { method in class:BearerData
[all...]

Completed in 434 milliseconds