Home
last modified time | relevance | path

Searched refs:decode (Results 1 – 25 of 660) sorted by relevance

12345678910>>...27

/external/nanopb-c/tests/alltypes_callback/
Ddecode_alltypes_callback.c224 alltypes.req_int32.funcs.decode = &read_varint; in check_alltypes()
227 alltypes.req_int64.funcs.decode = &read_varint; in check_alltypes()
230 alltypes.req_uint32.funcs.decode = &read_varint; in check_alltypes()
233 alltypes.req_uint32.funcs.decode = &read_varint; in check_alltypes()
236 alltypes.req_uint64.funcs.decode = &read_varint; in check_alltypes()
239 alltypes.req_sint32.funcs.decode = &read_svarint; in check_alltypes()
242 alltypes.req_sint64.funcs.decode = &read_svarint; in check_alltypes()
245 alltypes.req_bool.funcs.decode = &read_varint; in check_alltypes()
248 alltypes.req_fixed32.funcs.decode = &read_fixed32; in check_alltypes()
251 alltypes.req_sfixed32.funcs.decode = &read_fixed32; in check_alltypes()
[all …]
/external/llvm/test/MC/Disassembler/PowerPC/
Dppc64-encoding-ext.txt3 # FIXME: decode as beqlr 0
7 # FIXME: decode as beqlr 1
11 # FIXME: decode as beqlr 2
15 # FIXME: decode as beqlr 3
19 # FIXME: decode as beqlr 4
23 # FIXME: decode as beqlr 5
27 # FIXME: decode as beqlr 6
31 # FIXME: decode as beqlr 7
299 # FIXME: decode as bltlr 2
303 # FIXME: decode as bltlr 0
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
DX962NamedCurves.java30 Hex.decode("03188da80eb03090f67cbf20eb43a18800f4ff0afd82ff1012")),
33 Hex.decode("3045AE6FC8422f64ED579528D38120EAE12196D5"));
49 Hex.decode("03eea2bae7e1497842f2de7769cfe9c989c072ad696f48034a")),
52 Hex.decode("31a92ee2029fd10d901b113e990710f0d21ac6b6"));
68 Hex.decode("027d29778100c65a1da1783716588dce2b8b4aee8e228f1896")),
71 Hex.decode("c469684435deb378c4b65ca9591e2a5763059a2e"));
87 Hex.decode("020ffa963cdca8816ccc33b8642bedf905c3d358573d3f27fbbd3b3cb9aaaf")),
90 Hex.decode("e43bb460f0b80cc0c0b075798e948060f8321b7d"));
106 Hex.decode("0238af09d98727705120c921bb5e9e26296a3cdcf2f35757a0eafd87b830e7")),
109 Hex.decode("e8b4011604095303ca3b8099982be09fcb9ae616"));
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/sec/
DSECNamedCurves.java36 return new BigInteger(1, Hex.decode(hex)); in fromHex()
50 byte[] S = Hex.decode("00F50B028E4D696E676875615175290472783FB1");
57 ECPoint G = curve.decodePoint(Hex.decode("04"
76 byte[] S = Hex.decode("002757A1114D696E6768756151755316C05E0BD4");
83 ECPoint G = curve.decodePoint(Hex.decode("04"
102 byte[] S = Hex.decode("000E0D4D696E6768756151750CC03A4473D03679");
109 ECPoint G = curve.decodePoint(Hex.decode("04"
128 byte[] S = Hex.decode("004D696E67687561517512D8F03431FCE63B88F4");
135 ECPoint G = curve.decodePoint(Hex.decode("04"
161 ECPoint G = curve.decodePoint(Hex.decode("04"
[all …]
/external/nanopb-c/tests/callbacks/
Ddecode_callbacks.c73 testmessage.submsg.stringvalue.funcs.decode = &print_string; in main()
75 testmessage.submsg.int32value.funcs.decode = &print_int32; in main()
77 testmessage.submsg.fixed32value.funcs.decode = &print_fixed32; in main()
79 testmessage.submsg.fixed64value.funcs.decode = &print_fixed64; in main()
82 testmessage.stringvalue.funcs.decode = &print_string; in main()
84 testmessage.int32value.funcs.decode = &print_int32; in main()
86 testmessage.fixed32value.funcs.decode = &print_fixed32; in main()
88 testmessage.fixed64value.funcs.decode = &print_fixed64; in main()
90 testmessage.repeatedstring.funcs.decode = &print_string; in main()
/external/tcpdump/
Dprint-esp.c226 char *decode, struct sa_list *sa) in espprint_decode_encalgo() argument
233 colon = strchr(decode, ':'); in espprint_decode_encalgo()
235 (*ndo->ndo_warning)(ndo, "failed to decode espsecret: %s\n", decode); in espprint_decode_encalgo()
240 if (strlen(decode) > strlen("-hmac96") && in espprint_decode_encalgo()
241 !strcmp(decode + strlen(decode) - strlen("-hmac96"), in espprint_decode_encalgo()
243 p = strstr(decode, "-hmac96"); in espprint_decode_encalgo()
247 if (strlen(decode) > strlen("-cbc") && in espprint_decode_encalgo()
248 !strcmp(decode + strlen(decode) - strlen("-cbc"), "-cbc")) { in espprint_decode_encalgo()
249 p = strstr(decode, "-cbc"); in espprint_decode_encalgo()
252 evp = EVP_get_cipherbyname(decode); in espprint_decode_encalgo()
[all …]
/external/chromium_org/sdch/open-vcdiff/src/
Dvcdiff_test.sh60 $VCDIFF decode -dictionary $DICTIONARY_FILE \
80 { $VCDIFF decode -dictionary $DICTIONARY_FILE \
100 { $VCDIFF decode -dictionary $DICTIONARY_FILE \
119 { $VCDIFF decode -dictionary $DICTIONARY_FILE \
135 $VCDIFF decode -dictionary $TARGET_FILE \
175 $VCDIFF decode -dictionary $DICTIONARY_FILE \
204 decode -dictionary $DICTIONARY_FILE \
249 $VCDIFF decode -dictionary $DICTIONARY_FILE \
311 { $VCDIFF decode -dictionary $DICTIONARY_FILE \
367 $VCDIFF decode -target $TARGET_FILE \
[all …]
/external/ksoap2/kobjects/org/ksoap2/kobjects/base64/
DBase64.java94 static int decode(char c) { in decode() method in Base64
118 public static byte[] decode(String s) { in decode() method in Base64
122 decode(s, bos); in decode()
129 public static void decode(String s, OutputStream os) in decode() method in Base64
143 (decode(s.charAt(i)) << 18) in decode()
144 + (decode(s.charAt(i + 1)) << 12) in decode()
145 + (decode(s.charAt(i + 2)) << 6) in decode()
146 + (decode(s.charAt(i + 3))); in decode()
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
DInstructionCodec.java33 @Override public DecodedInstruction decode(int opcodeUnit, in FORMAT_00X() method
46 @Override public DecodedInstruction decode(int opcodeUnit, in FORMAT_10X() method
61 @Override public DecodedInstruction decode(int opcodeUnit, in FORMAT_12X() method
80 @Override public DecodedInstruction decode(int opcodeUnit, in FORMAT_11N() method
99 @Override public DecodedInstruction decode(int opcodeUnit, in FORMAT_11X() method
115 @Override public DecodedInstruction decode(int opcodeUnit, in FORMAT_10T() method
132 @Override public DecodedInstruction decode(int opcodeUnit, in FORMAT_20T() method
150 @Override public DecodedInstruction decode(int opcodeUnit, in FORMAT_20BC() method
169 @Override public DecodedInstruction decode(int opcodeUnit, in FORMAT_22X() method
188 @Override public DecodedInstruction decode(int opcodeUnit, in FORMAT_21T() method
[all …]
/external/chromium_org/v8/src/
Dfield-index.h34 return IsInObjectBits::decode(bit_field_); in is_inobject()
38 return IsDoubleBits::decode(bit_field_); in is_double()
47 return IndexBits::decode(bit_field_); in index()
58 DCHECK(!IsHiddenField::decode(bit_field_)); in property_index()
61 result += InObjectPropertyBits::decode(bit_field_); in property_index()
89 DCHECK(!IsHiddenField::decode(bit_field_)); in first_inobject_property_offset()
90 return FirstInobjectPropertyOffsetBits::decode(bit_field_); in first_inobject_property_offset()
Dcode-stubs.h153 return static_cast<Major>(MajorKeyBits::decode(key)); in MajorKeyFromKey()
156 return MinorKeyBits::decode(key); in MinorKeyFromKey()
447 bool IsUninitialized() const { return IsMissBits::decode(minor_key_); } in IsUninitialized()
465 uint32_t sub_minor_key() const { return SubMinorKeyBits::decode(minor_key_); } in sub_minor_key()
575 return StrictModeBits::decode(sub_minor_key()); in strict_mode()
579 return FunctionKindBits::decode(sub_minor_key()); in kind()
603 int slots() const { return SlotsBits::decode(sub_minor_key()); } in slots()
625 return AllocationSiteModeBits::decode(sub_minor_key()); in allocation_site_mode()
648 int length() const { return LengthBits::decode(sub_minor_key()); } in length()
694 Flags flags() const { return FlagBits::decode(minor_key_); } in flags()
[all …]
/external/chromium_org/mojo/public/js/bindings/
Dcodec.js149 val[i] = cls.decode(this);
156 return cls.decode(this);
164 return cls.decode(this.decodeAndCreateDecoder(pointer));
469 return cls.decode(this.decoder);
483 Int8.decode = function(decoder) { function
500 Uint8.decode = function(decoder) { function
513 Int16.decode = function(decoder) { function
526 Uint16.decode = function(decoder) { function
539 Int32.decode = function(decoder) { function
552 Uint32.decode = function(decoder) { function
[all …]
/external/libvorbis/doc/
D08-residue.tex4 \section{Residue setup and decode} \label{vorbis:spec:residue}
17 vectors during decode. Vorbis makes use of three different encoding
48 decode that partition. The classification numbers of each partition
63 from multiple decode passes. The classification value associated with
144 as in type 1 with decode interleave reversed. If operating on a single
153 \subsection{Residue decode} argument
155 \subsubsection{header decode} argument
157 Header decode for all three residue types is identical.
231 An end-of-packet condition at any point in header decode renders the
241 \subsubsection{packet decode} argument
[all …]
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
DEncodeHtmlDataUriTest.java24 private String decode(String dataUri) throws java.io.UnsupportedEncodingException { in decode() method in EncodeHtmlDataUriTest
26 return URLDecoder.decode(data, "UTF-8"); in decode()
33 String decodedUri = decode(encodedUri); in testDelimitersEncoding()
41 String decodedUri = decode(encodedUri); in testUnwiseCharactersEncoding()
49 String decodedUri = decode(encodedUri); in testWhitespaceEncoding()
58 String decodedUri = decode(encodedUri); in testReturnsValidUri()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
DHex.java96 public static byte[] decode( in decode() method in Hex
103 encoder.decode(data, 0, data.length, bOut); in decode()
118 public static byte[] decode( in decode() method in Hex
125 encoder.decode(data, bOut); in decode()
141 public static int decode( in decode() method in Hex
146 return encoder.decode(data, out); in decode()
DBase64.java97 public static byte[] decode( in decode() method in Base64
105 encoder.decode(data, 0, data.length, bOut); in decode()
120 public static byte[] decode( in decode() method in Base64
128 encoder.decode(data, bOut); in decode()
144 public static int decode( in decode() method in Base64
149 return encoder.decode(data, out); in decode()
/external/apache-http/src/org/apache/commons/codec/net/
DQuotedPrintableCodec.java234 public byte[] decode(byte[] bytes) throws DecoderException { in decode() method in QuotedPrintableCodec
280 …public String decode(String pString, String charset) throws DecoderException, UnsupportedEncodingE… in decode() method in QuotedPrintableCodec
284 return new String(decode(pString.getBytes(StringEncodings.US_ASCII)), charset); in decode()
300 public String decode(String pString) throws DecoderException { in decode() method in QuotedPrintableCodec
305 return decode(pString, getDefaultCharset()); in decode()
346 public Object decode(Object pObject) throws DecoderException { in decode() method in QuotedPrintableCodec
350 return decode((byte[]) pObject); in decode()
352 return decode((String) pObject); in decode()
DURLCodec.java210 public byte[] decode(byte[] bytes) throws DecoderException { in decode() method in URLCodec
269 public String decode(String pString, String charset) in decode() method in URLCodec
275 return new String(decode(pString.getBytes(StringEncodings.US_ASCII)), charset); in decode()
290 public String decode(String pString) throws DecoderException { in decode() method in URLCodec
295 return decode(pString, getDefaultCharset()); in decode()
335 public Object decode(Object pObject) throws DecoderException { in decode() method in URLCodec
339 return decode((byte[])pObject); in decode()
341 return decode((String)pObject); in decode()
/external/nanopb-c/examples/using_union_messages/
DMakefile8 all: encode decode
9 ./encode 1 | ./decode
10 ./encode 2 | ./decode
11 ./encode 3 | ./decode
DREADME.txt9 This directory contains an example on how to encode and decode union messages
27 ./encode 1 | ./decode
29 ./encode 2 | ./decode
31 ./encode 3 | ./decode
34 This simply demonstrates that the "decode" program has correctly identified
35 the type of the received message, and managed to decode it.
48 decode.c reads a UnionMessage from stdin. Then it calls the function
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/delay_tool/
Dplot_neteq_delay.m48 s.arrival(one_desc_ix(k))=s.arrival(ix)+s.decode(one_desc_ix(k))-s.decode(ix);
53 ix=find(isfinite(s.decode));
61 s.decode=s.decode(ix);
75 s.decode=s.decode(sort_ix);
124 %h=plot(send_t(seq_ix)/1000,s.decode+s.playout_delay-send_t(seq_ix));
125 h=plot(send_t(cng_ix)/1000,s.decode(cng_ix)+s.playout_delay(cng_ix)-send_t(cng_ix));
140 intersect(find(isfinite(s.decode)),... % ... that did arrive ...
141 (delayskip_ix:length(s.decode))')); % ... and are sent after delayskip seconds
143 mean_delay = mean(s.decode(use_ix)+s.playout_delay(use_ix)-send_t(use_ix));
144 neteq_delay = mean(s.decode(use_ix)+s.playout_delay(use_ix)-s.arrival(use_ix));
[all …]
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/provider/cert/
DCertFactoryTestData.java298 return Base64.decode(certPathPKCS7Base64.getBytes("UTF-8")); in getCertPathPKCS7Encoding()
302 return Base64.decode(certPathPkiPathBase64.getBytes("UTF-8")); in getCertPathPkiPathEncoding()
306 return Base64.decode(certEncodingBase64.getBytes("UTF-8")); in getCertEncoding()
318 return Base64.decode(crlEncodingBase64.getBytes("UTF-8")); in getCRLEncoding()
/external/chromium_org/tools/memory_inspector/memory_inspector/data/
Dserialization.py73 def decode(self, json_str): # pylint: disable=W0221 member in MmapDecoder
74 d = super(MmapDecoder, self).decode(json_str)
83 def decode(self, json_str): # pylint: disable=W0221 member in SymbolsDecoder
84 d = super(SymbolsDecoder, self).decode(json_str)
95 def decode(self, json_str): # pylint: disable=W0221 member in NativeHeapDecoder
96 d = super(NativeHeapDecoder, self).decode(json_str)
/external/llvm/test/MC/Disassembler/X86/
Dinvalid-cmp-imm.txt3 # This instruction would decode as cmpordps if the immediate byte was less than 8.
5 # This instruction would decode as cmpordpd if the immediate byte was less than 8.
7 # This instruction would decode as cmpordss if the immediate byte was less than 8.
9 # This instruction would decode as cmpordsd if the immediate byte was less than 8.
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
DDerGeneralizedTimeEDTest.java127 assertEquals("full", myDate, gTime.decode(dis)); in runTest()
136 assertEquals("2 fraction", myDate, gTime.decode(dis)); in runTest()
145 assertEquals("1 fraction", myDate, gTime.decode(dis)); in runTest()
154 assertEquals("no fraction", myDate, gTime.decode(dis)); in runTest()
164 assertEquals("midnight", myDate, gTime.decode(dis)); in runTest()
173 assertEquals("100ms", myDate, gTime.decode(dis)); in runTest()

12345678910>>...27