/external/webp/src/dec/ |
webp.c | 443 // Decode bitstream header, update io->width/io->height. 450 if (status == VP8_STATUS_OK) { // Decode 468 if (status == VP8_STATUS_OK) { // Decode 562 static uint8_t* Decode(WEBP_CSP_MODE mode, const uint8_t* const data, 580 // Decode 593 return Decode(MODE_RGB, data, data_size, width, height, NULL); 598 return Decode(MODE_RGBA, data, data_size, width, height, NULL); 603 return Decode(MODE_ARGB, data, data_size, width, height, NULL); 608 return Decode(MODE_BGR, data, data_size, width, height, NULL); 613 return Decode(MODE_BGRA, data, data_size, width, height, NULL) [all...] |
/frameworks/wilhelm/tests/examples/ |
slesTestDecodeAac.cpp | 17 /* AAC ADTS Decode Test 28 Starting to decode 121 /* constant to identify a buffer context which is the end of the stream to decode */ 413 /* Decode an audio path by opening a file descriptor on that path */ 472 /* to queue the AAC data to decode */ 634 /* Initialize the callback for prefetch errors, if we can't open the resource to decode */ 674 // Note that we don't get the metadata values yet; that happens in the first decode callback. 772 printf("Starting to decode\n"); 776 /* Decode until the end of the stream is reached */ [all...] |
/art/runtime/ |
invoke_arg_array_builder.h | 115 Append(reinterpret_cast<int32_t>(soa.Decode<mirror::Object*>(va_arg(ap, jobject)))); 156 Append(reinterpret_cast<int32_t>(soa.Decode<mirror::Object*>(args[args_offset].l)));
|
/bionic/libc/tools/ |
generate-NOTICE.py | 119 content = open(path, 'r').read().decode('utf-8') 123 content = open(path, 'r').read().decode('iso-8859-1')
|
/dalvik/libdex/ |
DexClass.cpp | 58 * decode process. 79 * decode process.
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
PropertyResourceBundleTest.java | 75 CharBuffer cbuffer = charset.decode(ByteBuffer.wrap(content 86 cbuffer = charset.decode(ByteBuffer.wrap(content.getBytes("UTF-8")));
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/ |
DerUTCTimeEDTest.java | 105 assertEquals(187, (myDate.getTime()-((Date)uTime.decode(dis)).getTime())); 115 assertEquals(myDate, uTime.decode(dis));
|
SequenceTest.java | 151 .decode(in)); 188 seqVerify.decode(in);
|
UTCTimeTest.java | 102 utime.decode(in)); //decoded 111 utime.decode(in)); //decoded
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x501/ |
NameTest.java | 69 Name principal = (Name) Name.ASN1.decode(mess); 81 Name principal = (Name) Name.ASN1.decode(is);
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/ |
PolicyQualifierInfoTest.java | 96 PolicyQualifierInfo.ASN1.decode( 129 PolicyQualifierInfo.ASN1.decode(
|
/external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/ |
X509CertificateTest.java | 265 is = new ByteArrayInputStream(Base64.decode(base64cert.getBytes("UTF-8"))); 270 is = new ByteArrayInputStream(Base64.decode(base64crl.getBytes("UTF-8")));
|
/external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/ |
CharWrapperTester.java | 44 public abstract char[] decode(char[] delegateChars) throws Exception; method in class:CharWrapperTester 88 return decode(delegate.buffer.toString().toCharArray());
|
WrapperTester.java | 45 public abstract byte[] decode(byte[] delegateBytes) throws Exception; method in class:WrapperTester 89 return WrapperTester.this.decode(delegate.bytesOut.toByteArray());
|
/external/apache-harmony/x-net/src/test/impl/java/org/apache/harmony/xnet/tests/provider/jsse/ |
DigitalSignatureTest.java | 81 .decode(b64PrivateKeySpec))); 84 .decode(b64PublicKeySpec)));
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/ |
SignatureSpi.java | 255 public BigInteger[] decode( method in class:SignatureSpi.StdDSAEncoder 313 public BigInteger[] decode( method in class:SignatureSpi.CVCDSAEncoder
|
/external/chromium/chrome/browser/bookmarks/ |
bookmark_codec.h | 56 bool Decode(BookmarkNode* bb_node, 66 // is stored to the file. After a call to decode, the computed checksum can
|
/external/chromium/chrome/browser/extensions/ |
convert_web_app_unittest.cc | 56 result.data = decoder.Decode( 59 EXPECT_FALSE(result.data.isNull()) << "Could not decode test icon.";
|
/external/chromium/net/base/ |
sdch_filter.h | 6 // This decoding uses a pre-cached dictionary of text fragments to decode 37 // Decode the pre-filter data and writes the output into |dest_buffer|
|
/external/chromium_org/chrome/browser/extensions/ |
convert_web_app_unittest.cc | 59 if (!gfx::PNGCodec::Decode( 62 ADD_FAILURE() << "Could not decode test icon.";
|
/external/chromium_org/content/common/gpu/client/ |
gpu_video_decode_accelerator_host.cc | 81 void GpuVideoDecodeAcceleratorHost::Decode( 84 // Can happen if a decode task was posted before an error was delivered.
|
/external/chromium_org/content/common/gpu/media/ |
va_surface.h | 15 // A VA-API-specific decode surface used by VaapiH264Decoder to decode into
|
/external/chromium_org/content/common/sandbox_linux/ |
bpf_gpu_policy_linux.cc | 74 // Accelerated video decode is currently enabled on Chrome OS, 196 // Accelerated video decode dlopen()'s some shared objects
|
/external/chromium_org/content/renderer/ |
image_loading_helper.cc | 186 // Decode the image using WebKit's image decoder. 191 return decoder.Decode(src_data, data.size());
|
/external/chromium_org/content/renderer/pepper/ |
ppb_video_decoder_impl.cc | 152 int32_t PPB_VideoDecoder_Impl::Decode( 172 platform_video_decoder_->Decode(decode_buffer);
|