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

1 2 3 4 5 6 7 8 91011>>

  /external/bouncycastle/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 63 * decode the base 64 encoded input data. It is assumed the input data is valid.
67 public static byte[] decode( method in class:Base64
75 encoder.decode(data, 0, data.length, bOut);
86 * decode the base 64 encoded String data - whitespace will be ignored.
90 public static byte[] decode( method in class:Base64
98 encoder.decode(data, bOut);
109 * decode the base 64 encoded String data writing it to the given output stream,
114 public static int decode( method in class:Base64
119 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);
  /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...]
  /libcore/luni/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...]
  /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/libvpx/examples/
decoder_tmpl.txt 34 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ DECODE
35 /* Decode the frame */
37 die_codec(&codec, "Failed to decode frame");
38 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ DECODE
  /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 :-)
  /external/libvpx/
usage_cx.dox 3 The vpx_codec_encode() function is at the core of the decode loop. It
  /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
  /sdk/emulator/qtools/
decoder.h 13 int64_t Decode(bool is_signed);
  /external/chromium/sdch/open-vcdiff/src/
vcdiff_test.sh 45 # vcdiff with three arguments but without "encode" or "decode"
60 $VCDIFF decode -dictionary $DICTIONARY_FILE \
63 || { echo "Decode with three arguments failed"; \
80 { $VCDIFF decode -dictionary $DICTIONARY_FILE \
83 || { echo "Decode using stdin/stdout failed"; \
100 { $VCDIFF decode -dictionary $DICTIONARY_FILE \
103 || { echo "Decode with mixed arguments failed"; \
119 { $VCDIFF decode -dictionary $DICTIONARY_FILE \
122 || { echo "Decode with mixed arguments failed"; \
135 $VCDIFF decode -dictionary $TARGET_FILE
    [all...]

Completed in 587 milliseconds

1 2 3 4 5 6 7 8 91011>>