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

/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/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/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:__anon1530::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:__anon1529::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:__anon1529::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:__anon1525::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:__anon1525::GsmEfrCodec
H A DAudioGroup.cpp108 void decode(int tick);
210 // the first time we successfully decode an incoming packet.
362 void AudioStream::decode(int tick) function in class:__anon1526::AudioStream
404 // Receive the packet and decode it.
434 length = mCodec->decode(samples, count, &buffer[offset], length);
760 ((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.cpp70 static int decode( function
271 // begin rendering 2 vsyncs (~33ms) after first decode
453 decode(looper, argv[0], useAudio, useVideo, surface, renderSurface,
H A Dmediafilter.cpp279 // begin rendering 2 vsyncs after first decode
312 static int decode( function in namespace:android
776 decode(looper, argv[0], surface, renderSurface, useTimestamp, filterType);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerCCDecoder.cpp342 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
488 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}.
85 new LinkedBlockingQueue<Runnable>(128), new NamedThreadFactory("decode"));
119 * Set the dimensions to decode into. These dimensions should never change while the drawable is
167 * Binds to the given key and start the decode process. This will first look in the cache, then
168 * decode from the request key if not found.
243 // find cached entry here and skip decode if found.
285 decode(null);
300 decode(factory);
305 * Called when the decode process is cancelled at any time.
314 protected void decode(fina method in class:BasicBitmapDrawable
[all...]
/frameworks/base/core/java/android/net/
H A DUri.java1099 return decode(encodedHost);
1125 String portString = decode(authority.substring(portSeparator + 1));
1587 names.add(decode(name));
1642 values.add(decode(query.substring(separator + 1, end)));
1699 return UriCodec.decode(encodedValue, true, StandardCharsets.UTF_8, false);
1930 * @param s encoded string to decode
1934 public static String decode(String s) { method in class:Uri
1938 return UriCodec.decode(s, false, StandardCharsets.UTF_8, false);
1968 return hasDecoded ? decoded : (decoded = decode(encoded));
2154 = decode(pat
[all...]
/frameworks/base/media/jni/soundpool/
H A DSoundPool.cpp78 // start decode thread
490 static status_t decode(int fd, int64_t offset, int64_t length, function in namespace:android
623 ALOGV("Start decode");
624 status = decode(mFd, mOffset, mLength, &sampleRate, &numChannels, &format,
/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/base/media/java/android/media/tv/
H A DTvContract.java1022 * Use {@link Genres#decode Genres.decode()} to get the canonical genre strings from the
1320 public static String[] decode(String genres) { method in class:TvContract.Programs.Genres
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/sms/
H A DBearerData.java39 * An object to encode and decode CDMA SMS bearer data.
556 * access to the main bitwise stream from encode/decode.
968 Rlog.d(LOG_TAG, "MESSAGE_IDENTIFIER decode " +
987 Rlog.d(LOG_TAG, "RESERVED bearer data subparameter " + subparamId + " decode "
1037 // Try to decode the max number of characters in payload
1041 throw new CodingException(charset + " decode failed: offset out of range");
1043 Rlog.e(LOG_TAG, charset + " decode error: offset = " + offset + " numFields = "
1051 throw new CodingException(charset + " decode failed: " + ex);
1084 throw new CodingException("7bit ASCII decode failed: " + ex);
1308 Rlog.d(LOG_TAG, "REPLY_OPTION decode "
1868 public static BearerData decode(byte[] smsData) { method in class:BearerData
1885 public static BearerData decode(byte[] smsData, int serviceCategory) { method in class:BearerData
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 1860 milliseconds