Searched defs:cfg (Results 1 - 25 of 152) sorted by relevance

1234567

/external/libvpx/armv7a/
H A Dvpx_config.c8 static const char* const cfg = "--target=armv7-android-gcc --disable-runtime-cpu-detect --sdk-path=/usr/local/google/home/vigneshv/Downloads/android-ndk-r10 --disable-neon --disable-neon-asm --disable-examples --disable-docs --enable-realtime-only"; variable
9 const char *vpx_codec_build_config(void) {return cfg;}
/external/libvpx/armv7a-neon/
H A Dvpx_config.c8 static const char* const cfg = "--target=armv7-android-gcc --disable-runtime-cpu-detect --sdk-path=/usr/local/google/home/vigneshv/Downloads/android-ndk-r10 --disable-examples --disable-docs --enable-realtime-only"; variable
9 const char *vpx_codec_build_config(void) {return cfg;}
/external/libvpx/generic/
H A Dvpx_config.c8 static const char* const cfg = "--force-target=generic-gnu --disable-examples --disable-docs --enable-realtime-only"; variable
9 const char *vpx_codec_build_config(void) {return cfg;}
/external/libvpx/mips/
H A Dvpx_config.c8 static const char* const cfg = "--force-target=mips32-android-gcc --disable-runtime-cpu-detect --sdk-path=/usr/local/google/home/vigneshv/Downloads/android-ndk-r10 --disable-examples --disable-docs --enable-realtime-only"; variable
9 const char *vpx_codec_build_config(void) {return cfg;}
/external/libvpx/mips-dspr2/
H A Dvpx_config.c8 static const char* const cfg = "--force-target=mips32-android-gcc --disable-runtime-cpu-detect --sdk-path=/usr/local/google/home/vigneshv/Downloads/android-ndk-r10 --enable-dspr2 --disable-examples --disable-docs --enable-realtime-only"; variable
9 const char *vpx_codec_build_config(void) {return cfg;}
/external/libvpx/x86/
H A Dvpx_config.c8 static const char* const cfg = "--force-target=x86-android-gcc --disable-runtime-cpu-detect --sdk-path=/usr/local/google/home/vigneshv/Downloads/android-ndk-r10 --disable-sse3 --disable-ssse3 --disable-sse4_1 --disable-avx --disable-avx2 --enable-pic --disable-examples --disable-docs --enable-realtime-only"; variable
9 const char *vpx_codec_build_config(void) {return cfg;}
/external/libvpx/libvpx/
H A Divfenc.c17 const struct vpx_codec_enc_cfg *cfg,
29 mem_put_le16(header + 12, cfg->g_w); // width
30 mem_put_le16(header + 14, cfg->g_h); // height
31 mem_put_le32(header + 16, cfg->g_timebase.den); // rate
32 mem_put_le32(header + 20, cfg->g_timebase.num); // scale
16 ivf_write_file_header(FILE *outfile, const struct vpx_codec_enc_cfg *cfg, unsigned int fourcc, int frame_cnt) argument
H A Dvideo_writer.c25 struct vpx_codec_enc_cfg cfg; local
26 cfg.g_w = info->frame_width;
27 cfg.g_h = info->frame_height;
28 cfg.g_timebase.num = info->time_base.numerator;
29 cfg.g_timebase.den = info->time_base.denominator;
31 ivf_write_file_header(file, &cfg, info->codec_fourcc, frame_count);
H A Dwebmenc.cc24 const vpx_codec_enc_cfg_t *cfg,
44 segment->AddVideoTrack(static_cast<int>(cfg->g_w),
45 static_cast<int>(cfg->g_h),
60 const vpx_codec_enc_cfg_t *cfg,
65 cfg->g_timebase.num / cfg->g_timebase.den;
23 write_webm_file_header(struct EbmlGlobal *glob, const vpx_codec_enc_cfg_t *cfg, const struct vpx_rational *fps, stereo_format_t stereo_fmt, unsigned int fourcc) argument
59 write_webm_block(struct EbmlGlobal *glob, const vpx_codec_enc_cfg_t *cfg, const vpx_codec_cx_pkt_t *pkt) argument
/external/clang/lib/Analysis/
H A DCFGReachabilityAnalysis.cpp22 CFGReverseBlockReachabilityAnalysis::CFGReverseBlockReachabilityAnalysis(const CFG &cfg) argument
23 : analyzed(cfg.getNumBlockIDs(), false) {}
H A DPostOrderCFGView.cpp20 PostOrderCFGView::PostOrderCFGView(const CFG *cfg) { argument
21 Blocks.reserve(cfg->getNumBlockIDs());
22 CFGBlockSet BSet(cfg);
24 for (po_iterator I = po_iterator::begin(cfg, BSet),
25 E = po_iterator::end(cfg, BSet); I != E; ++I) {
32 const CFG *cfg = ctx.getCFG(); local
33 if (!cfg)
35 return new PostOrderCFGView(cfg);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
H A DBuildMachineManager.java41 // findKey represents the key in cfg from which which to obtain the list of
51 private String cfg; field in class:BuildMachineManager
57 String cfg,
64 this.cfg = cfg;
167 FileInputStream in = new FileInputStream(new File(cfg));
56 BuildMachineManager( String cfg, String markerContainer, int waitInterval, String markerName, String markerKey, String cfgKey) argument
H A DFindMachineTask.java29 // findKey represents the key in cfg from which which to obtain the list of machines
40 private String cfg; field in class:FindMachineTask
48 test.cfg="D:\\workspaces\\current\\eclipseInternalBuildTools\\testConfig.properties";
58 new BuildMachineManager(cfg,markerContainer,waitInterval,markerName,markerKey,cfgKey);
61 * @return Returns the cfg.
64 return cfg;
68 * @param cfg The cfg to set.
70 public void setCfg(String cfg) { argument
71 this.cfg
[all...]
/external/libvpx/libvpx/test/
H A Ddecode_perf_test.cc77 vpx_codec_dec_cfg_t cfg = {0}; local
78 cfg.threads = threads;
79 libvpx_test::VP9Decoder decoder(cfg, 0);
H A Duser_priv_test.cc50 vpx_codec_dec_cfg_t cfg = {0}; local
51 libvpx_test::VP9Decoder decoder(cfg, 0);
H A Dcodec_factory.h35 virtual Decoder* CreateDecoder(vpx_codec_dec_cfg_t cfg,
38 virtual Encoder* CreateEncoder(vpx_codec_enc_cfg_t cfg,
43 virtual vpx_codec_err_t DefaultEncoderConfig(vpx_codec_enc_cfg_t *cfg,
72 VP8Decoder(vpx_codec_dec_cfg_t cfg, unsigned long deadline) argument
73 : Decoder(cfg, deadline) {}
87 VP8Encoder(vpx_codec_enc_cfg_t cfg, unsigned long deadline, argument
89 : Encoder(cfg, deadline, init_flags, stats) {}
105 virtual Decoder* CreateDecoder(vpx_codec_dec_cfg_t cfg, argument
108 return new VP8Decoder(cfg, deadline);
114 virtual Encoder* CreateEncoder(vpx_codec_enc_cfg_t cfg, argument
125 DefaultEncoderConfig(vpx_codec_enc_cfg_t *cfg, int usage) const argument
154 VP9Decoder(vpx_codec_dec_cfg_t cfg, unsigned long deadline) argument
169 VP9Encoder(vpx_codec_enc_cfg_t cfg, unsigned long deadline, const unsigned long init_flags, TwopassStatsStore *stats) argument
187 CreateDecoder(vpx_codec_dec_cfg_t cfg, unsigned long deadline) const argument
196 CreateEncoder(vpx_codec_enc_cfg_t cfg, unsigned long deadline, const unsigned long init_flags, TwopassStatsStore *stats) const argument
207 DefaultEncoderConfig(vpx_codec_enc_cfg_t *cfg, int usage) const argument
[all...]
H A Dtile_independence_test.cc32 vpx_codec_dec_cfg_t cfg; local
33 cfg.w = 704;
34 cfg.h = 144;
35 cfg.threads = 1;
36 fw_dec_ = codec_->CreateDecoder(cfg, 0);
37 inv_dec_ = codec_->CreateDecoder(cfg, 0);
/external/mesa3d/src/glx/
H A Dcreate_context.c42 struct glx_config *const cfg = (struct glx_config *) config; local
52 if (dpy == NULL || cfg == NULL)
59 psc = GetGLXScreenConfigs(dpy, cfg->screen);
63 assert(cfg->screen == psc->scr);
78 gc = psc->vtable->create_context_attribs(psc, cfg, share, num_attribs,
85 gc = applegl_create_context(psc, cfg, share, 0);
87 gc = indirect_create_context(psc, cfg, share, 0);
105 cfg->fbconfigID,
106 cfg->screen,
/external/libnl/lib/route/cls/ematch/
H A Dcmp.c26 struct tcf_em_cmp *cfg)
28 memcpy(rtnl_ematch_data(ematch), cfg, sizeof(*cfg)); local
25 rtnl_ematch_cmp_set(struct rtnl_ematch *ematch, struct tcf_em_cmp *cfg) argument
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_live_variables.h65 fs_live_variables(fs_visitor *v, fs_cfg *cfg);
72 fs_cfg *cfg; member in class:brw::fs_live_variables
/external/iptables/include/linux/netfilter/
H A Dxt_hashlimit.h40 struct hashlimit_cfg cfg; member in struct:xt_hashlimit_info
66 struct hashlimit_cfg1 cfg; member in struct:xt_hashlimit_mtinfo1
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_hashlimit.h41 struct hashlimit_cfg cfg; member in struct:xt_hashlimit_info
67 struct hashlimit_cfg1 cfg; member in struct:xt_hashlimit_mtinfo1
/external/libopus/celt/tests/
H A Dtest_unit_dft.c101 kiss_fft_state *cfg = opus_fft_alloc(nfft,0,0); local
125 opus_ifft(cfg,in,out);
127 opus_fft(cfg,in,out);
135 free(cfg);
H A Dtest_unit_mdct.c117 mdct_lookup cfg; local
126 clt_mdct_init(&cfg, nfft, 0);
153 clt_mdct_backward(&cfg,in,out, window, nfft/2, 0, 1);
159 clt_mdct_forward(&cfg,in,out,window, nfft/2, 0, 1);
167 clt_mdct_clear(&cfg);
/external/libvpx/libvpx/examples/
H A Dvp8cx_set_ref.c98 vpx_codec_enc_cfg_t cfg = {0}; local
143 res = vpx_codec_enc_config_default(encoder->codec_interface(), &cfg, 0);
147 cfg.g_w = info.frame_width;
148 cfg.g_h = info.frame_height;
149 cfg.g_timebase.num = info.time_base.numerator;
150 cfg.g_timebase.den = info.time_base.denominator;
151 cfg.rc_target_bitrate = bitrate;
160 if (vpx_codec_enc_init(&codec, encoder->codec_interface(), &cfg, 0))

Completed in 604 milliseconds

1234567