/external/libvpx/libvpx/test/ |
D | codec_factory.h | 35 virtual Decoder *CreateDecoder(vpx_codec_dec_cfg_t cfg) const = 0; 37 virtual Decoder *CreateDecoder(vpx_codec_dec_cfg_t cfg, 115 virtual Decoder *CreateDecoder(vpx_codec_dec_cfg_t cfg) const { in CreateDecoder() function 116 return CreateDecoder(cfg, 0); in CreateDecoder() 119 virtual Decoder *CreateDecoder(vpx_codec_dec_cfg_t cfg, in CreateDecoder() function 211 virtual Decoder *CreateDecoder(vpx_codec_dec_cfg_t cfg) const { in CreateDecoder() function 212 return CreateDecoder(cfg, 0); in CreateDecoder() 215 virtual Decoder *CreateDecoder(vpx_codec_dec_cfg_t cfg, in CreateDecoder() function
|
D | tile_independence_test.cc | 34 fw_dec_ = codec_->CreateDecoder(cfg, 0); in TileIndependenceTest() 35 inv_dec_ = codec_->CreateDecoder(cfg, 0); in TileIndependenceTest()
|
D | decode_test_driver.cc | 68 Decoder *const decoder = codec_->CreateDecoder(dec_cfg, flags_); in RunLoop()
|
D | encode_test_driver.cc | 195 codec_->CreateDecoder(dec_cfg, dec_init_flags)); in RunLoop()
|
/external/lzma/CPP/7zip/Compress/ |
D | CodecExports.cpp | 71 || (encode ? !codec.CreateEncoder : !codec.CreateDecoder) in FindCodecClassId() 95 c = codec.CreateDecoder(); in CreateCoderMain() 120 if (encode ? !codec.CreateEncoder : !codec.CreateDecoder) in CreateCoder2() 139 STDAPI CreateDecoder(UInt32 index, const GUID *iid, void **outObject) in CreateDecoder() function 192 if (codec.CreateDecoder) in GetMethodProperty() 201 value->boolVal = BoolToVARIANT_BOOL(codec.CreateDecoder != NULL); in GetMethodProperty()
|
/external/lzma/CPP/7zip/Common/ |
D | CreateCoder.cpp | 311 if (codec.CreateDecoder) in CreateCoder() 313 void *p = codec.CreateDecoder(); in CreateCoder() 356 …HRESULT res = __externalCodecs->GetCodecs->CreateDecoder(i, &IID_ICompressCoder, (void **)&cod.Cod… in CreateCoder() 361 … return __externalCodecs->GetCodecs->CreateDecoder(i, &IID_ICompressFilter, (void **)&filter); in CreateCoder() 364 … return __externalCodecs->GetCodecs->CreateDecoder(i, &IID_ICompressCoder2, (void **)&cod.Coder2); in CreateCoder()
|
D | RegisterCodec.h | 14 CreateCodecP CreateDecoder; member
|
/external/lzma/CPP/7zip/UI/Common/ |
D | LoadCodecs.h | 209 Func_CreateDecoder CreateDecoder; member 222 CreateDecoder(NULL), in CCodecLib() 327 STDMETHOD(CreateDecoder)(UInt32 index, const GUID *iid, void **coder);
|
D | LoadCodecs.cpp | 252 lib.CreateDecoder = (Func_CreateDecoder)lib.Lib.GetProc("CreateDecoder"); in LoadCodecs() 801 STDAPI CreateDecoder(UInt32 index, const GUID *iid, void **outObject); 855 STDMETHODIMP CCodecs::CreateDecoder(UInt32 index, const GUID *iid, void **coder) in CreateDecoder() function in CCodecs 859 return CreateDecoder(index, iid, coder); in CreateDecoder() 867 if (lib.CreateDecoder) in CreateDecoder() 868 return lib.CreateDecoder(ci.CodecIndex, iid, (void **)coder); in CreateDecoder()
|
/external/lzma/CPP/7zip/Archive/ |
D | Archive2.def | 11 CreateDecoder PRIVATE
|
/external/pdfium/core/fxcodec/codec/ |
D | ccodec_faxmodule.h | 19 std::unique_ptr<CCodec_ScanlineDecoder> CreateDecoder(const uint8_t* src_buf,
|
D | ccodec_jpxmodule.h | 23 std::unique_ptr<CJPX_Decoder> CreateDecoder(const uint8_t* src_buf,
|
D | ccodec_tiffmodule.h | 26 std::unique_ptr<Context> CreateDecoder(
|
D | ccodec_flatemodule.h | 18 std::unique_ptr<CCodec_ScanlineDecoder> CreateDecoder(const uint8_t* src_buf,
|
D | ccodec_jpegmodule.h | 31 std::unique_ptr<CCodec_ScanlineDecoder> CreateDecoder(const uint8_t* src_buf,
|
D | fx_codec_fax.cpp | 582 std::unique_ptr<CCodec_ScanlineDecoder> CCodec_FaxModule::CreateDecoder( in CreateDecoder() function in CCodec_FaxModule
|
/external/pdfium/testing/libfuzzer/ |
D | pdf_codec_fax_fuzzer.cc | 33 fax_module.CreateDecoder(data, size, width, height, K, EndOfLine, in LLVMFuzzerTestOneInput()
|
D | pdf_jpx_fuzzer.cc | 19 g_module.CreateDecoder(data, size, nullptr); in LLVMFuzzerTestOneInput()
|
/external/pdfium/core/fpdfapi/render/ |
D | cpdf_dibsource.cpp | 182 if (!CreateDecoder()) in Load() 294 int iCreatedDecoder = CreateDecoder(); in StartLoadDIBSource() 477 int CPDF_DIBSource::CreateDecoder() { in CreateDecoder() function in CPDF_DIBSource 537 m_pDecoder = pJpegModule->CreateDecoder( in CreateDCTDecoder() 553 m_pDecoder = pJpegModule->CreateDecoder( in CreateDCTDecoder() 601 m_pDecoder = pJpegModule->CreateDecoder(src_data, src_size, m_Width, m_Height, in CreateDCTDecoder() 609 context->set_decoder(pJpxModule->CreateDecoder( in LoadJpxBitmap()
|
D | cpdf_dibsource.h | 89 int CreateDecoder();
|
/external/webrtc/webrtc/modules/video_coding/ |
D | codec_database.h | 141 VCMGenericDecoder* CreateDecoder(VideoCodecType type) const;
|
D | codec_database.cc | 549 ptr_decoder = CreateDecoder(decoder_item->settings->codecType); in CreateAndInitDecoder() 579 VCMGenericDecoder* VCMCodecDataBase::CreateDecoder(VideoCodecType type) const { in CreateDecoder() function in webrtc::VCMCodecDataBase
|
/external/pdfium/core/fpdfapi/parser/ |
D | fpdf_parser_decode.cpp | 277 return CPDF_ModuleMgr::Get()->GetFaxModule()->CreateDecoder( in FPDFAPI_CreateFaxDecoder() 302 return CPDF_ModuleMgr::Get()->GetFlateModule()->CreateDecoder( in FPDFAPI_CreateFlateDecoder()
|
/external/lzma/CPP/7zip/ |
D | ICoder.h | 281 STDMETHOD(CreateDecoder)(UInt32 index, const GUID *iid, void **coder) PURE;
|
/external/pdfium/core/fpdfapi/page/ |
D | cpdf_streamparser.cpp | 91 CPDF_ModuleMgr::Get()->GetJpegModule()->CreateDecoder( in DecodeInlineStream()
|