HomeSort by relevance Sort by last modified time
    Searched full:decode (Results 251 - 275 of 1875) sorted by null

<<11121314151617181920>>

  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_dec/src/
Makefile 40 COMPONENT_LIB=libOMX.TI.AAC.decode.so
  /hardware/ti/omap3/omx/audio/src/openmax_il/mp3_dec/src/
Makefile 38 COMPONENT_LIB=libOMX.TI.MP3.decode.so
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/src/
Makefile 29 COMPONENT_LIB=libOMX.TI.JPEG.decode.so
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Sequence.java 39 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Sequence
ASN1SequenceOf.java 39 public Object decode(BerInputStream in) throws IOException { method in class:ASN1SequenceOf
ASN1Set.java 39 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Set
ASN1SetOf.java 39 public Object decode(BerInputStream in) throws IOException { method in class:ASN1SetOf
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
HelloRequest.java 47 fatalAlert(AlertProtocol.DECODE_ERROR, "DECODE ERROR: incorrect HelloRequest");
  /sdk/emulator/qtools/
armdis.h 12 static Opcode decode(uint32_t insn);
  /system/core/include/sysutils/
NetlinkEvent.h 41 bool decode(char *buffer, int size, int format = NetlinkListener::NETLINK_FORMAT_ASCII);
  /external/webp/src/dec/
webp.c 95 // Decode bitstream header, update io->width/io->height.
103 // Decode
193 static uint8_t* Decode(WEBP_CSP_MODE mode, const uint8_t* data,
211 // Decode
224 return Decode(MODE_RGB, data, data_size, width, height, NULL);
229 return Decode(MODE_RGBA, data, data_size, width, height, NULL);
234 return Decode(MODE_ARGB, data, data_size, width, height, NULL);
239 return Decode(MODE_BGR, data, data_size, width, height, NULL);
244 return Decode(MODE_BGRA, data, data_size, width, height, NULL);
251 uint8_t* const out = Decode(MODE_YUV, data, data_size
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
ChoiceTest.java 107 assertEquals("Test case: " + i, testcases[i][0], choice.decode(in));
156 List values = (List) sequenceOf.decode(encoded);
188 assertEquals("False: ", Boolean.FALSE, explicit.decode(encoded));
192 assertEquals("True: ", Boolean.TRUE, explicit.decode(encoded));
244 Boolean b = (Boolean) choice2.decode(new byte[] { 0x01, 0x01, 0x00 });
OidTest.java 127 int[] decoded = (int[]) asn1.decode(new DerInputStream(
130 assertTrue("Failed to decode oid: " + oid[i][0], // error message
162 ASN1Oid.getInstance().decode(in);
176 assertEquals("Failed to decode oid: " + oid[i][0], // error message
178 asn1.decode(new DerInputStream((byte[]) oid[i][2])));
  /external/apache-http/src/org/apache/commons/codec/net/
QCodec.java 223 * A decoder exception is thrown if a failure condition is encountered during the decode process.
225 public String decode(String pString) throws DecoderException { method in class:QCodec
268 * A decoder exception is thrown if a failure condition is encountered during the decode process.
270 public Object decode(Object pObject) throws DecoderException { method in class:QCodec
274 return decode((String) pObject);
  /external/chromium/chrome/browser/bookmarks/
bookmark_codec_unittest.cc 110 bool Decode(BookmarkCodec* codec, BookmarkModel* model, const Value& value) {
112 bool result = codec->Decode(AsMutable(model->GetBookmarkBarNode()),
129 EXPECT_TRUE(Decode(&decoder, model.get(), value));
264 ASSERT_TRUE(Decode(&decoder, &decoded_model, *model_value.get()));
285 ASSERT_TRUE(Decode(&decoder2, &decoded_model2, *model_value2.get()));
  /external/llvm/utils/TableGen/
DisassemblerEmitter.cpp 27 /// *** IF YOU'RE HERE TO RESOLVE A "Primary decode conflict", LOOK DOWN NEAR
51 /// each instruction and how to decode them.
54 /// occupy the same space in the decode tables. These conflicts are resolved as
66 /// *** RESOLUTION FOR "Primary decode conflict"S
125 "Primary decode conflict");
  /frameworks/base/telephony/java/com/android/internal/telephony/
WspTypeDecoder.java 211 * Decode the "Text-string" type for WSP pdu
234 * Decode the "Token-text" type for WSP pdu
254 * Decode the "Short-integer" type for WSP pdu
272 * Decode the "Long-integer" type for WSP pdu
295 * Decode the "Integer-Value" type for WSP pdu
311 * Decode the "Uintvar-integer" type for WSP pdu
336 * Decode the "Value-length" type for WSP pdu
359 * Decode the "Extension-media" type for WSP PDU.
386 * Decode the "Constrained-encoding" type for WSP pdu
403 * Decode the "Content-type" type for WSP pd
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
X509CertPathImpl.java 144 return (X509CertPathImpl) ASN1.decode(in);
165 return (X509CertPathImpl) ASN1.decode(in);
168 ContentInfo ci = (ContentInfo) ContentInfo.ASN1.decode(in);
198 return (X509CertPathImpl) ASN1.decode(in);
219 return (X509CertPathImpl) ASN1.decode(in);
222 ContentInfo ci = (ContentInfo) ContentInfo.ASN1.decode(in);
320 Certificate.ASN1.decode((byte[]) encodings.get(i))));
390 public Object decode(BerInputStream in) throws IOException {
411 public Object decode(BerInputStream in) throws IOException {
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
Extension.java 245 extnValueObject = SubjectKeyIdentifier.decode(extnValue);
257 extnValueObject = NameConstraints.decode(extnValue);
259 extnValueObject = CertificatePolicies.decode(extnValue);
261 extnValueObject = AuthorityKeyIdentifier.decode(extnValue);
271 extnValueObject = CRLDistributionPoints.decode(extnValue);
281 extnValueObject = IssuingDistributionPoint.decode(extnValue);
283 extnValueObject = InfoAccessSyntax.decode(extnValue);
285 extnValueObject = InfoAccessSyntax.decode(extnValue);
378 // decode Key Usage and Basic Constraints extension values
  /external/zlib/contrib/blast/
blast.c 44 /* input limit error return state for bits() and decode() */
95 * seen in the function decode() below.
103 * Decode a code from the stream s using huffman table h. Return the symbol or
123 local int decode(struct state *s, struct huffman *h) function
173 * Huffman code for n symbols, construct the tables required to decode those
180 * possible for decode() using that table to return an error--any stream of
182 * it is possible for decode() using that table to return an error for received
211 return 0; /* complete, but decode() will fail */
239 * Decode PKWare Compression Library stream.
323 /* decode literals and length/distance pairs *
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/src/
OMX_Core.c 70 {"OMX.TI.G729.decode", NULL},
72 {"OMX.TI.G722.decode", NULL},
74 {"OMX.TI.G711.decode", NULL},
76 {"OMX.TI.G723.decode", NULL},
78 {"OMX.TI.G726.decode", NULL},
80 {"OMX.TI.GSMFR.decode", NULL},
85 {"OMX.TI.MP3.decode", "audio_decoder.mp3"},
87 {"OMX.TI.AAC.decode", "audio_decoder.aac"},
88 {"OMX.TI.WMA.decode", "audio_decoder.wma"},
89 {"OMX.TI.WBAMR.decode", "audio_decoder.amrwb"}
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
vcdiff_main.cc 47 "Target file (default is stdin for encode, stdout for decode");
50 "stdin for decode");
70 " {encode | delta | decode | patch }[ <options> ]\n"
72 "decode or patch: reconstruct target file from dictionary and delta file";
83 // or decode operation.
85 bool Decode();
440 bool VCDiffFileBasedCoder::Decode() {
474 std::cerr << "Error trying to decode data chunk of length "
486 std::cerr << "Decode error; '" << FLAGS_delta
538 std::cerr << "Error trying to decode data chunk of length
    [all...]
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
datapart_decode.cpp 28 /* Purpose : Decode a frame of MPEG4 bitstream in datapartitioning mode. */
132 /* Purpose : Decode Data Partitioned Mode Video Packet in I-VOP */
153 /* decode the first partition */
168 /* decode COD, MCBPC, ACpred_flag, CPBY and DQUANT */
227 /* decode the second partition */
266 /* decode the DCT coeficients for the MB */
295 /* Purpose : Decode Data Partitioned Mode Video Packet in P-VOP */
319 /* decode the first partition */
333 /* decode COD, MCBPC, ACpred_flag, CPBY and DQUANT */
352 /* decode the motion vector (if there are any) *
    [all...]
  /development/tools/emulator/opengl/host/libs/Translator/include/GLcommon/
etc1.h 48 // Decode a block of pixels.
72 // Decode an entire image.
  /external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
UTF16CharsetEncoderTest.java 132 assertEquals(decoder.decode(out), decoder.decode(ByteBuffer

Completed in 903 milliseconds

<<11121314151617181920>>