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

<<11121314151617181920>>

  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
CompositionShiftLeastGreatestAtom.java 9 * minimum and maximum offsets between decode and composition time, as well as
11 * the minimum required time for decode to obtain proper presentation order without
  /external/skia/bench/
ImageDecodeBench.cpp 62 // Decode a bunch of times
68 SkDebugf("failed to decode %s\n", fName.c_str());
  /frameworks/base/docs/html/training/displaying-bitmaps/
load-bitmap.jd 51 the most appropriate decode method based on your image data source. These methods attempt to
53 exception. Each type of decode method has additional signatures that let you specify decoding
132 <p>To use this method, first decode with {@link
134 through and then decode again using the new {@link
143 // First decode with inJustDecodeBounds=true to check dimensions
151 // Decode bitmap with inSampleSize set
166 <p>You can follow a similar process to decode bitmaps from other sources, by substituting the
169 BitmapFactory.decode*} method as needed.</p>
  /frameworks/opt/net/voip/src/jni/rtp/
GsmCodec.cpp 47 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:__anon33328::GsmCodec
  /libcore/crypto/src/main/java/org/conscrypt/
CertificateVerify.java 59 "DECODE ERROR: incorrect CertificateVerify");
63 "DECODE ERROR: incorrect CertificateVerify");
ClientHello.java 99 "DECODE ERROR: incorrect ClientHello");
114 fatalAlert(AlertProtocol.DECODE_ERROR, "DECODE ERROR: incorrect ClientHello");
130 fatalAlert(AlertProtocol.DECODE_ERROR, "DECODE ERROR: incorrect V2ClientHello");
140 "DECODE ERROR: incorrect V2ClientHello, cannot be used for resuming");
144 fatalAlert(AlertProtocol.DECODE_ERROR, "DECODE ERROR: incorrect V2ClientHello, short challenge data");
165 fatalAlert(AlertProtocol.DECODE_ERROR, "DECODE ERROR: incorrect V2ClientHello, extra data");
  /libcore/luni/src/test/java/libcore/java/nio/charset/
