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

1 2 3 4 5 67 8 91011>>

  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/
BaseUefiTianoCustomDecompressLibInternals.h 181 Read in and decode the Char&Len Set Code Length Array, then
193 Decode a character/length value.
210 Decode the source data and put the resulting data into the destination buffer.
216 Decode (
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseUefiDecompressLib/
BaseUefiDecompressLibInternals.h 172 Read in and decode the Char&Len Set Code Length Array, then
184 Decode a character/length value.
201 Decode the source data and put the resulting data into the destination buffer.
207 Decode (
  /external/mesa3d/src/gallium/state_trackers/omx/
vid_dec.h 77 void (*Decode)(vid_dec_PrivateType *priv, struct vl_vlc *vlc, unsigned min_bits_left); \
  /external/skia/include/core/
SkVertices.h 103 static sk_sp<SkVertices> Decode(const void* buffer, size_t length);
107 * by calling Decode() with the buffer.
  /external/v4l2_codec2/vda/
video_decode_accelerator.h 233 virtual void Decode(const BitstreamBuffer& bitstream_buffer) = 0;
273 // decoder returned to a state ready for further Decode()s, followed by
290 // A decode "task" is a sequence that includes a Decode() call from Client,
297 // If true is returned, the client may submit each Decode() call (but no other
309 // NOTE 2: VDA implementations of Decode() must return as soon as possible and
316 // to run decode operations without GL context, which helps reduce latency and
  /external/webrtc/webrtc/modules/audio_coding/codecs/
audio_decoder.cc 20 int AudioDecoder::Decode(const uint8_t* encoded, size_t encoded_len,
23 TRACE_EVENT0("webrtc", "AudioDecoder::Decode");
  /external/webrtc/webrtc/modules/utility/source/
coder.cc 51 int32_t AudioCoder::Decode(AudioFrame& decodedAudio,
  /external/webrtc/webrtc/modules/video_coding/codecs/interface/mock/
mock_video_codec_interface.h 67 MOCK_METHOD5(Decode,
  /external/webrtc/webrtc/modules/video_coding/include/mock/
mock_video_codec_interface.h 66 MOCK_METHOD5(Decode,
  /prebuilts/go/darwin-x86/src/mime/
example_test.go 29 header, err := dec.Decode("=?utf-8?q?=C2=A1Hola,_se=C3=B1or!?=")
50 header, err = dec.Decode("=?x-case?q?hello!?=")
  /prebuilts/go/darwin-x86/src/unicode/utf16/
utf16.go 86 // Decode returns the Unicode code point sequence represented
88 func Decode(s []uint16) []rune {
  /prebuilts/go/linux-x86/src/mime/
example_test.go 29 header, err := dec.Decode("=?utf-8?q?=C2=A1Hola,_se=C3=B1or!?=")
50 header, err = dec.Decode("=?x-case?q?hello!?=")
  /prebuilts/go/linux-x86/src/unicode/utf16/
utf16.go 86 // Decode returns the Unicode code point sequence represented
88 func Decode(s []uint16) []rune {
  /system/core/libunwindstack/
ArmExidx.h 59 bool Decode();
  /system/nvram/hal/
testing_nvram_implementation.cpp 120 if (!nvram::Decode(command_buffer_, static_cast<size_t>(rc), response)) {
121 LOG(ERROR) << "Failed to decode NVRAM response.";
  /art/runtime/mirror/
dex_cache_test.cc 85 soa.Decode<mirror::ClassLoader>(jclass_loader)));
99 soa.Decode<mirror::ClassLoader>(jclass_loader)));
126 soa.Decode<mirror::ClassLoader>(jclass_loader)));
  /art/runtime/native/
java_lang_Class.cc 53 ObjPtr<mirror::Class> c = soa.Decode<mirror::Class>(java_class);
83 hs.NewHandle(soa.Decode<mirror::ClassLoader>(javaLoader)));
352 auto name_string = soa.Decode<mirror::String>(name);
364 Handle<mirror::String> h_string = hs.NewHandle(soa.Decode<mirror::String>(name));
401 soa.Decode<mirror::ObjectArray<mirror::Class>>(args));
453 soa.Decode<mirror::String>(name),
454 soa.Decode<mirror::ObjectArray<mirror::Class>>(args));
511 Handle<mirror::Class> annotation_class(hs.NewHandle(soa.Decode<mirror::Class>(annotationClass)));
523 soa.Decode<mirror::Class>(WellKnownClasses::java_lang_annotation_Annotation__array);
577 if (soa.Decode<mirror::Class>(WellKnownClasses::java_lang_reflect_Constructor) =
    [all...]
java_lang_Thread.cc 114 ObjPtr<mirror::Object> object = soa.Decode<mirror::Object>(java_object);
137 if (soa.Decode<mirror::Object>(peer) == soa.Self()->GetPeer()) {
181 ObjPtr<mirror::Object> lock = soa.Decode<mirror::Object>(java_lock);
  /prebuilts/go/darwin-x86/src/cmd/internal/objfile/
disasm.go 140 d.Decode(symStart, symEnd, relocs, func(pc, size uint64, file string, line int, text string) {
162 // Decode disassembles the text segment range [start, end), calling f for each instruction.
163 func (d *Disasm) Decode(start, end uint64, relocs []Reloc, f func(pc, size uint64, file string, line int, text string)) {
204 inst, err := x86asm.Decode(code, 64)
237 inst, err := armasm.Decode(code, armasm.ModeARM)
250 inst, err := ppc64asm.Decode(code, byteOrder)
  /prebuilts/go/darwin-x86/src/net/rpc/jsonrpc/
all_test.go 70 if err := dec.Decode(&resp); err != nil {
71 t.Fatalf("Decode after no params: %s", err)
86 if err := dec.Decode(&resp); err != nil {
87 t.Fatalf("Decode after empty: %s", err)
104 err := dec.Decode(&resp)
106 t.Fatalf("Decode: %s", err)
  /prebuilts/go/linux-x86/src/cmd/internal/objfile/
disasm.go 140 d.Decode(symStart, symEnd, relocs, func(pc, size uint64, file string, line int, text string) {
162 // Decode disassembles the text segment range [start, end), calling f for each instruction.
163 func (d *Disasm) Decode(start, end uint64, relocs []Reloc, f func(pc, size uint64, file string, line int, text string)) {
204 inst, err := x86asm.Decode(code, 64)
237 inst, err := armasm.Decode(code, armasm.ModeARM)
250 inst, err := ppc64asm.Decode(code, byteOrder)
  /prebuilts/go/linux-x86/src/net/rpc/jsonrpc/
all_test.go 70 if err := dec.Decode(&resp); err != nil {
71 t.Fatalf("Decode after no params: %s", err)
86 if err := dec.Decode(&resp); err != nil {
87 t.Fatalf("Decode after empty: %s", err)
104 err := dec.Decode(&resp)
106 t.Fatalf("Decode: %s", err)
  /art/compiler/linker/arm64/
relative_patcher_arm64.cc 311 BakerReadBarrierKind kind = BakerReadBarrierKindField::Decode(encoded_data);
319 const uint32_t base_reg = BakerReadBarrierFirstRegField::Decode(encoded_data);
329 const uint32_t base_reg = BakerReadBarrierFirstRegField::Decode(encoded_data);
338 const uint32_t root_reg = BakerReadBarrierFirstRegField::Decode(encoded_data);
402 BakerReadBarrierKind kind = BakerReadBarrierKindField::Decode(encoded_data);
410 Register::GetXRegFromCode(BakerReadBarrierFirstRegField::Decode(encoded_data));
413 Register::GetXRegFromCode(BakerReadBarrierSecondRegField::Decode(encoded_data));
446 Register::GetXRegFromCode(BakerReadBarrierFirstRegField::Decode(encoded_data));
448 DCHECK_EQ(kInvalidEncodedReg, BakerReadBarrierSecondRegField::Decode(encoded_data));
474 Register::GetWRegFromCode(BakerReadBarrierFirstRegField::Decode(encoded_data))
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
encodings.h 50 //! \brief Decode a Unicode codepoint from an input stream.
55 static bool Decode(InputStream& is, unsigned* codepoint);
61 //! \note This function just validating and copying the codepoint without actually decode it.
124 static bool Decode(InputStream& is, unsigned* codepoint) {
263 static bool Decode(InputStream& is, unsigned* codepoint) {
386 static bool Decode(InputStream& is, unsigned* codepoint) {
495 static bool Decode(InputStream& is, unsigned* codepoint) {
565 RAPIDJSON_FORCEINLINE static bool Decode(InputStream& is, unsigned* codepoint) {
567 static const DecodeFunc f[] = { RAPIDJSON_ENCODINGS_FUNC(Decode) };
591 if (!SourceEncoding::Decode(is, &codepoint))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
certenc.h 129 virtual HRESULT WINAPI Decode(const BSTR strBinary) = 0;
147 HRESULT (WINAPI *Decode)(ICertEncodeStringArray *This,const BSTR strBinary);
167 #define ICertEncodeStringArray_Decode(This,strBinary) (This)->lpVtbl->Decode(This,strBinary)
198 virtual HRESULT WINAPI Decode(const BSTR strBinary) = 0;
215 HRESULT (WINAPI *Decode)(ICertEncodeLongArray *This,const BSTR strBinary);
234 #define ICertEncodeLongArray_Decode(This,strBinary) (This)->lpVtbl->Decode(This,strBinary)
262 virtual HRESULT WINAPI Decode(const BSTR strBinary) = 0;
279 HRESULT (WINAPI *Decode)(ICertEncodeDateArray *This,const BSTR strBinary);
298 #define ICertEncodeDateArray_Decode(This,strBinary) (This)->lpVtbl->Decode(This,strBinary)
326 virtual HRESULT WINAPI Decode(const BSTR strBinary) = 0
    [all...]

Completed in 1537 milliseconds

1 2 3 4 5 67 8 91011>>