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

1234567891011>>

/external/libvpx/config/arm/
H A Dvpx_config.c9 static const char* const cfg = "--target=armv7-linux-gcc --disable-neon --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect --disable-install-docs --size-limit=4096x3072"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
/external/libvpx/config/arm-neon/
H A Dvpx_config.c9 static const char* const cfg = "--target=armv7-linux-gcc --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect --disable-install-docs --size-limit=4096x3072"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
/external/libvpx/config/arm64/
H A Dvpx_config.c9 static const char* const cfg = "--force-target=armv8-linux-gcc --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect --disable-install-docs --size-limit=4096x3072"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
/external/libvpx/config/generic/
H A Dvpx_config.c9 static const char* const cfg = "--target=generic-gnu --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect --disable-install-docs --size-limit=4096x3072"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
/external/libvpx/config/mips32/
H A Dvpx_config.c9 static const char* const cfg = "--target=mips32-linux-gcc --disable-dspr2 --disable-msa --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect --disable-install-docs --size-limit=4096x3072"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
/external/libvpx/config/mips32-dspr2/
H A Dvpx_config.c9 static const char* const cfg = "--target=mips32-linux-gcc --enable-dspr2 --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect --disable-install-docs --size-limit=4096x3072"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
/external/libvpx/config/mips32-msa/
H A Dvpx_config.c9 static const char* const cfg = "--target=mips32-linux-gcc --enable-msa --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect --disable-install-docs --size-limit=4096x3072"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
/external/libvpx/config/mips64/
H A Dvpx_config.c9 static const char* const cfg = "--target=mips64-linux-gcc --disable-msa --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect --disable-install-docs --size-limit=4096x3072"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
/external/libvpx/config/mips64-msa/
H A Dvpx_config.c9 static const char* const cfg = "--target=mips64-linux-gcc --enable-msa --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect --disable-install-docs --size-limit=4096x3072"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
/external/libvpx/config/x86/
H A Dvpx_config.c9 static const char* const cfg = "--target=x86-linux-gcc --disable-sse4_1 --disable-avx --disable-avx2 --as=yasm --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect --disable-install-docs --size-limit=4096x3072"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
/external/libvpx/config/x86_64/
H A Dvpx_config.c9 static const char* const cfg = "--target=x86_64-linux-gcc --disable-sse4_1 --disable-avx --disable-avx2 --as=yasm --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect --disable-install-docs --size-limit=4096x3072"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
/external/skia/src/sksl/
H A DSkSLCFGGenerator.cpp85 void CFGGenerator::addExpression(CFG& cfg, std::unique_ptr<Expression>* e, bool constantPropagate) { argument
96 this->addExpression(cfg, &b->fLeft, constantPropagate);
97 BlockId start = cfg.fCurrent;
98 cfg.newBlock();
99 this->addExpression(cfg, &b->fRight, constantPropagate);
100 cfg.newBlock();
101 cfg.addExit(start, cfg.fCurrent);
105 this->addExpression(cfg, &b->fRight, constantPropagate);
106 this->addLValue(cfg,
205 addLValue(CFG& cfg, std::unique_ptr<Expression>* e) argument
226 addStatement(CFG& cfg, const Statement* s) argument
[all...]
/external/libnl/lib/route/cls/ematch/
H A Dtext.c27 struct tcf_em_text cfg; member in struct:text_data
35 t->cfg.from_offset = offset;
36 t->cfg.from_layer = layer;
41 return ((struct text_data *) rtnl_ematch_data(e))->cfg.from_offset;
46 return ((struct text_data *) rtnl_ematch_data(e))->cfg.from_layer;
53 t->cfg.to_offset = offset;
54 t->cfg.to_layer = layer;
59 return ((struct text_data *) rtnl_ematch_data(e))->cfg.to_offset;
64 return ((struct text_data *) rtnl_ematch_data(e))->cfg.to_layer;
76 t->cfg
[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.c16 void ivf_write_file_header(FILE *outfile, const struct vpx_codec_enc_cfg *cfg, argument
27 mem_put_le16(header + 12, cfg->g_w); // width
28 mem_put_le16(header + 14, cfg->g_h); // height
29 mem_put_le32(header + 16, cfg->g_timebase.den); // rate
30 mem_put_le32(header + 20, cfg->g_timebase.num); // scale
/external/iptables/extensions/
H A Dlibxt_hashlimit.c104 XTOPT_POINTER(s, cfg.burst)},
107 XTOPT_POINTER(s, cfg.size)},
110 XTOPT_POINTER(s, cfg.max)},
113 XTOPT_POINTER(s, cfg.gc_interval)},
116 XTOPT_POINTER(s, cfg.expire)},
138 XTOPT_POINTER(s, cfg.size)},
141 XTOPT_POINTER(s, cfg.max)},
144 XTOPT_POINTER(s, cfg.gc_interval)},
147 XTOPT_POINTER(s, cfg.expire)},
168 XTOPT_POINTER(s, cfg
189 struct hashlimit_cfg1 *cfg = (struct hashlimit_cfg1 *)from; local
724 hashlimit_mt_print(const struct hashlimit_cfg2 *cfg, unsigned int dmask, int revision) argument
764 struct hashlimit_cfg2 cfg; local
780 struct hashlimit_cfg2 cfg; local
834 hashlimit_mt_save(const struct hashlimit_cfg2 *cfg, const char* name, unsigned int dmask, int revision) argument
877 struct hashlimit_cfg2 cfg; local
892 struct hashlimit_cfg2 cfg; local
[all...]
/external/autotest/client/bin/
H A Dtest_config.py19 def __init__(self, cfg, tmpdir='/tmp', raise_errors=False):
23 @param cfg: Where we'll get configuration data. It can be either:
36 if hasattr(cfg, 'read'):
37 self.cfg = cfg
38 self.parser.readfp(self.cfg)
39 elif isinstance(cfg, types.StringTypes):
41 if cfg.startswith('http') or cfg.startswith('ftp'):
42 self.cfg
[all...]
/external/libvpx/libvpx/test/
H A Dcodec_factory.h35 virtual Decoder *CreateDecoder(vpx_codec_dec_cfg_t cfg) const = 0;
37 virtual Decoder *CreateDecoder(vpx_codec_dec_cfg_t cfg,
40 virtual Encoder *CreateEncoder(vpx_codec_enc_cfg_t cfg,
45 virtual vpx_codec_err_t DefaultEncoderConfig(vpx_codec_enc_cfg_t *cfg,
80 explicit VP8Decoder(vpx_codec_dec_cfg_t cfg) : Decoder(cfg) {} argument
82 VP8Decoder(vpx_codec_dec_cfg_t cfg, const vpx_codec_flags_t flag) argument
83 : Decoder(cfg, flag) {}
97 VP8Encoder(vpx_codec_enc_cfg_t cfg, unsigned long deadline, argument
99 : Encoder(cfg, deadlin
119 CreateDecoder(vpx_codec_dec_cfg_t cfg, const vpx_codec_flags_t flags) const argument
130 CreateEncoder(vpx_codec_enc_cfg_t cfg, unsigned long deadline, const unsigned long init_flags, TwopassStatsStore *stats) const argument
145 DefaultEncoderConfig(vpx_codec_enc_cfg_t *cfg, int usage) const argument
176 VP9Decoder(vpx_codec_dec_cfg_t cfg) argument
178 VP9Decoder(vpx_codec_dec_cfg_t cfg, const vpx_codec_flags_t flag) argument
193 VP9Encoder(vpx_codec_enc_cfg_t cfg, unsigned long deadline, const unsigned long init_flags, TwopassStatsStore *stats) argument
215 CreateDecoder(vpx_codec_dec_cfg_t cfg, const vpx_codec_flags_t flags) const argument
226 CreateEncoder(vpx_codec_enc_cfg_t cfg, unsigned long deadline, const unsigned long init_flags, TwopassStatsStore *stats) const argument
241 DefaultEncoderConfig(vpx_codec_enc_cfg_t *cfg, int usage) const argument
[all...]
/external/libvpx/libvpx/examples/
H A Dvpx_temporal_svc_encoder.c81 vpx_codec_enc_cfg_t *cfg) {
85 const double framerate = cfg->g_timebase.den / cfg->g_timebase.num;
86 rc->layer_framerate[0] = framerate / cfg->ts_rate_decimator[0];
89 for (i = 0; i < cfg->ts_number_layers; ++i) {
91 rc->layer_framerate[i] = framerate / cfg->ts_rate_decimator[i];
110 vpx_codec_enc_cfg_t *cfg,
117 cfg->ts_number_layers);
118 for (i = 0; i < cfg->ts_number_layers; ++i) {
163 vpx_codec_enc_cfg_t *cfg,
80 set_rate_control_metrics(struct RateControlMetrics *rc, vpx_codec_enc_cfg_t *cfg) argument
109 printout_rate_control_summary(struct RateControlMetrics *rc, vpx_codec_enc_cfg_t *cfg, int frame_cnt) argument
162 set_temporal_layer_pattern(int layering_mode, vpx_codec_enc_cfg_t *cfg, int *layer_flags, int *flag_periodicity) argument
492 vpx_codec_enc_cfg_t cfg; local
[all...]
H A Dvp8_multi_resolution_encoder.c124 static void write_ivf_file_header(FILE *outfile, const vpx_codec_enc_cfg_t *cfg, argument
128 if (cfg->g_pass != VPX_RC_ONE_PASS && cfg->g_pass != VPX_RC_LAST_PASS) return;
136 mem_put_le16(header + 12, cfg->g_w); /* width */
137 mem_put_le16(header + 14, cfg->g_h); /* height */
138 mem_put_le32(header + 16, cfg->g_timebase.den); /* rate */
139 mem_put_le32(header + 20, cfg->g_timebase.num); /* scale */
167 vpx_codec_enc_cfg_t *cfg, int bitrate,
173 cfg->ts_number_layers = 1;
174 cfg
166 set_temporal_layer_pattern(int num_temporal_layers, vpx_codec_enc_cfg_t *cfg, int bitrate, int *layer_flags) argument
291 vpx_codec_enc_cfg_t cfg[NUM_ENCODERS]; local
[all...]
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/
H A Ddefault_temporal_layers.cc49 vpx_codec_enc_cfg_t* cfg) {
55 cfg->ts_number_layers = number_of_temporal_layers_;
56 cfg->ts_periodicity = temporal_ids_length_;
57 cfg->ts_target_bitrate[0] = bitrateKbit;
58 cfg->ts_rate_decimator[0] = 1;
59 memcpy(cfg->ts_layer_id, temporal_ids_,
68 cfg->ts_number_layers = number_of_temporal_layers_;
69 cfg->ts_periodicity = temporal_ids_length_;
72 cfg->ts_target_bitrate[0] = bitrateKbit * kVp8LayerRateAlloction[1][0];
73 cfg
46 ConfigureBitrates(int bitrateKbit, int max_bitrate_kbit, int framerate, vpx_codec_enc_cfg_t* cfg) argument
[all...]
/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/syslinux/efi/
H A Dadv.h24 int read_adv(const char *path, const char *cfg);
25 int write_adv(const char *path, const char *cfg);
/external/syslinux/libinstaller/
H A Dsetadv.h13 int read_adv(const char *path, const char *cfg);
14 int write_adv(const char *path, const char *cfg);
/external/libvpx/libvpx/vp8/
H A Dvp8_cx_iface.c75 vpx_codec_enc_cfg_t cfg; member in struct:vpx_codec_alg_priv
130 const vpx_codec_enc_cfg_t *cfg,
133 RANGE_CHECK(cfg, g_w, 1, 16383); /* 14 bits available */
134 RANGE_CHECK(cfg, g_h, 1, 16383); /* 14 bits available */
135 RANGE_CHECK(cfg, g_timebase.den, 1, 1000000000);
136 RANGE_CHECK(cfg, g_timebase.num, 1, 1000000000);
137 RANGE_CHECK_HI(cfg, g_profile, 3);
138 RANGE_CHECK_HI(cfg, rc_max_quantizer, 63);
139 RANGE_CHECK_HI(cfg, rc_min_quantizer, cfg
129 validate_config(vpx_codec_alg_priv_t *ctx, const vpx_codec_enc_cfg_t *cfg, const struct vp8_extracfg *vp8_cfg, int finalize) argument
274 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
427 vp8e_set_config(vpx_codec_alg_priv_t *ctx, const vpx_codec_enc_cfg_t *cfg) argument
578 vp8e_mr_alloc_mem(const vpx_codec_enc_cfg_t *cfg, void **mem_loc) argument
[all...]

Completed in 452 milliseconds

1234567891011>>