HomeSort by relevance Sort by last modified time
    Searched full:decode (Results 1026 - 1050 of 3619) sorted by null

<<41424344454647484950>>

  /libcore/luni/src/main/java/java/nio/charset/
CharsetDecoderICU.java 112 int error = NativeConverter.decode(converterHandle, input, inEnd, output, outEnd, data, true);
138 int error = NativeConverter.decode(converterHandle, input, inEnd, output, outEnd, data, false);
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Oid.java 62 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Oid
77 // Allocate and decode
  /libcore/luni/src/main/java/org/apache/harmony/security/pkcs7/
ContentInfo.java 138 ASN1OctetString.getInstance().decode((byte[])values[1]),
147 SignedData.ASN1.decode((byte[])values[1]),
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
AuthorityKeyIdentifier.java 67 public static AuthorityKeyIdentifier decode(byte[] encoding) throws IOException { method in class:AuthorityKeyIdentifier
68 AuthorityKeyIdentifier aki = (AuthorityKeyIdentifier) ASN1.decode(encoding);
IssuingDistributionPoint.java 66 public static IssuingDistributionPoint decode(byte[] encoding) method in class:IssuingDistributionPoint
69 (IssuingDistributionPoint) ASN1.decode(encoding);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
SinglePhotoDataAdapter.java 130 Log.w(TAG, "fail to decode large", t);
146 Log.w(TAG, "fail to decode thumb", t);
  /packages/apps/Nfc/nci/jni/
PowerSwitch.h 240 ** Description: Decode power level to a string.
253 ** Description: Decode power level to a string.
  /packages/providers/PartnerBookmarksProvider/src/com/android/providers/partnerbookmarks/
PartnerBookmarksContract.java 145 * Must decode via {@link BitmapFactory#decodeByteArray}.
152 * Must decode via {@link BitmapFactory#decodeByteArray}.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Finder/
Finder_Basics.py 30 # XXXX Optionally decode result
56 # XXXX Optionally decode result
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_imgfile.py 106 uu.decode(findfile('testrgb.uue'), 'test.rgb')
107 uu.decode(findfile('greyrgb.uue'), 'greytest.rgb')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_imgfile.py 106 uu.decode(findfile('testrgb.uue'), 'test.rgb')
107 uu.decode(findfile('greyrgb.uue'), 'greytest.rgb')
  /development/samples/training/ContactsList/src/com/example/android/contactslist/util/
ImageLoader.java 350 * Decode and sample down a bitmap from a file input stream to the requested width and height.
361 // First decode with inJustDecodeBounds=true to check dimensions
369 // Decode bitmap with inSampleSize set
376 * bitmaps using the decode* methods from {@link BitmapFactory}. This implementation calculates
382 * @param options An options object with out* params already populated (run through a decode*
  /external/apache-http/src/org/apache/commons/codec/binary/
Base64.java 199 * @param pObject Object to decode
205 public Object decode(Object pObject) throws DecoderException { method in class:Base64
207 throw new DecoderException("Parameter supplied to Base64 decode is not a byte[]");
209 return decode((byte[]) pObject);
219 public byte[] decode(byte[] pArray) { method in class:Base64
  /external/chromium/sdch/open-vcdiff/src/
addrcache_test.cc 32 // values into the buffer, and to manually decode and verify test results
51 // Benchmarks for timing encode/decode operations
452 // Now decode a NEAR mode address of base address 0xCAFE
608 const int test_size = 20 * 1024; // 20K random encode/decode operations
628 std::cout << "Time to decode: "
  /external/chromium_org/sdch/open-vcdiff/src/
addrcache_test.cc 32 // values into the buffer, and to manually decode and verify test results
51 // Benchmarks for timing encode/decode operations
452 // Now decode a NEAR mode address of base address 0xCAFE
608 const int test_size = 20 * 1024; // 20K random encode/decode operations
628 std::cout << "Time to decode: "
  /external/chromium_org/third_party/opus/src/silk/
dec_API.c 79 /* Decode a frame */
83 opus_int lostFlag, /* I 0: no loss, 1 loss, 2 decode fec */
172 /* Decode VAD flags and LBRR flag */
179 /* Decode LBRR flags */
229 /* For LBRR data, decode mid-only flag only if side-channel's LBRR flag is false */
  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder_libwebp.cpp 35 #include "webp/decode.h"
39 // this enables timing code to report milliseconds for a decode
387 // Decode the WebP image data stream using WebP incremental decoding for
403 AutoTimeMillis atm("WEBP Decode");
436 // Decode the WebP image data stream using WebP incremental decoding.
  /external/chromium_org/v8/src/
disassembler.cc 137 // First decode instruction so that we know its length.
333 int Disassembler::Decode(Isolate* isolate, FILE* f, byte* begin, byte* end) {
340 void Disassembler::Decode(FILE* f, Code* code) {
360 int Disassembler::Decode(Isolate* isolate, FILE* f, byte* begin, byte* end) {
365 void Disassembler::Decode(FILE* f, Code* code) {}
  /external/libvorbis/lib/
codebook.c 13 function: basic codebook pack/unpack/code/decode operations
148 readies the codebook auxiliary structures for decode *************/
267 /* the 'eliminate the decode tree' optimization actually requires the
272 be. The first-stage decode table catches most words so that
330 /* Decode side is specced and easier, because we don't need to find
  /external/open-vcdiff/src/
addrcache_test.cc 32 // values into the buffer, and to manually decode and verify test results
51 // Benchmarks for timing encode/decode operations
452 // Now decode a NEAR mode address of base address 0xCAFE
608 const int test_size = 20 * 1024; // 20K random encode/decode operations
628 std::cout << "Time to decode: "
  /external/skia/src/images/
SkImageDecoder_libwebp.cpp 35 #include "webp/decode.h"
39 // this enables timing code to report milliseconds for a decode
387 // Decode the WebP image data stream using WebP incremental decoding for
403 AutoTimeMillis atm("WEBP Decode");
436 // Decode the WebP image data stream using WebP incremental decoding.
  /external/speex/include/speex/
speex.h 340 * decode, you need one state per channel.
353 /** Uses an existing decoder state to decode one frame of speech from
357 * @param bits Bit-stream from which to decode the frame (NULL if the packet was lost)
363 /** Uses an existing decoder state to decode one frame of speech from
367 * @param bits Bit-stream from which to decode the frame (NULL if the packet was lost)
  /external/zlib/src/doc/
algorithm.txt 63 that you can decode fast. The most important characteristic is that shorter
65 short codes fast, and let the long codes take longer to decode.
72 grabs more bits and tries to decode a longer code.
75 takes to decode and the time it takes to build the table. If building the
157 Each entry is what the bits decode as and how many bits that is, i.e. how
  /frameworks/av/libvideoeditor/vss/mcs/inc/
M4MCS_InternalTypes.h 46 #include "M4DECODER_Common.h" /**< Decode video */
109 M4MCS_kState_BEGINVIDEODECODE, /**< Must decode up to the begin cut */
445 M4OSA_Double dViDecStartingCts; /**< Video CTS at which the decode/encode will start
447 M4OSA_Double dViDecCurrentCts; /**< Video CTS to decode */
448 M4OSA_Int32 iVideoBeginDecIncr; /**< CTS step for the begin cut decode (doesn't
  /frameworks/av/libvideoeditor/vss/src/
M4DECODER_Null.c 56 // read and decode one frame
279 * @brief Decode video Access Units up to a target time
280 * @note Parse and decode the video until it can output a decoded image
287 * @param pTime: (IN/OUT) IN: Time to decode up to (in msec)
293 * @return M4WAR_NO_MORE_AU there is no more access unit to decode (EOS)

Completed in 632 milliseconds

<<41424344454647484950>>