HomeSort by relevance Sort by last modified time
    Searched full:decode (Results 226 - 250 of 1247) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/v8/src/
disassembler.cc 128 // First decode instruction so that we know its length.
290 int Disassembler::Decode(FILE* f, byte* begin, byte* end) {
297 void Disassembler::Decode(FILE* f, Code* code) {
307 int Disassembler::Decode(FILE* f, byte* begin, byte* end) { return 0; }
308 void Disassembler::Decode(FILE* f, Code* code) {}
  /external/webkit/WebKitTools/simplejson/
decoder.py 13 _BYTES = '7FF80000000000007FF0000000000000'.decode('hex')
227 __all__ = ['__init__', 'decode', 'raw_decode']
246 def decode(self, s, _w=WHITESPACE.match): member in class:JSONDecoder
259 Decode a JSON document from ``s`` (a ``str`` or ``unicode`` beginning
263 This can be used to decode a JSON document from a string that may
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Choice.java 117 * If it is a matter what time format should be used to decode/encode
290 // DECODE
306 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Choice
310 throw new ASN1Exception("Failed to decode ASN.1 choice type. No alternatives were found for " + getClass().getName());// FIXME message
315 in.content = type[index].decode(in);
  /external/webkit/WebCore/platform/image-decoders/jpeg/
JPEGImageDecoder.cpp 158 bool decode(const Vector<char>& data, bool sizeOnly) { function in class:WebCore::JPEGImageReader
390 // Our decode step always sets things up properly, so if this method is ever
428 decode(true);
451 // Decode this frame.
452 decode();
457 void JPEGImageDecoder::decode(bool sizeOnly) function in class:WebCore::JPEGImageDecoder
462 m_failed = !m_reader->decode(m_data->buffer(), sizeOnly);
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
X509CertFactoryImpl.java 103 // decode PEM, retrieve CRL
146 // decode PEM chunk and store its content (ASN.1 encoding)
203 // it is PKCS7 ContentInfo structure, so decode it
206 ? ContentInfo.ASN1.decode(encoding)
207 : ContentInfo.ASN1.decode(inStream));
249 // decode PEM, retrieve CRL
288 // decode PEM chunk and store its content (ASN.1 encoding)
344 // it is PKCS7 ContentInfo structure, so decode it
347 ? ContentInfo.ASN1.decode(encoding)
348 : ContentInfo.ASN1.decode(inStream))
    [all...]
  /external/v8/test/cctest/
test-serialize.cc 148 decoder.Decode(make_code(BUILTIN, Builtins::ArrayCode)));
150 decoder.Decode(make_code(RUNTIME_FUNCTION, Runtime::kAbort)));
152 decoder.Decode(make_code(IC_UTILITY, IC::kLoadCallbackProperty)));
154 decoder.Decode(make_code(DEBUG_ADDRESS, register_code(3))));
158 decoder.Decode(
162 decoder.Decode(make_code(UNCLASSIFIED, 2)));
164 decoder.Decode(make_code(UNCLASSIFIED, 4)));
166 decoder.Decode(make_code(UNCLASSIFIED, 5)));
168 decoder.Decode(make_code(UNCLASSIFIED, 12)));
170 decoder.Decode(make_code(UNCLASSIFIED, 7)))
    [all...]
  /development/tools/etc1tool/
