HomeSort by relevance Sort by last modified time
    Searched full:decode (Results 101 - 125 of 3619) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
DSAEncoder.java 11 BigInteger[] decode(byte[] sig) method in interface:DSAEncoder
  /external/libvpx/libvpx/examples/
decoder_tmpl.txt 34 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ DECODE
35 /* Decode the frame */
37 die_codec(&codec, "Failed to decode frame");
38 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ DECODE
  /external/llvm/test/MC/Disassembler/X86/
invalid-VEX-vvvv.txt 3 # This instruction would decode as movmskps if the vvvv field in the VEX prefix was all 1s.
  /external/openfst/src/include/fst/script/
decode.h 32 void Decode(DecodeArgs *args) {
35 EncodeMapper<Arc> *decoder = EncodeMapper<Arc>::Read(args->arg2, DECODE);
36 Decode(ofst, *decoder);
41 void Decode(MutableFstClass *fst, const string &coder_fname);
  /external/skia/tools/
LazyDecodeBitmap.h 18 * Decode the image with DecodeMemoryToTarget but defer the process until it is needed.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
mbcs.py 20 def decode(input, errors='strict'): function
34 decode = mbcs_decode variable in class:StreamReader
42 decode=decode,
raw_unicode_escape.py 18 decode = codecs.raw_unicode_escape_decode variable in class:Codec
25 def decode(self, input, final=False): member in class:IncrementalDecoder
40 decode=Codec.decode,
undefined.py 21 def decode(self,input,errors='strict'): member in class:Codec
29 def decode(self, input, final=False): member in class:IncrementalDecoder
44 decode=Codec().decode,
unicode_escape.py 18 decode = codecs.unicode_escape_decode variable in class:Codec
25 def decode(self, input, final=False): member in class:IncrementalDecoder
40 decode=Codec.decode,
unicode_internal.py 18 decode = codecs.unicode_internal_decode variable in class:Codec
25 def decode(self, input, final=False): member in class:IncrementalDecoder
40 decode=Codec.decode,
quopri_codec.py 29 """Decode the input, returning a tuple (output object, length consumed).
39 quopri.decode(f, g)
47 def decode(self, input,errors='strict'): member in class:Codec
55 def decode(self, input, final=False): member in class:IncrementalDecoder
70 decode=quopri_decode,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
mbcs.py 20 def decode(input, errors='strict'): function
34 decode = mbcs_decode variable in class:StreamReader
42 decode=decode,
raw_unicode_escape.py 18 decode = codecs.raw_unicode_escape_decode variable in class:Codec
25 def decode(self, input, final=False): member in class:IncrementalDecoder
40 decode=Codec.decode,
undefined.py 21 def decode(self,input,errors='strict'): member in class:Codec
29 def decode(self, input, final=False): member in class:IncrementalDecoder
44 decode=Codec().decode,
unicode_escape.py 18 decode = codecs.unicode_escape_decode variable in class:Codec
25 def decode(self, input, final=False): member in class:IncrementalDecoder
40 decode=Codec.decode,
unicode_internal.py 18 decode = codecs.unicode_internal_decode variable in class:Codec
25 def decode(self, input, final=False): member in class:IncrementalDecoder
40 decode=Codec.decode,
quopri_codec.py 29 """Decode the input, returning a tuple (output object, length consumed).
39 quopri.decode(f, g)
47 def decode(self, input,errors='strict'): member in class:Codec
55 def decode(self, input, final=False): member in class:IncrementalDecoder
70 decode=quopri_decode,
  /external/chromium_org/net/websockets/
websocket_frame_parser.h 33 // If the parser encounters invalid payload length format, Decode() fails
34 // and returns false. Once Decode() has failed, the parser refuses to decode
35 // any more data and future invocations of Decode() will simply return false.
39 bool Decode(const char* data,
43 // Returns kWebSocketNormalClosure if the parser has not failed to decode
50 // Tries to decode a frame header from |current_read_pos_|.
  /frameworks/compile/mclinker/include/mcld/Support/
LEB128.h 30 IntType decode(const ByteType *pBuf, size_t &pSize);
33 IntType decode(const ByteType *&pBuf);
76 uint64_t decode<uint64_t>(const ByteType *pBuf, size_t &pSize);
83 uint64_t decode<uint64_t>(const ByteType *&pBuf);
89 int64_t decode<int64_t>(const ByteType *pBuf, size_t &pSize);
92 int64_t decode<int64_t>(const ByteType *&pBuf);
105 IntType decode(const char *pBuf, size_t &pSize) { function in namespace:mcld::leb128
106 return decode<IntType>(reinterpret_cast<const ByteType*>(pBuf), pSize);
110 IntType decode(const char *&pBuf) { function in namespace:mcld::leb128
111 return decode<IntType>(reinterpret_cast<const ByteType*&>(pBuf))
    [all...]
  /art/runtime/native/
java_lang_reflect_Proxy.cc 30 mirror::String* name = soa.Decode<mirror::String*>(javaName);
32 soa.Decode<mirror::ObjectArray<mirror::Class>*>(javaInterfaces);
33 mirror::ClassLoader* loader = soa.Decode<mirror::ClassLoader*>(javaLoader);
35 soa.Decode<mirror::ObjectArray<mirror::ArtMethod>*>(javaMethods);
37 soa.Decode<mirror::ObjectArray<mirror::ObjectArray<mirror::Class> >*>(javaThrows);
  /external/chromium_org/media/base/android/
media_decoder_job.h 28 // Callback when a decoder job finishes its work. Args: whether decode
44 // Prefetch so we know the decoder job has data when we call Decode().
48 // Called by MediaSourcePlayer to decode some data.
49 // |callback| - Run when decode operation has completed.
51 // Returns true if the next decode was started and |callback| will be
52 // called when the decode operation is complete.
55 bool Decode(const base::TimeTicks& start_time_ticks,
59 // Called to stop the last Decode() early.
61 // this method will just allow the decode to complete as normal. If
64 // passed to Decode() with a status of MEDIA_CODEC_STOPPED. This ensures tha
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
URLDecoderTest.java 38 * @tests java.net.URLDecoder#decode(java.lang.String)
44 assertTrue("1. Incorrect encoding/decoding", URLDecoder.decode(
46 assertTrue("2. Incorrect encoding/decoding", URLDecoder.decode(
48 assertTrue("3. Incorrect encoding/decoding", URLDecoder.decode(
53 * @tests java.net.URLDecoder#decode(java.lang.String, java.lang.String)
58 URLDecoder.decode("", "");
  /external/chromium_org/third_party/JSON/JSON-2.59/t/
99_binary.t 25 ok ($_[0] eq (JSON->new->utf8->shrink->decode($js))->[0]);
30 ok ($_[0] eq (JSON->new->utf8->shrink->decode($js))->[0]);
33 ok ($_[0] eq JSON->new->decode ($js)->[0]);
35 ok ($_[0] eq JSON->new->shrink->decode ($js)->[0]);
38 ok ($_[0] eq JSON->new->decode ($js)->[0]);
40 ok ($_[0] eq JSON->new->shrink->decode ($js)->[0]);
  /external/chromium_org/v8/src/
disassembler.h 41 // Decode instructions in the the interval [begin, end) and print the
44 static int Decode(Isolate* isolate, FILE* f, byte* begin, byte* end);
46 // Decode instructions in code.
47 static void Decode(FILE* f, Code* code);
49 // Decode instruction at pc and print disassembled instruction into f.
53 static int Decode(FILE* f, byte* pc, int* char_count);
  /external/v8/src/
disassembler.h 41 // Decode instructions in the the interval [begin, end) and print the
44 static int Decode(FILE* f, byte* begin, byte* end);
46 // Decode instructions in code.
47 static void Decode(FILE* f, Code* code);
49 // Decode instruction at pc and print disassembled instruction into f.
53 static int Decode(FILE* f, byte* pc, int* char_count);

Completed in 260 milliseconds

1 2 3 45 6 7 8 91011>>