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

/frameworks/compile/mclinker/include/mcld/Support/
H A DLEB128.h27 IntType decode(const ByteType *pBuf, size_t &pSize);
30 IntType decode(const ByteType *&pBuf);
73 uint64_t decode<uint64_t>(const ByteType *pBuf, size_t &pSize);
80 uint64_t decode<uint64_t>(const ByteType *&pBuf);
86 int64_t decode<int64_t>(const ByteType *pBuf, size_t &pSize);
89 int64_t decode<int64_t>(const ByteType *&pBuf);
102 IntType decode(const char *pBuf, size_t &pSize) { function in namespace:mcld::leb128
103 return decode<IntType>(reinterpret_cast<const ByteType*>(pBuf), pSize);
107 IntType decode(const char *&pBuf) { function in namespace:mcld::leb128
108 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:__anon1457::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:__anon1456::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:__anon1456::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:__anon1452::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:__anon1452::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:__anon1453::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.java111 public static byte[] decode(byte[] url) throws IllegalArgumentException { method in class:URLUtil
321 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.java100 decode(content);
174 private void decode(ByteBuffer content) { method in class:DisplaySinkService
/frameworks/av/cmds/stagefright/
H A Dcodec.cpp69 static int decode( function
425 decode(looper, argv[0], useAudio, useVideo, surface);
/frameworks/av/media/libmedia/
H A DIMediaPlayerService.cpp91 virtual status_t decode( function in class:android::BpMediaPlayerService
121 virtual status_t decode(int fd, int64_t offset, int64_t length, uint32_t *pSampleRate, function in class:android::BpMediaPlayerService
236 decode(httpService,
262 status_t status = decode(fd, offset, length, &sampleRate, &numChannels, &format,
H A Dmediaplayer.cpp838 /*static*/ status_t MediaPlayer::decode( function in class:android::MediaPlayer
847 ALOGV("decode(%s)", url);
851 status = service->decode(httpService, url, pSampleRate, pNumChannels, pFormat, heap, pSize);
866 /*static*/ status_t MediaPlayer::decode(int fd, int64_t offset, int64_t length, function in class:android::MediaPlayer
871 ALOGV("decode(%d, %" PRId64 ", %" PRId64 ")", fd, offset, length);
875 status = service->decode(fd, offset, length, pSampleRate,
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerCCDecoder.cpp313 void NuPlayer::CCDecoder::decode(const sp<ABuffer> &accessUnit) { function in class:android::NuPlayer::CCDecoder
/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/opt/bitmap/src/com/android/bitmap/
H A DDecodeTask.java39 * decode is complete, even if the task is cancelled, the result is placed in the given cache.
40 * A {@link DecodeCallback} client may be notified on decode begin and completion.
45 * GIFs are supported, but their decode does not reuse bitmaps at all. The resulting
66 * Callback interface for clients to be notified of decode state changes and completion.
91 * @param requestKey The request to decode, also the key to use for the cache.
92 * @param decodeOpts The decode options.
93 * @param factory The factory to obtain file descriptors to decode from. If this factory is
94 * null, then we will decode from requestKey.createInputStream().
95 * @param callback The callback to notify of decode state changes.
112 return decode();
115 public ReusableBitmap decode() { method in class:DecodeTask
485 private Bitmap decode(ParcelFileDescriptor fd, InputStream in) { method in class:DecodeTask
[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/opt/bitmap/src/com/android/bitmap/drawable/
H A DBasicBitmapDrawable.java50 * The actual bitmap decode work is handled by {@link DecodeTask}.
84 new LinkedBlockingQueue<Runnable>(128), new NamedThreadFactory("decode"));
121 * Set the dimensions to decode into. These dimensions should never change while the drawable is
135 * Binds to the given key and start the decode process. This will first look in the cache, then
136 * decode from the request key if not found.
211 // find cached entry here and skip decode if found.
252 decode(null);
266 decode(factory);
273 protected void decode(final FileDescriptorFactory factory) { method in class:BasicBitmapDrawable
274 Trace.beginSection("decode");
[all...]
/frameworks/base/core/java/android/net/
H A DUri.java1094 return decode(encodedHost);
1120 String portString = decode(authority.substring(portSeparator + 1));
1582 names.add(decode(name));
1637 values.add(decode(query.substring(separator + 1, end)));
1694 return UriCodec.decode(encodedValue, true, StandardCharsets.UTF_8, false);
1925 * @param s encoded string to decode
1929 public static String decode(String s) { method in class:Uri
1933 return UriCodec.decode(s, false, StandardCharsets.UTF_8, false);
1963 return hasDecoded ? decoded : (decoded = decode(encoded));
2149 = decode(pat
[all...]
/frameworks/base/media/java/android/media/tv/
H A DTvContract.java894 * to create a text that can be stored in this column. Use {@link Genres#decode
895 * Genres.decode()} to get the canonical genre strings from the text stored in this column.
1126 public static String[] decode(String genres) { method in class:TvContract.Programs.Genres
/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.cpp1284 status_t MediaPlayerService::decode( function in class:android::MediaPlayerService
1293 ALOGV("decode(%s)", url);
1299 // If the application wants to decode those, it should open a
1302 ALOGD("Can't decode %s by path, use filedescriptor instead", url);
1350 status_t MediaPlayerService::decode(int fd, int64_t offset, int64_t length, function in class:android::MediaPlayerService
1355 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.
579 * access to the main bitwise stream from encode/decode.
991 Rlog.d(LOG_TAG, "MESSAGE_IDENTIFIER decode " +
1010 Rlog.d(LOG_TAG, "RESERVED bearer data subparameter " + subparamId + " decode "
1060 // Try to decode the max number of characters in payload
1064 throw new CodingException(charset + " decode failed: offset out of range");
1066 Rlog.e(LOG_TAG, charset + " decode error: offset = " + offset + " numFields = "
1074 throw new CodingException(charset + " decode failed: " + ex);
1107 throw new CodingException("7bit ASCII decode failed: " + ex);
1331 Rlog.d(LOG_TAG, "REPLY_OPTION decode "
1891 public static BearerData decode(byte[] smsData) { method in class:BearerData
1908 public static BearerData decode(byte[] smsData, int serviceCategory) { method in class:BearerData
[all...]

Completed in 729 milliseconds