HomeSort by relevance Sort by last modified time
    Searched refs:cfg (Results 1 - 25 of 627) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libvpx/config/arm/
vpx_config.c 9 static const char* const cfg = "--target=armv6-linux-gcc --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
  /external/libvpx/config/arm-neon/
vpx_config.c 9 static const char* const cfg = "--target=armv7-linux-gcc --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
  /external/libvpx/config/arm64/
vpx_config.c 9 static const char* const cfg = "--force-target=armv8-linux-gcc --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
  /external/libvpx/config/generic/
vpx_config.c 9 static const char* const cfg = "--target=generic-gnu --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
  /external/libvpx/config/mips32/
vpx_config.c 9 static const char* const cfg = "--target=mips32-linux-gcc --disable-dspr2 --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
  /external/libvpx/config/mips32-dspr2/
vpx_config.c 9 static const char* const cfg = "--target=mips32-linux-gcc --enable-dspr2 --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
  /external/libvpx/config/mips64/
vpx_config.c 9 static const char* const cfg = "--target=mips64-linux-gcc --enable-external-build --enable-realtime-only --enable-pic --disable-runtime-cpu-detect"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
  /external/libvpx/config/x86/
vpx_config.c 9 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"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
  /external/libvpx/config/x86_64/
vpx_config.c 9 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"; variable
10 const char *vpx_codec_build_config(void) {return cfg;}
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/armv7a/
vpx_config.c 8 static const char* const cfg = "--target=armv7-android-gcc --disable-runtime-cpu-detect --sdk-path=/usr/local/google/home/hkuang/Downloads/android-ndk-r8e --disable-vp9-encoder --disable-neon --disable-examples --disable-docs --enable-realtime-only"; variable
9 const char *vpx_codec_build_config(void) {return cfg;}
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/armv7a-neon/
vpx_config.c 8 static const char* const cfg = "--target=armv7-android-gcc --disable-runtime-cpu-detect --sdk-path=/usr/local/google/home/hkuang/Downloads/android-ndk-r8e --disable-vp9-encoder --disable-examples --disable-docs --enable-realtime-only"; variable
9 const char *vpx_codec_build_config(void) {return cfg;}
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/generic/
vpx_config.c 8 static const char* const cfg = "--force-target=generic-gnu --disable-vp9-encoder --disable-examples --disable-docs --enable-realtime-only"; variable
9 const char *vpx_codec_build_config(void) {return cfg;}
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/mips/
vpx_config.c 8 static const char* const cfg = "--force-target=mips32-android-gcc --disable-runtime-cpu-detect --sdk-path=/usr/local/google/home/hkuang/Downloads/android-ndk-r8e --disable-vp9-encoder --disable-examples --disable-docs --enable-realtime-only"; variable
9 const char *vpx_codec_build_config(void) {return cfg;}
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/mips-dspr2/
vpx_config.c 8 static const char* const cfg = "--force-target=mips32-android-gcc --disable-runtime-cpu-detect --sdk-path=/usr/local/google/home/hkuang/Downloads/android-ndk-r8e --disable-vp9-encoder --enable-dspr2 --disable-examples --disable-docs --enable-realtime-only"; variable
9 const char *vpx_codec_build_config(void) {return cfg;}
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/x86/
vpx_config.c 8 static const char* const cfg = "--target=x86-android-gcc --disable-docs --disable-unit-tests --disable-vp9-encoder"; variable
9 const char *vpx_codec_build_config(void) {return cfg;}
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/s3/
test_cors_configuration.py 51 cfg = CORSConfiguration()
52 cfg.add_rule(['PUT', 'POST', 'DELETE'],
58 self.assertEqual(cfg.to_xml(), CORS_BODY_1)
61 cfg = CORSConfiguration()
62 cfg.add_rule(['PUT', 'POST', 'DELETE'],
67 cfg.add_rule('GET', '*', allowed_header='*', max_age_seconds=3000)
68 self.assertEqual(cfg.to_xml(), CORS_BODY_2)
71 cfg = CORSConfiguration()
72 cfg.add_rule('GET', '*')
73 self.assertEqual(cfg.to_xml(), CORS_BODY_3
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
vpx_temporal_scalable_patterns.c 64 vpx_codec_enc_cfg_t *cfg) {
68 const double framerate = cfg->g_timebase.den / cfg->g_timebase.num;
69 rc->layer_framerate[0] = framerate / cfg->ts_rate_decimator[0];
70 rc->layer_pfb[0] = 1000.0 * cfg->ts_target_bitrate[0] /
72 for (i = 0; i < cfg->ts_number_layers; ++i) {
74 rc->layer_framerate[i] = framerate / cfg->ts_rate_decimator[i];
76 (cfg->ts_target_bitrate[i] - cfg->ts_target_bitrate[i - 1]) /
89 vpx_codec_enc_cfg_t *cfg,
434 vpx_codec_enc_cfg_t cfg; local
    [all...]
  /external/libvpx/libvpx/
rate_hist.h 22 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,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
rate_hist.h 22 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,
  /external/libvpx/libvpx/test/
codec_factory.h 35 virtual Decoder* CreateDecoder(vpx_codec_dec_cfg_t cfg,
38 virtual Decoder* CreateDecoder(vpx_codec_dec_cfg_t cfg,
43 virtual Encoder* CreateEncoder(vpx_codec_enc_cfg_t cfg,
48 virtual vpx_codec_err_t DefaultEncoderConfig(vpx_codec_enc_cfg_t *cfg,
77 VP8Decoder(vpx_codec_dec_cfg_t cfg, unsigned long deadline)
78 : Decoder(cfg, deadline) {}
80 VP8Decoder(vpx_codec_dec_cfg_t cfg, const vpx_codec_flags_t flag,
82 : Decoder(cfg, flag, deadline) {}
96 VP8Encoder(vpx_codec_enc_cfg_t cfg, unsigned long deadline,
98 : Encoder(cfg, deadline, init_flags, stats) {
    [all...]
  /external/autotest/client/bin/
test_config.py 19 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 = path.join(tmpdir, path.basename(cfg)
    [all...]
  /external/v8/test/mjsunit/es6/
tail-call-megatest.js 76 source_template: function(cfg) {
77 var receiver = cfg.f_receiver != undefined ? cfg.f_receiver
81 ` ${!cfg.check_new_target ? "// " : ""}assertEquals_(undefined, new.target);`,
88 ` ${inlinable_comment(cfg.f_inlinable)}`,
90 ` var expected_args = [${cfg.f_args}];`,
92 deopt_template(cfg.deopt_mode),
103 source_template: function(cfg) {
104 var receiver = cfg.f_receiver != undefined ? cfg.f_receive
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
codec_factory.h 35 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)
73 : Decoder(cfg, deadline) {}
87 VP8Encoder(vpx_codec_enc_cfg_t cfg, unsigned long deadline,
89 : Encoder(cfg, deadline, init_flags, stats) {}
105 virtual Decoder* CreateDecoder(vpx_codec_dec_cfg_t cfg,
108 return new VP8Decoder(cfg, deadline);
114 virtual Encoder* CreateEncoder(vpx_codec_enc_cfg_t cfg,
    [all...]
  /external/libvpx/libvpx/examples/
vpx_temporal_svc_encoder.c 83 vpx_codec_enc_cfg_t *cfg) {
87 const double framerate = cfg->g_timebase.den / cfg->g_timebase.num;
88 rc->layer_framerate[0] = framerate / cfg->ts_rate_decimator[0];
91 for (i = 0; i < cfg->ts_number_layers; ++i) {
93 rc->layer_framerate[i] = framerate / cfg->ts_rate_decimator[i];
112 vpx_codec_enc_cfg_t *cfg,
119 cfg->ts_number_layers);
120 for (i = 0; i < cfg->ts_number_layers; ++i) {
164 vpx_codec_enc_cfg_t *cfg,
469 vpx_codec_enc_cfg_t cfg; local
    [all...]
  /hardware/bsp/intel/soc/common/tools/
gpt_ini2bin.py 28 def preparse_partitions(gpt_in, cfg):
32 partitions = cfg.get('base', 'partitions').split()
50 cfg = ConfigParser.SafeConfigParser()
52 cfg.read(gpt_in)
54 part = preparse_partitions(gpt_in, cfg)
58 if cfg.has_option('base', 'start_lba'):
59 start_lba = cfg.getint('base', 'start_lba')
67 length = cfg.get('partition.' + p, 'len')
70 label = cfg.get('partition.' + p, 'label').encode('utf-16le')
73 guid_type = cfg.get('partition.' + p, 'type'
    [all...]

Completed in 687 milliseconds

1 2 3 4 5 6 7 8 91011>>