HomeSort by relevance Sort by last modified time
    Searched refs:Decode (Results 26 - 50 of 560) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webrtc/webrtc/base/
base64.h 73 static inline std::string Decode(const std::string& data, DecodeFlags flags) {
78 static inline bool Decode(const std::string& data, DecodeFlags flags,
83 static inline bool Decode(const std::string& data, DecodeFlags flags,
  /external/webrtc/webrtc/test/
fake_decoder.cc 33 int32_t FakeDecoder::Decode(const EncodedImage& input,
66 int32_t FakeH264Decoder::Decode(const EncodedImage& input,
85 return FakeDecoder::Decode(input,
  /art/test/148-multithread-gc-annotations/
gc_coverage.cc 38 return reinterpret_cast<jlong>(soa.Decode<mirror::Object>(object).Ptr());
  /external/brotli/java/org/brotli/dec/
HuffmanTreeGroup.java 48 static void decode(HuffmanTreeGroup group, BitReader br) { method in class:HuffmanTreeGroup
53 Decode.readHuffmanCode(group.alphabetSize, group.codes, next, br);
  /external/lzma/CPP/7zip/Archive/
XzHandler.h 57 /* Decode() can return ERROR code only if there is progress or stream error.
58 Decode() returns S_OK in case of xz decoding error, but DecodeRes and CStatInfo contain error information */
59 HRESULT Decode(ISequentialInStream *seqInStream, ISequentialOutStream *outStream, ICompressProgressInfo *compressProgress);
  /external/v8/src/interpreter/
bytecode-decoder.h 41 // Decode a single bytecode and operands to |os|.
42 static std::ostream& Decode(std::ostream& os, const uint8_t* bytecode_start,
  /external/webrtc/webrtc/modules/video_coding/codecs/h264/
h264_video_toolbox_decoder.h 36 int Decode(const EncodedImage& input_image,
  /prebuilts/go/darwin-x86/doc/progs/
json4.go 21 func Decode() {
44 Decode()
  /prebuilts/go/linux-x86/doc/progs/
json4.go 21 func Decode() {
44 Decode()
  /system/nvram/messages/include/nvram/messages/
proto.hpp 21 // to encode and decode.
67 // if (!nvram::proto::Decode(&employee, &stream)) {
72 // needs to encode or decode messages. Rather, this header should only be
74 // |nvram::proto::Encode()| and |nvram::proto::Decode()| templates to obtain
76 // in decode and encode logic getting compiled in only one translation unit,
109 // * |static bool Decode(Type& object, ProtoReader* reader)| decodes a field
119 // then you are attempting to encode or decode a struct that contains a field
139 // noinline to prevent the compiler from inlining |Codec::Decode| for every
143 return Codec::Decode(value, reader);
157 static bool Decode(Blob& blob, ProtoReader* reader)
    [all...]
message_codec.h 110 // Convenience helper that constructs a decoder and invokes |Decode()|.
111 static bool Decode(void* object,
116 // Decode a nested protobuf message wrapped in a length-delimited protobuf
118 bool Decode(ProtoReader* reader);
120 // Decode a protobuf message from reader. This just reads the sequence of
131 // The object to decode to. This is a void pointer to keep the decoder generic
132 // and avoid type-specific code for each struct type. The decode function in
  /art/runtime/openjdkjvmti/
ti_object.cc 52 art::ObjPtr<art::mirror::Object> object = soa.Decode<art::mirror::Object>(jobject);
69 art::ObjPtr<art::mirror::Object> object = soa.Decode<art::mirror::Object>(jobject);
  /art/test/595-profile-saving/
profile-saving.cc 40 ObjPtr<mirror::Executable> exec = soa.Decode<mirror::Executable>(method);
58 ObjPtr<mirror::Executable> exec = soa.Decode<mirror::Executable>(method);
  /art/test/596-app-images/
app_images.cc 51 ObjPtr<mirror::Class> klass_ptr = soa.Decode<mirror::Class>(c);
68 ObjPtr<mirror::Class> klass_ptr = soa.Decode<mirror::Class>(c);
  /art/test/497-inlining-and-class-loader/
clear_dex_cache.cc 35 mirror::DexCache* dex_cache = soa.Decode<mirror::Class>(cls)->GetDexCache();
49 ObjPtr<mirror::Array> decoded_array = soa.Decode<mirror::Array>(array);
70 mirror::DexCache* dex_cache = soa.Decode<mirror::Class>(cls)->GetDexCache();
73 soa.Decode<mirror::Class>(cls)->GetDexCache()->GetResolvedMethods();
75 ObjPtr<mirror::Array> old = soa.Decode<mirror::Array>(old_cache);
  /art/compiler/linker/arm/
relative_patcher_thumb2.cc 112 BakerReadBarrierKind kind = BakerReadBarrierKindField::Decode(encoded_data);
116 BakerReadBarrierWidth width = BakerReadBarrierWidthField::Decode(encoded_data);
122 const uint32_t base_reg = BakerReadBarrierFirstRegField::Decode(encoded_data);
129 const uint32_t base_reg = BakerReadBarrierFirstRegField::Decode(encoded_data);
139 const uint32_t base_reg = BakerReadBarrierFirstRegField::Decode(encoded_data);
145 BakerReadBarrierWidth width = BakerReadBarrierWidthField::Decode(encoded_data);
150 const uint32_t root_reg = BakerReadBarrierFirstRegField::Decode(encoded_data);
156 const uint32_t root_reg = BakerReadBarrierFirstRegField::Decode(encoded_data);
223 BakerReadBarrierKind kind = BakerReadBarrierKindField::Decode(encoded_data);
230 Register base_reg(BakerReadBarrierFirstRegField::Decode(encoded_data))
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/ascii85/
ascii85_test.go 109 ndst, nsrc, err := Decode(dbuf, []byte(p.encoded), true)
110 testEqual(t, "Decode(%q) = error %v, want %v", p.encoded, err, error(nil))
111 testEqual(t, "Decode(%q) = nsrc %v, want %v", p.encoded, nsrc, len(p.encoded))
112 testEqual(t, "Decode(%q) = ndst %v, want %v", p.encoded, ndst, len(p.decoded))
113 testEqual(t, "Decode(%q) = %q, want %q", p.encoded, string(dbuf[0:ndst]), p.decoded)
158 _, _, err := Decode(dbuf, []byte(e.e), true)
197 t.Errorf("Decode(Encode(%d-byte string)) failed at offset %d", n, i)
205 t.Errorf("Decode gave error %v", err)
208 t.Errorf("Decode failed: got %v, want %v", decoded, want)
  /prebuilts/go/linux-x86/src/encoding/ascii85/
ascii85_test.go 109 ndst, nsrc, err := Decode(dbuf, []byte(p.encoded), true)
110 testEqual(t, "Decode(%q) = error %v, want %v", p.encoded, err, error(nil))
111 testEqual(t, "Decode(%q) = nsrc %v, want %v", p.encoded, nsrc, len(p.encoded))
112 testEqual(t, "Decode(%q) = ndst %v, want %v", p.encoded, ndst, len(p.decoded))
113 testEqual(t, "Decode(%q) = %q, want %q", p.encoded, string(dbuf[0:ndst]), p.decoded)
158 _, _, err := Decode(dbuf, []byte(e.e), true)
197 t.Errorf("Decode(Encode(%d-byte string)) failed at offset %d", n, i)
205 t.Errorf("Decode gave error %v", err)
208 t.Errorf("Decode failed: got %v, want %v", decoded, want)
  /art/runtime/native/
java_lang_StringFactory.cc 40 Handle<mirror::ByteArray> byte_array(hs.NewHandle(soa.Decode<mirror::ByteArray>(java_data)));
64 Handle<mirror::CharArray> char_array(hs.NewHandle(soa.Decode<mirror::CharArray>(java_data)));
81 Handle<mirror::String> string(hs.NewHandle(soa.Decode<mirror::String>(to_copy)));
java_lang_reflect_Array.cc 38 Handle<mirror::Class> element_class(hs.NewHandle(soa.Decode<mirror::Class>(javaElementClass)));
41 ObjPtr<mirror::Object> dimensions_obj = soa.Decode<mirror::Object>(javaDimArray);
60 ObjPtr<mirror::Class> element_class = soa.Decode<mirror::Class>(javaElementClass);
  /art/test/626-const-class-linking/
clear_dex_cache_types.cc 28 mirror::DexCache* dex_cache = soa.Decode<mirror::Class>(cls)->GetDexCache();
38 Handle<mirror::Class> klass = hs.NewHandle(soa.Decode<mirror::Class>(cls));
52 hs.NewHandle(soa.Decode<mirror::ObjectArray<mirror::Object>>(array));
  /external/webrtc/webrtc/video/
video_decoder.cc 85 int32_t VideoDecoderSoftwareFallbackWrapper::Decode(
94 int32_t ret = decoder_->Decode(input_image, missing_frames, fragmentation,
98 // Decode OK -> stop using fallback decoder.
112 return fallback_decoder_->Decode(input_image, missing_frames, fragmentation,
  /system/nvram/messages/
message_codec.cpp 89 bool MessageDecoderBase::Decode(void* object,
94 return decoder.Decode(reader);
97 bool MessageDecoderBase::Decode(ProtoReader* reader) {
  /bionic/tools/relocation_packer/src/
delta_encoder.h 5 // Delta encode and decode REL/RELA section of elf file.
111 // Decode relative relocations with addends from their more compact form.
114 static void Decode(const std::vector<ElfAddr>& packed,
  /external/lzma/CPP/7zip/Archive/7z/
7zDecode.h 46 HRESULT Decode(

Completed in 319 milliseconds

12 3 4 5 6 7 8 91011>>