HomeSort by relevance Sort by last modified time
    Searched full:decode (Results 1 - 25 of 1166) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/libcore/security/src/main/java/org/bouncycastle/util/encoders/
Encoder.java 7 * Encode and decode byte arrays (typically from binary to 7-bit ASCII
14 int decode(byte[] data, int off, int length, OutputStream out) throws IOException; method in interface:Encoder
16 int decode(String data, OutputStream out) throws IOException; method in interface:Encoder
Base64.java 62 * decode the base 64 encoded input data. It is assumed the input data is valid.
66 public static byte[] decode( method in class:Base64
73 encoder.decode(data, 0, data.length, bOut);
84 * decode the base 64 encoded String data - whitespace will be ignored.
88 public static byte[] decode( method in class:Base64
95 encoder.decode(data, bOut);
106 * decode the base 64 encoded String data writing it to the given output stream,
111 public static int decode( method in class:Base64
116 return encoder.decode(data, out);
Hex.java 75 * decode the Hex encoded input data. It is assumed the input data is valid.
79 public static byte[] decode( method in class:Hex
86 encoder.decode(data, 0, data.length, bOut);
97 * decode the Hex encoded String data - whitespace will be ignored.
101 public static byte[] decode( method in class:Hex
108 encoder.decode(data, bOut);
119 * decode the Hex encoded String data writing it to the given output stream,
124 public static int decode( method in class:Hex
129 return encoder.decode(data, out);
UrlBase64.java 59 * Decode the URL safe base 64 encoded input data - white space will be ignored.
63 public static byte[] decode( method in class:UrlBase64
70 encoder.decode(data, 0, data.length, bOut);
81 * decode the URL safe base 64 encoded byte data writing it to the given output stream,
86 public static int decode( method in class:UrlBase64
91 return encoder.decode(data, 0, data.length, out);
95 * decode the URL safe base 64 encoded String data - whitespace will be ignored.
99 public static byte[] decode( method in class:UrlBase64
106 encoder.decode(data, bOut);
117 * Decode the URL safe base 64 encoded String data writing it to the given output stream
122 public static int decode( method in class:UrlBase64
    [all...]
Translator.java 22 public int decode(byte[] in, int inOff, int length, byte[] out, int outOff); method in interface:Translator
  /external/clearsilver/man/man3/
cgi_url_unescape.3 30 This function will decode any %XX character, and will
31 decode + as space
  /external/dropbear/libtomcrypt/src/pk/ecc/
ecc_decrypt_key.c 43 ltc_asn1_list decode[3]; local
55 /* decode to find out hash */
56 LTC_SET_ASN1(decode, 0, LTC_ASN1_OBJECT_IDENTIFIER, hashOID, sizeof(hashOID)/sizeof(hashOID[0]));
58 if ((err = der_decode_sequence(in, inlen, decode, 1)) != CRYPT_OK) {
62 hash = find_hash_oid(hashOID, decode[0].size);
85 LTC_SET_ASN1(decode, 1, LTC_ASN1_OCTET_STRING, pub_expt, ECC_BUF_SIZE);
86 LTC_SET_ASN1(decode, 2, LTC_ASN1_OCTET_STRING, skey, MAXBLOCKSIZE);
89 if ((err = der_decode_sequence(in, inlen, decode, 3)) != CRYPT_OK) {
94 if ((err = ecc_import(decode[1].data, decode[1].size, &pubkey)) != CRYPT_OK)
    [all...]
  /dalvik/libcore/nio_char/src/test/java/tests/api/java/nio/charset/
AbstractCharsetDecoderTestCase.java 214 * Class under test for CharBuffer decode(ByteBuffer)
219 method = "decode",
230 decoder.decode(null);
236 CharBuffer out = decoder.decode(ByteBuffer.allocate(0));
241 out = decoder.decode(in);
250 method = "decode",
265 CharBuffer buffer = decoder.decode(in);
274 out = decoder.decode(in);
280 out = decoder.decode(in);
290 decoder.decode(in)
    [all...]
CharsetDecoderTest.java 211 * Class under test for CharBuffer decode(ByteBuffer)
220 decoder.decode(null);
226 CharBuffer out = decoder.decode(ByteBuffer.allocate(0));
231 out = decoder.decode(in);
239 out = decoder.decode(in);
258 CharBuffer buffer = decoder.decode(in);
267 out = decoder.decode(in);
273 out = decoder.decode(in);
283 decoder.decode(in);
291 out = decoder.decode(in)
    [all...]
  /dalvik/libcore/luni/src/test/java/tests/api/java/net/
URLDecoderTest.java 50 * @tests java.net.URLDecoder#decode(java.lang.String)
55 method = "decode",
60 // java.net.URLDecoder.decode(java.lang.String)
64 assertTrue("1. Incorrect encoding/decoding", URLDecoder.decode(
66 assertTrue("2. Incorrect encoding/decoding", URLDecoder.decode(
68 assertTrue("3. Incorrect encoding/decoding", URLDecoder.decode(
73 * @tests java.net.URLDecoder#decode(java.lang.String, java.lang.String)
78 method = "decode",
100 assertEquals(expected[i], URLDecoder.decode(urls[i], enc));
107 URLDecoder.decode(urls[urls.length - 2], enc)
    [all...]
  /external/dropbear/libtomcrypt/src/pk/dsa/
dsa_decrypt_key.c 37 ltc_asn1_list decode[3]; local
49 /* decode to find out hash */
50 LTC_SET_ASN1(decode, 0, LTC_ASN1_OBJECT_IDENTIFIER, hashOID, sizeof(hashOID)/sizeof(hashOID[0]));
52 if ((err = der_decode_sequence(in, inlen, decode, 1)) != CRYPT_OK) {
56 hash = find_hash_oid(hashOID, decode[0].size);
81 LTC_SET_ASN1(decode, 1, LTC_ASN1_INTEGER, g_pub, 1UL);
82 LTC_SET_ASN1(decode, 2, LTC_ASN1_OCTET_STRING, skey, MAXBLOCKSIZE);
85 if ((err = der_decode_sequence(in, inlen, decode, 3)) != CRYPT_OK) {
101 if (decode[2].size > y) {
107 if (*outlen < decode[2].size)
    [all...]
  /external/v8/src/
disassembler.h 39 // Decode instructions in the the interval [begin, end) and print the
42 static int Decode(FILE* f, byte* begin, byte* end);
44 // Decode instructions in code.
45 static void Decode(FILE* f, Code* code);
47 // Decode instruction at pc and print disassembled instruction into f.
51 static int Decode(FILE* f, byte* pc, int* char_count);
  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/cdma/sms/
CdmaSmsTest.java 116 BearerData bearerData = BearerData.decode(HexDump.hexStringToByteArray(pdu));
123 BearerData bearerData = BearerData.decode(HexDump.hexStringToByteArray(pdu));
130 BearerData bearerData = BearerData.decode(HexDump.hexStringToByteArray(pdu));
137 BearerData bearerData = BearerData.decode(HexDump.hexStringToByteArray(pdu));
153 BearerData revBearerData = BearerData.decode(encodedSms);
161 revBearerData = BearerData.decode(BearerData.encode(bearerData));
164 revBearerData = BearerData.decode(BearerData.encode(bearerData));
167 revBearerData = BearerData.decode(BearerData.encode(bearerData));
183 BearerData revBearerData = BearerData.decode(encodedSms);
191 revBearerData = BearerData.decode(BearerData.encode(bearerData))
    [all...]
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_MEM_OP_DECODE.S 6 * This handler then calls a function to decode the memory op, and process
14 blx r2 @ decode and handle the mem op
  /dalvik/vm/compiler/template/armv5te-vfp/
TEMPLATE_MEM_OP_DECODE.S 6 * This handler then calls a function to decode the memory op, and process
15 blx r2 @ decode and handle the mem op
  /external/dropbear/libtomcrypt/
TODO 11 - add CPP macros like OpenSSL has for ASN1 (e.g. encode/decode functions, etc) shameless ripoff :-)
  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_dec/src/
Android.mk 28 LOCAL_MODULE:= libOMX.TI.AAC.decode
  /hardware/ti/omap3/omx/audio/src/openmax_il/g711_dec/src/
Android.mk 28 LOCAL_MODULE:= libOMX.TI.G711.decode
  /hardware/ti/omap3/omx/audio/src/openmax_il/g722_dec/src/
Android.mk 27 LOCAL_MODULE:= libOMX.TI.G722.decode
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_dec/src/
Android.mk 28 LOCAL_MODULE:= libOMX.TI.G726.decode
  /hardware/ti/omap3/omx/audio/src/openmax_il/g729_dec/src/
Android.mk 28 LOCAL_MODULE:= libOMX.TI.G729.decode
  /hardware/ti/omap3/omx/audio/src/openmax_il/mp3_dec/src/
Android.mk 27 LOCAL_MODULE:= libOMX.TI.MP3.decode
  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_dec/src/
Android.mk 27 LOCAL_MODULE:= libOMX.TI.AMR.decode
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_dec/src/
Android.mk 27 LOCAL_MODULE:= libOMX.TI.WBAMR.decode
  /hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/src/
Android.mk 26 LOCAL_MODULE:= libOMX.TI.WMA.decode

Completed in 482 milliseconds

1 2 3 4 5 6 7 8 91011>>