OldCharset_AbstractTest.java 123 static void decode (byte[] input, char[] expectedOutput) throws CharacterCodingException { method in class:OldCharset_AbstractTest
126 CharBuffer outputCB = decoder.decode(inputBB);
132 decode(testBytes, testChars); method
161 CharBuffer outputCB = decoder.decode(intermediateBB);
163 assertEqualCBs("decode(encode(A)) must be identical with A = " + code,
170 fail("failed to decode(encode(" + code + "))");
194 CharBuffer outputCB = decoder.decode(intermediateBB);
196 assertEqualCBs("decode(encode(A)) must be identical with A!",
OldCharset_MultiByte_EUC_JP.java 47 CharBuffer outputCB = decoder.decode(intermediateBB);
49 assertEqualCBs("decode(encode(A)) must be identical with A!", inputCB, outputCB);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
codecs.py 77 def __new__(cls, encode, decode, streamreader=None, streamwriter=None,
79 self = tuple.__new__(cls, (encode, decode, streamreader, streamwriter))
82 self.decode = decode
96 The .encode()/.decode() methods may use different error
133 def decode(self, input, errors='strict'): member in class:Codec
232 passed piece by piece to the decode() method. The IncrementalDecoder
233 remembers the state of the decoding process between calls to decode().
245 def decode(self, input, final=False): member in class:IncrementalDecoder
262 were passed to decode() that have not yet been converted
293 def decode(self, input, final=False): member in class:BufferedIncrementalDecoder
421 def decode(self, input, errors='strict'): member in class:StreamReader
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Explorer/
Web_Browser_Suite.py 32 # XXXX Optionally decode result
52 # XXXX Optionally decode result
79 # XXXX Optionally decode result
100 # XXXX Optionally decode result
120 # XXXX Optionally decode result
153 # XXXX Optionally decode result
179 # XXXX Optionally decode result
208 # XXXX Optionally decode result
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
codecs.py 77 def __new__(cls, encode, decode, streamreader=None, streamwriter=None,
79 self = tuple.__new__(cls, (encode, decode, streamreader, streamwriter))
82 self.decode = decode
96 The .encode()/.decode() methods may use different error
133 def decode(self, input, errors='strict'): member in class:Codec
232 passed piece by piece to the decode() method. The IncrementalDecoder
233 remembers the state of the decoding process between calls to decode().
245 def decode(self, input, final=False): member in class:IncrementalDecoder
262 were passed to decode() that have not yet been converted
293 def decode(self, input, final=False): member in class:BufferedIncrementalDecoder
421 def decode(self, input, errors='strict'): member in class:StreamReader
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
DerGeneralizedTimeEDTest.java 124 assertEquals("full", myDate, gTime.decode(dis));
133 assertEquals("2 fraction", myDate, gTime.decode(dis));
142 assertEquals("1 fraction", myDate, gTime.decode(dis));
151 assertEquals("no fraction", myDate, gTime.decode(dis));
161 assertEquals("midnight", myDate, gTime.decode(dis));
170 assertEquals("100ms", myDate, gTime.decode(dis));
  /external/chromium_org/third_party/opus/src/silk/
decode_parameters.c 34 /* Decode parameters from payload */
50 /* Decode NLSFs */
88 /* Decode pitch lags */
91 /* Decode pitch values */
94 /* Decode Codebook Index */
105 /* Decode LTP scaling */
  /external/lzma/C/
Ppmd7Dec.c 72 p->p.Decode = Range_Decode;
90 rc->Decode(rc, 0, s->Freq);
103 rc->Decode(rc, hiCnt - s->Freq, s->Freq);
114 rc->Decode(rc, hiCnt, p->MinContext->SummFreq - hiCnt);
174 rc->Decode(rc, hiCnt - s->Freq, s->Freq);
183 rc->Decode(rc, hiCnt, freqSum - hiCnt);
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
DSAPrivateKeyImpl.java 113 .decode(encoding);
115 throw new InvalidKeySpecException("Failed to decode keySpec encoding: " + e);
119 x = new BigInteger((byte[]) ASN1Integer.getInstance().decode(
122 throw new InvalidKeySpecException("Failed to decode parameters: " + e);
128 .decode(ai.getParameters());
130 throw new InvalidKeySpecException("Failed to decode parameters: " + e);
DSAPublicKeyImpl.java 115 .decode(encoding);
117 throw new InvalidKeySpecException("Failed to decode keySpec encoding: " + e);
121 y = new BigInteger((byte[]) ASN1Integer.getInstance().decode(
124 throw new InvalidKeySpecException("Failed to decode parameters: " + e);
131 .decode(ai.getParameters());
133 throw new InvalidKeySpecException("Failed to decode parameters: " + e);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
base64mime.py 14 This module provides an interface to encode and decode both headers and bodies
31 'decode',
164 def decode(s, convert_eols=None):
165 """Decode a raw base64 string.
186 body_decode = decode
187 decodestring = decode
160 def decode(s, convert_eols=None): function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
base64mime.py 14 This module provides an interface to encode and decode both headers and bodies
31 'decode',
164 def decode(s, convert_eols=None):
165 """Decode a raw base64 string.
186 body_decode = decode
187 decodestring = decode
160 def decode(s, convert_eols=None): function
  /external/libvorbis/doc/
03-codebook.tex 20 the codebooks themselves and the codewords they decode are unrolled
34 \subsubsection{codebook decode}
68 the array \varname{[codebook_codeword_lengths]}. Decode of lengths is
80 codeword decode tree:
154 Codebook decode precedes according to \varname{[codebook_lookup_type]}:
158 lookup decode.
166 possible scalar values. Lookup decode proceeds as follows:
277 decode to that entry number.
300 decode in a VQ context.
302 \paragraph{Vector value decode: Lookup type 1
    [all...]
  /external/chromium/net/base/
gzip_filter_unittest.cc 159 // Use filter to decode compressed data, and compare the decoding result with
214 // Unsafe function to use filter to decode compressed data.
261 // Decode the compressed data with filter
278 // Decode the compressed data with filter
304 // Tests we can still decode with just 1 byte buffer in the filter.
316 // Tests we can decode when caller has small buffer to read out from filter.
324 // Tests we can still decode with just 1 byte buffer in the filter and just 1
342 // Decode the corrupted data with filter
365 // Decode the corrupted data with filter
385 // Decode the corrupted data with filte
    [all...]
  /external/chromium_org/media/filters/
video_frame_stream.cc 109 // a pending decode, the decode callback must be fired before the reset
111 // of if we have a pending decode and always satisfy the reset callback when
222 void VideoFrameStream::Decode(const scoped_refptr<DecoderBuffer>& buffer) {
232 TRACE_EVENT_ASYNC_BEGIN0("media", "VideoFrameStream::Decode", this);
233 decoder_->Decode(buffer, base::Bind(&VideoFrameStream::OnFrameReady,
238 Decode(DecoderBuffer::CreateEOSBuffer());
249 TRACE_EVENT_ASYNC_END0("media", "VideoFrameStream::Decode", this);
265 // Any successful decode counts!
351 Decode(buffer)
    [all...]
  /external/chromium_org/net/base/
gzip_filter_unittest.cc 149 // Use filter to decode compressed data, and compare the decoding result with
204 // Unsafe function to use filter to decode compressed data.
251 // Decode the compressed data with filter
268 // Decode the compressed data with filter
294 // Tests we can still decode with just 1 byte buffer in the filter.
306 // Tests we can decode when caller has small buffer to read out from filter.
314 // Tests we can still decode with just 1 byte buffer in the filter and just 1
332 // Decode the corrupted data with filter
355 // Decode the corrupted data with filter
375 // Decode the corrupted data with filte
    [all...]
  /external/chromium_org/ui/gfx/codec/
jpeg_codec_unittest.cc 114 // decode, it should have the same size as the original
117 EXPECT_TRUE(JPEGCodec::Decode(&encoded[0], encoded.size(),
152 // decode, it should have the same size as the original
155 EXPECT_TRUE(JPEGCodec::Decode(&encoded[0], encoded.size(),
178 ASSERT_FALSE(JPEGCodec::Decode(&original[0], original.size(),
188 ASSERT_FALSE(JPEGCodec::Decode(&compressed[0], compressed.size() / 2,
195 ASSERT_FALSE(JPEGCodec::Decode(&compressed[0], compressed.size(),
200 // Test that we can decode JPEG images without invalid-read errors on valgrind.
206 JPEGCodec::Decode(kTopSitesMigrationTestImage,
211 JPEGCodec::Decode(kTopSitesMigrationTestImage
    [all...]
  /frameworks/base/core/tests/coretests/src/android/util/
Base64Test.java 33 byte[] out = Base64.decode(in, 0);
51 byte[] out = Base64.decode(in, 0);
52 fail("should have failed to decode");
128 assertEquals(BYTES, 0, Base64.decode("", 0));
129 assertEquals(BYTES, 1, Base64.decode("/w==", 0));
130 assertEquals(BYTES, 2, Base64.decode("/+4=", 0));
131 assertEquals(BYTES, 3, Base64.decode("/+7d", 0));
132 assertEquals(BYTES, 4, Base64.decode("/+7dzA==", 0));
133 assertEquals(BYTES, 5, Base64.decode("/+7dzLs=", 0));
134 assertEquals(BYTES, 6, Base64.decode("/+7dzLuq", 0))
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
LongTest.java 67 * @tests java.lang.Long#decode(java.lang.String)
71 // java.lang.Long.decode(java.lang.String)
72 assertEquals("Returned incorrect value for hex string", 255L, Long.decode(
74 assertEquals("Returned incorrect value for dec string", -89000L, Long.decode(
76 assertEquals("Returned incorrect value for 0 decimal", 0, Long.decode("0")
78 assertEquals("Returned incorrect value for 0 hex", 0, Long.decode("0x0")
82 Long.decode("-9223372036854775808").longValue() == 0x8000000000000000L);
85 Long.decode("-0x8000000000000000").longValue() == 0x8000000000000000L);
88 Long.decode("9223372036854775807").longValue() == 0x7fffffffffffffffL);
91 Long.decode("0x7fffffffffffffff").longValue() == 0x7fffffffffffffffL)
    [all...]

Completed in 545 milliseconds

<<11121314151617181920>>