Searched refs:cfg (Results 1 - 25 of 259) sorted by relevance

1234567891011

/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/examples/
H A Dvpx_temporal_svc_encoder.c72 vpx_codec_enc_cfg_t *cfg) {
76 const double framerate = cfg->g_timebase.den / cfg->g_timebase.num;
77 rc->layer_framerate[0] = framerate / cfg->ts_rate_decimator[0];
78 rc->layer_pfb[0] = 1000.0 * cfg->ts_target_bitrate[0] /
80 for (i = 0; i < cfg->ts_number_layers; ++i) {
82 rc->layer_framerate[i] = framerate / cfg->ts_rate_decimator[i];
84 (cfg->ts_target_bitrate[i] - cfg->ts_target_bitrate[i - 1]) /
97 vpx_codec_enc_cfg_t *cfg,
71 set_rate_control_metrics(struct RateControlMetrics *rc, vpx_codec_enc_cfg_t *cfg) argument
96 printout_rate_control_summary(struct RateControlMetrics *rc, vpx_codec_enc_cfg_t *cfg, int frame_cnt) argument
136 set_temporal_layer_pattern(int layering_mode, vpx_codec_enc_cfg_t *cfg, int *layer_flags, int *flag_periodicity) argument
442 vpx_codec_enc_cfg_t cfg; local
[all...]
H A Dvp8_multi_resolution_encoder.c115 const vpx_codec_enc_cfg_t *cfg,
119 if(cfg->g_pass != VPX_RC_ONE_PASS && cfg->g_pass != VPX_RC_LAST_PASS)
128 mem_put_le16(header+12, cfg->g_w); /* width */
129 mem_put_le16(header+14, cfg->g_h); /* height */
130 mem_put_le32(header+16, cfg->g_timebase.den); /* rate */
131 mem_put_le32(header+20, cfg->g_timebase.num); /* scale */
159 vpx_codec_enc_cfg_t cfg[NUM_ENCODERS]; local
230 res[i] = vpx_codec_enc_config_default(interface, &cfg[i], 0);
241 cfg[
114 write_ivf_file_header(FILE *outfile, const vpx_codec_enc_cfg_t *cfg, int frame_cnt) argument
[all...]
H A Dset_maps.c64 static void set_roi_map(const vpx_codec_enc_cfg_t *cfg, argument
70 roi.rows = (cfg->g_h + 15) / 16;
71 roi.cols = (cfg->g_w + 15) / 16;
98 static void set_active_map(const vpx_codec_enc_cfg_t *cfg, argument
103 map.rows = (cfg->g_h + 15) / 16;
104 map.cols = (cfg->g_w + 15) / 16;
116 static void unset_active_map(const vpx_codec_enc_cfg_t *cfg, argument
120 map.rows = (cfg->g_h + 15) / 16;
121 map.cols = (cfg->g_w + 15) / 16;
158 vpx_codec_enc_cfg_t cfg; local
[all...]
/external/libvpx/libvpx/
H A Drate_hist.h22 struct rate_hist *init_rate_histogram(const vpx_codec_enc_cfg_t *cfg,
28 const vpx_codec_enc_cfg_t *cfg,
33 void show_rate_histogram(struct rate_hist *hist, const vpx_codec_enc_cfg_t *cfg,
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.h42 const vpx_codec_enc_cfg_t *cfg,
48 const vpx_codec_enc_cfg_t *cfg,
/external/libvpx/libvpx/test/
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/clang/lib/Analysis/
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/libvpx/libvpx/vp8/
H A Dvp8_cx_iface.c45 struct vp8_extracfg cfg; member in struct:extraconfig_map
81 vpx_codec_enc_cfg_t cfg; member in struct:vpx_codec_alg_priv
137 const vpx_codec_enc_cfg_t *cfg,
141 RANGE_CHECK(cfg, g_w, 1, 16383); /* 14 bits available */
142 RANGE_CHECK(cfg, g_h, 1, 16383); /* 14 bits available */
143 RANGE_CHECK(cfg, g_timebase.den, 1, 1000000000);
144 RANGE_CHECK(cfg, g_timebase.num, 1, cfg->g_timebase.den);
145 RANGE_CHECK_HI(cfg, g_profile, 3);
146 RANGE_CHECK_HI(cfg, rc_max_quantize
136 validate_config(vpx_codec_alg_priv_t *ctx, const vpx_codec_enc_cfg_t *cfg, const struct vp8_extracfg *vp8_cfg, int finalize) argument
286 set_vp8e_config(VP8_CONFIG *oxcf, vpx_codec_enc_cfg_t cfg, struct vp8_extracfg vp8_cfg, vpx_codec_priv_enc_mr_cfg_t *mr_cfg) argument
447 vp8e_set_config(vpx_codec_alg_priv_t *ctx, const vpx_codec_enc_cfg_t *cfg) argument
600 vp8e_mr_alloc_mem(const vpx_codec_enc_cfg_t *cfg, void **mem_loc) argument
635 vpx_codec_enc_cfg_t *cfg; local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
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/vp9/
H A Dvp9_cx_iface.c48 struct vp9_extracfg cfg; member in struct:extraconfig_map
81 vpx_codec_enc_cfg_t cfg; member in struct:vpx_codec_alg_priv
148 const vpx_codec_enc_cfg_t *cfg,
150 RANGE_CHECK(cfg, g_w, 1, 65535); // 16 bits available
151 RANGE_CHECK(cfg, g_h, 1, 65535); // 16 bits available
152 RANGE_CHECK(cfg, g_timebase.den, 1, 1000000000);
153 RANGE_CHECK(cfg, g_timebase.num, 1, cfg->g_timebase.den);
154 RANGE_CHECK_HI(cfg, g_profile, 3);
156 RANGE_CHECK_HI(cfg, rc_max_quantize
147 validate_config(vpx_codec_alg_priv_t *ctx, const vpx_codec_enc_cfg_t *cfg, const struct vp9_extracfg *extra_cfg) argument
324 set_encoder_config( VP9EncoderConfig *oxcf, const vpx_codec_enc_cfg_t *cfg, const struct vp9_extracfg *extra_cfg) argument
481 encoder_set_config(vpx_codec_alg_priv_t *ctx, const vpx_codec_enc_cfg_t *cfg) argument
663 vpx_codec_enc_cfg_t *cfg; local
1171 const vpx_codec_enc_cfg_t *cfg = &ctx->cfg; local
[all...]
/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/iptables/extensions/
H A Dlibxt_hashlimit.c102 XTOPT_POINTER(s, cfg.burst)},
105 XTOPT_POINTER(s, cfg.size)},
108 XTOPT_POINTER(s, cfg.max)},
111 XTOPT_POINTER(s, cfg.gc_interval)},
114 XTOPT_POINTER(s, cfg.expire)},
136 XTOPT_POINTER(s, cfg.size)},
139 XTOPT_POINTER(s, cfg.max)},
142 XTOPT_POINTER(s, cfg.gc_interval)},
145 XTOPT_POINTER(s, cfg.expire)},
270 r->cfg
[all...]
/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
H A Dbrw_fs_live_variables.cpp54 for (int b = 0; b < cfg->num_blocks; b++) {
55 fs_bblock *block = cfg->blocks[b];
59 assert(cfg->blocks[b - 1]->end_ip == ip - 1);
108 for (int b = 0; b < cfg->num_blocks; b++) {
120 foreach_list(block_node, &cfg->blocks[b]->children) {
135 fs_live_variables::fs_live_variables(fs_visitor *v, fs_cfg *cfg) argument
136 : v(v), cfg(cfg)
138 mem_ctx = ralloc_context(cfg->mem_ctx);
141 bd = rzalloc_array(mem_ctx, struct block_data, cfg
[all...]
/external/speex/libspeex/
H A Dkiss_fft.h54 * Initialize a FFT (or IFFT) algorithm's cfg/state buffer.
58 * The return value from fft_alloc is a cfg buffer used internally
61 * If lenmem is NULL, then kiss_fft_alloc will allocate a cfg buffer using malloc.
66 * then the function places the cfg in mem and the size used in *lenmem
70 * then the function returns NULL and places the minimum cfg
77 * kiss_fft(cfg,in_out_buf)
86 void kiss_fft(kiss_fft_cfg cfg,const kiss_fft_cpx *fin,kiss_fft_cpx *fout);
91 void kiss_fft_stride(kiss_fft_cfg cfg,const kiss_fft_cpx *fin,kiss_fft_cpx *fout,int fin_stride);
H A Dkiss_fftr.h29 void kiss_fftr(kiss_fftr_cfg cfg,const kiss_fft_scalar *timedata,kiss_fft_cpx *freqdata);
37 void kiss_fftri(kiss_fftr_cfg cfg,const kiss_fft_cpx *freqdata,kiss_fft_scalar *timedata);

Completed in 1210 milliseconds

1234567891011