HomeSort by relevance Sort by last modified time
    Searched refs:decode (Results 376 - 400 of 1360) sorted by null

<<11121314151617181920>>

  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
HuffmanTest.java 57 byte[] decodedBytes = codec.decode(baos.toByteArray());
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
IntegerResourceLoader.java 38 // Decode into long, because there are some large hex values in the android resource files
40 // Integer.decode() does not support large, i.e. negative values in hex numbers.
41 return (int) Long.decode(rawValue).longValue();
  /external/smack/src/com/kenai/jbosh/
GZIPCodec.java 77 * Uncompress/decode the data provided using the GZIP format.
83 public static byte[] decode(final byte[] compressed) throws IOException { method in class:GZIPCodec
ZLIBCodec.java 77 * Uncompress/decode the data provided using the ZLIB format.
83 public static byte[] decode(final byte[] compressed) throws IOException { method in class:ZLIBCodec
  /external/zlib/src/contrib/blast/
blast.c 46 /* input limit error return state for bits() and decode() */
97 * seen in the function decode() below.
105 * Decode a code from the stream s using huffman table h. Return the symbol or
125 local int decode(struct state *s, struct huffman *h) function
175 * Huffman code for n symbols, construct the tables required to decode those
182 * possible for decode() using that table to return an error--any stream of
184 * it is possible for decode() using that table to return an error for received
213 return 0; /* complete, but decode() will fail */
241 * Decode PKWare Compression Library stream.
325 /* decode literals and length/distance pairs *
    [all...]
  /frameworks/compile/mclinker/lib/Support/
LEB128.cpp 96 uint64_t decode<uint64_t>(const ByteType *pBuf, size_t &pSize) { function in namespace:mcld::leb128
140 uint64_t decode<uint64_t>(const ByteType *&pBuf) { function in namespace:mcld::leb128
185 * version like decode() to save the code size.
188 int64_t decode<int64_t>(const ByteType *pBuf, size_t &pSize) { function in namespace:mcld::leb128
209 int64_t decode<int64_t>(const ByteType *&pBuf) { function in namespace:mcld::leb128
  /hardware/intel/common/libmix/videodecoder/
VideoDecoderAVC.h 31 virtual Decode_Status decode(VideoDecodeBuffer *buffer);
VideoDecoderWMV.h 31 virtual Decode_Status decode(VideoDecodeBuffer *buffer);
  /hardware/intel/common/libmix/videodecoder/securevideo/merrifield/
VideoDecoderAVCSecure.h 31 virtual Decode_Status decode(VideoDecodeBuffer *buffer);
  /hardware/intel/common/libmix/videodecoder/securevideo/moorefield/
VideoDecoderAVCSecure.h 31 virtual Decode_Status decode(VideoDecodeBuffer *buffer);
  /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/audio/src/openmax_il/wma_dec/src/
Makefile 43 COMPONENT_LIB=libOMX.TI.WMA.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/java/security/cert/
PolicyQualifierInfo.java 60 .decode(this.encoded);
X509CRLEntry.java 142 byte[] rawBytes = (byte[]) ASN1OctetString.getInstance().decode(reasonBytes);
  /libcore/luni/src/main/java/libcore/icu/
NativeConverter.java 18 public static native int decode(long converterHandle, byte[] input, int inEnd, method in class:NativeConverter
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1GeneralizedTime.java 65 public Object decode(BerInputStream in) throws IOException { method in class:ASN1GeneralizedTime
ASN1Integer.java 62 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Integer
ASN1UTCTime.java 77 @Override public Object decode(BerInputStream in) throws IOException { method in class:ASN1UTCTime
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
CertificateIssuer.java 53 issuer = (X500Principal) ASN1.decode(getEncoded());
ExtendedKeyUsage.java 61 keys = (List<String>) ASN1.decode(getEncoded());
NameConstraints.java 94 public static NameConstraints decode(byte[] encoding) throws IOException { method in class:NameConstraints
95 return (NameConstraints) ASN1.decode(encoding);
144 return (byte[]) ASN1OctetString.getInstance().decode(bytes);
175 : ((GeneralNames) GeneralNames.ASN1.decode(bytes)).getNames();
ReasonCode.java 65 this.code = ((byte[]) ASN1.decode(encoding))[0];
  /libcore/luni/src/test/java/libcore/java/nio/charset/
OldCharset_MultiByte_EUC_JP.java 47 CharBuffer outputCB = decoder.decode(intermediateBB);
49 assertEqualCBs("decode(encode(A)) must be identical with A!", inputCB, outputCB);

Completed in 1004 milliseconds

<<11121314151617181920>>