Searched defs:decode (Results 1 - 18 of 18) 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/base/voip/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:__anon1176::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:__anon1175::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:__anon1175::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:__anon1171::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:__anon1171::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:__anon1172::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/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DBerTlv.java63 * @param data A byte array to decode from
67 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 Log.d("CAT ", "decode: unexpected first tag byte=" + Integer.toHexString(temp) +
/frameworks/base/tools/preload/
H A DRecord.java122 processName = decode(parts[3]).intern();
125 className = vmTypeToLanguage(decode(parts[5])).intern();
138 String decode(String rawField) { method in class:Record
/frameworks/base/core/java/android/webkit/
H A DURLUtil.java109 public static byte[] decode(byte[] url) throws IllegalArgumentException { method in class:URLUtil
319 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/av/cmds/stagefright/
H A Dcodec.cpp66 static int decode( function
422 decode(looper, argv[0], useAudio, useVideo, surface);
/frameworks/av/media/libmedia/
H A DIMediaPlayerService.cpp89 virtual sp<IMemory> decode(const char* url, uint32_t *pSampleRate, int* pNumChannels, audio_format_t* pFormat) function in class:android::BpMediaPlayerService
101 virtual sp<IMemory> decode(int fd, int64_t offset, int64_t length, uint32_t *pSampleRate, int* pNumChannels, audio_format_t* pFormat) function in class:android::BpMediaPlayerService
185 sp<IMemory> player = decode(url, &sampleRate, &numChannels, &format);
200 sp<IMemory> player = decode(fd, offset, length, &sampleRate, &numChannels, &format);
H A Dmediaplayer.cpp769 /*static*/ sp<IMemory> MediaPlayer::decode(const char* url, uint32_t *pSampleRate, int* pNumChannels, audio_format_t* pFormat) function in class:android::MediaPlayer
771 ALOGV("decode(%s)", url);
775 p = service->decode(url, pSampleRate, pNumChannels, pFormat);
789 /*static*/ sp<IMemory> MediaPlayer::decode(int fd, int64_t offset, int64_t length, uint32_t *pSampleRate, int* pNumChannels, audio_format_t* pFormat) function in class:android::MediaPlayer
791 ALOGV("decode(%d, %lld, %lld)", fd, offset, length);
795 p = service->decode(fd, offset, length, pSampleRate, pNumChannels, pFormat);
/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/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, Charsets.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, Charsets.UTF_8, false);
1960 return hasDecoded ? decoded : (decoded = decode(encoded));
2146 = decode(pat
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp1165 sp<IMemory> MediaPlayerService::decode(const char* url, uint32_t *pSampleRate, int* pNumChannels, audio_format_t* pFormat) function in class:android::MediaPlayerService
1167 ALOGV("decode(%s)", url);
1173 // If the application wants to decode those, it should open a
1176 ALOGD("Can't decode %s by path, use filedescriptor instead", url);
1222 sp<IMemory> MediaPlayerService::decode(int fd, int64_t offset, int64_t length, uint32_t *pSampleRate, int* pNumChannels, audio_format_t* pFormat) function in class:android::MediaPlayerService
1224 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.
561 * access to the main bitwise stream from encode/decode.
963 Log.d(LOG_TAG, "MESSAGE_IDENTIFIER decode " +
1011 // Try to decode the max number of characters in payload
1015 throw new CodingException(charset + " decode failed: offset out of range");
1017 Log.e(LOG_TAG, charset + " decode error: offset = " + offset + " numFields = "
1025 throw new CodingException(charset + " decode failed: " + ex);
1058 throw new CodingException("7bit ASCII decode failed: " + ex);
1274 Log.d(LOG_TAG, "REPLY_OPTION decode " +
1294 Log.d(LOG_TAG, "NUMBER_OF_MESSAGES decode "
1843 public static BearerData decode(byte[] smsData) { method in class:BearerData
1860 public static BearerData decode(byte[] smsData, int serviceCategory) { method in class:BearerData
[all...]

Completed in 428 milliseconds