etc1tool.cpp 42 "%s infile [--help | --encode | --encodeNoHeader | --decode] [--showDifference difffile] [-o outfile]\n",
52 "\t\t--decode create a PNG file from an ETC1 file.\n");
453 int decode(const char* pInput, const char* pOutput) { function
477 usage("At most one occurrence of --encode --encodeNoHeader or --decode is allowed.\n");
518 } else if (strcmp(pArg, "--decode") == 0) {
577 decode(pInput, pOutput);
  /external/webkit/WebCore/platform/image-decoders/png/
PNGImageDecoder.cpp 105 void decode(const SharedBuffer& data, bool sizeOnly) function in class:WebCore::PNGImageReader
178 decode(true);
193 // Decode this frame.
194 decode();
199 void PNGImageDecoder::decode(bool sizeOnly) function in class:WebCore::PNGImageDecoder
204 m_reader->decode(*m_data, sizeOnly);
  /frameworks/base/media/libmedia/
mediaplayer.cpp 658 /*static*/ sp<IMemory> MediaPlayer::decode(const char* url, uint32_t *pSampleRate, int* pNumChannels, int* pFormat) function in class:android::MediaPlayer
660 LOGV("decode(%s)", url);
664 p = service->decode(url, pSampleRate, pNumChannels, pFormat);
678 /*static*/ sp<IMemory> MediaPlayer::decode(int fd, int64_t offset, int64_t length, uint32_t *pSampleRate, int* pNumChannels, int* pFormat) function in class:android::MediaPlayer
680 LOGV("decode(%d, %lld, %lld)", fd, offset, length);
684 p = service->decode(fd, offset, length, pSampleRate, pNumChannels, pFormat);
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/sms/
BearerData.java 42 * An object to encode and decode CDMA SMS bearer data.
502 * access to the main bitwise stream from encode/decode.
1537 public static BearerData decode(byte[] smsData) { method
    [all...]
  /external/chromium/sdch/open-vcdiff/src/google/
vcdecoder.h 74 // This convention differs from the non-streaming Encode/Decode
111 // not change the limit. Setting the limit to 0 will cause all decode
157 bool Decode(const char* dictionary_ptr,
  /external/openssl/crypto/evp/
evp_err.c 146 {ERR_REASON(EVP_R_BN_DECODE_ERROR) ,"bn decode error"},
155 {ERR_REASON(EVP_R_DECODE_ERROR) ,"decode error"},
186 {ERR_REASON(EVP_R_PRIVATE_KEY_DECODE_ERROR),"private key decode error"},
  /external/skia/src/images/
SkImageDecoder_libgif.cpp 216 // now we decode the colortable
248 // time to decode the scanlines
280 // now decode each scanline
  /external/webkit/WebCore/platform/image-decoders/bmp/
BMPImageReader.cpp 83 ASSERT(m_buffer); // Parent should set this before asking us to decode!
101 // Decode the data.
382 // decoding. Few other people decode these either, they're unlikely to be
409 // The format doesn't actually use bitmasks. To simplify the decode
564 // Impossible to decode row-at-a-time, so just do things as a stream of
579 // Decode.
683 // Fail if we're being asked to decode more pixels than remain in the row.
700 // Decode as many rows as we can. (For RLE, where we only want to decode
709 // Decode pixels one byte at a time, left to right (so, starting a
    [all...]
  /libcore/luni/src/test/java/tests/api/java/nio/charset/
Charset_SingleByteAbstractTest.java 59 outputCB = decoder.decode(inputBB);
74 outputCB = decoder.decode(inputBB);
103 // outputCB = decoder.decode(inputBB);
  /external/chromium/base/crypto/
signature_verifier_mac.cc 64 // TODO(wtc): decode signature_algorithm...
  /external/dropbear/libtomcrypt/src/pk/asn1/der/bit/
der_decode_bit_string.c 85 /* decode/store the bits */
  /external/dropbear/libtomcrypt/src/pk/asn1/der/ia5/
der_decode_ia5_string.c 50 /* decode the length */
  /external/dropbear/libtomcrypt/src/pk/asn1/der/printable_string/
der_decode_printable_string.c 50 /* decode the length */
  /external/dropbear/libtomcrypt/src/pk/asn1/der/sequence/
der_decode_sequence_flexi.c 15 ASN.1 DER, decode an array of ASN.1 types with a flexi parser, Tom St Denis
57 ASN.1 DER Flexi(ble) decoder will decode arbitrary DER packets and create a linked list of the decoded elements.
129 /* decode field */
309 /* we have to decode the SEQUENCE header and get it's length */
  /external/e2fsprogs/lib/et/test_cases/
heimdal.et 31 ec RD_AP_UNDEC, "Kerberos error: Can't decode authenticator"
heimdal2.et 20 ec KADM_NO_AUTH, "Cannot encode/decode authentication info"
  /external/elfcopy/
dwarf.h 35 and a pointer to a function that can decode it. */
  /external/kernel-headers/original/asm-generic/
ioctl.h 66 /* used to decode ioctl numbers.. */
  /external/libvpx/examples/
decoder_tmpl.c 86 @@@@@@@@DECODE

Completed in 1378 milliseconds

1 2 3 4 5 6 7 8 91011>>