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

1 2 3 4 5 6 7 8 91011>>

  /external/libvpx/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;}
  /external/libvpx/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;}
  /external/libvpx/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;}
  /external/libvpx/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;}
  /external/libvpx/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;}
  /external/chromium_org/native_client_sdk/src/build_tools/tests/
sdktools_config_test.py 19 cfg = config.Config()
20 self.assertRaises(config.Error, lambda: cfg.LoadJson(invalid_json))
25 cfg = config.Config()
26 json_output = cfg.ToJson()
31 cfg = config.Config()
32 cfg.LoadJson(json_input)
33 self.assertEqual(cfg.setting, 3)
39 cfg = config.Config()
40 cfg.LoadJson(json_input)
41 json_output = cfg.ToJson(
    [all...]
  /external/libvpx/libvpx/
vp8_scalable_patterns.c 76 const vpx_codec_enc_cfg_t *cfg,
80 if(cfg->g_pass != VPX_RC_ONE_PASS && cfg->g_pass != VPX_RC_LAST_PASS)
89 mem_put_le16(header+12, cfg->g_w); /* width */
90 mem_put_le16(header+14, cfg->g_h); /* height */
91 mem_put_le32(header+16, cfg->g_timebase.den); /* rate */
92 mem_put_le32(header+20, cfg->g_timebase.num); /* scale */
122 vpx_codec_enc_cfg_t cfg; local
165 res = vpx_codec_enc_config_default(interface, &cfg, 0);
172 cfg.g_w = width
    [all...]
vp8_multi_resolution_encoder.c 147 const vpx_codec_enc_cfg_t *cfg,
151 if(cfg->g_pass != VPX_RC_ONE_PASS && cfg->g_pass != VPX_RC_LAST_PASS)
160 mem_put_le16(header+12, cfg->g_w); /* width */
161 mem_put_le16(header+14, cfg->g_h); /* height */
162 mem_put_le32(header+16, cfg->g_timebase.den); /* rate */
163 mem_put_le32(header+20, cfg->g_timebase.num); /* scale */
191 vpx_codec_enc_cfg_t cfg[NUM_ENCODERS]; local
262 res[i] = vpx_codec_enc_config_default(interface, &cfg[i], 0);
273 cfg[0].g_w = width
    [all...]
  /external/iptables/extensions/
libxt_hashlimit.c 90 XTOPT_POINTER(s, cfg.burst)},
93 XTOPT_POINTER(s, cfg.size)},
96 XTOPT_POINTER(s, cfg.max)},
99 XTOPT_POINTER(s, cfg.gc_interval)},
102 XTOPT_POINTER(s, cfg.expire)},
123 XTOPT_POINTER(s, cfg.burst)},
126 XTOPT_POINTER(s, cfg.size)},
129 XTOPT_POINTER(s, cfg.max)},
132 XTOPT_POINTER(s, cfg.gc_interval)},
135 XTOPT_POINTER(s, cfg.expire)}
    [all...]
  /external/libvpx/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/clang/lib/Analysis/
PostOrderCFGView.cpp 1 //===- PostOrderCFGView.cpp - Post order view of CFG blocks -------*- C++ --*-//
10 // This file implements post order view of the blocks in a CFG.
20 PostOrderCFGView::PostOrderCFGView(const CFG *cfg) {
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
    [all...]
  /external/libvpx/libvpx/vp8/
vp8_cx_iface.c 44 struct vp8_extracfg cfg; member in struct:extraconfig_map
80 vpx_codec_enc_cfg_t cfg; member in struct:vpx_codec_alg_priv
136 const vpx_codec_enc_cfg_t *cfg,
140 RANGE_CHECK(cfg, g_w, 1, 16383); /* 14 bits available */
141 RANGE_CHECK(cfg, g_h, 1, 16383); /* 14 bits available */
142 RANGE_CHECK(cfg, g_timebase.den, 1, 1000000000);
143 RANGE_CHECK(cfg, g_timebase.num, 1, cfg->g_timebase.den);
144 RANGE_CHECK_HI(cfg, g_profile, 3);
145 RANGE_CHECK_HI(cfg, rc_max_quantizer, 63)
577 vpx_codec_enc_cfg_t *cfg; local
    [all...]
  /external/libvpx/libvpx/vp9/
vp9_cx_iface.c 45 struct vp9_extracfg cfg; member in struct:extraconfig_map
75 vpx_codec_enc_cfg_t cfg; member in struct:vpx_codec_alg_priv
145 const vpx_codec_enc_cfg_t *cfg,
147 RANGE_CHECK(cfg, g_w, 1, 65535); /* 16 bits available */
148 RANGE_CHECK(cfg, g_h, 1, 65535); /* 16 bits available */
149 RANGE_CHECK(cfg, g_timebase.den, 1, 1000000000);
150 RANGE_CHECK(cfg, g_timebase.num, 1, cfg->g_timebase.den);
151 RANGE_CHECK_HI(cfg, g_profile, 3);
153 RANGE_CHECK_HI(cfg, rc_max_quantizer, 63)
467 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/
FindMachineTask.java 29 // 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) {
71 this.cfg = cfg
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/
create_context.c 42 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/mesa3d/src/glx/
create_context.c 42 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,
  /bionic/libc/kernel/common/linux/
transport_class.h 36 #define DECLARE_TRANSPORT_CLASS(cls, nm, su, rm, cfg) struct transport_class cls = { .class = { .name = nm, }, .setup = su, .remove = rm, .configure = cfg, }
42 #define DECLARE_ANON_TRANSPORT_CLASS(cls, mtch, cfg) struct anon_transport_class cls = { .tclass = { .configure = cfg, }, . container = { .match = mtch, }, }
  /development/ndk/platforms/android-3/include/linux/
transport_class.h 30 #define DECLARE_TRANSPORT_CLASS(cls, nm, su, rm, cfg) struct transport_class cls = { .class = { .name = nm, }, .setup = su, .remove = rm, .configure = cfg, }
37 #define DECLARE_ANON_TRANSPORT_CLASS(cls, mtch, cfg) struct anon_transport_class cls = { .tclass = { .configure = cfg, }, . container = { .match = mtch, }, }
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
transport_class.h 30 #define DECLARE_TRANSPORT_CLASS(cls, nm, su, rm, cfg) struct transport_class cls = { .class = { .name = nm, }, .setup = su, .remove = rm, .configure = cfg, }
37 #define DECLARE_ANON_TRANSPORT_CLASS(cls, mtch, cfg) struct anon_transport_class cls = { .tclass = { .configure = cfg, }, . container = { .match = mtch, }, }
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
transport_class.h 30 #define DECLARE_TRANSPORT_CLASS(cls, nm, su, rm, cfg) struct transport_class cls = { .class = { .name = nm, }, .setup = su, .remove = rm, .configure = cfg, }
37 #define DECLARE_ANON_TRANSPORT_CLASS(cls, mtch, cfg) struct anon_transport_class cls = { .tclass = { .configure = cfg, }, . container = { .match = mtch, }, }
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
transport_class.h 30 #define DECLARE_TRANSPORT_CLASS(cls, nm, su, rm, cfg) struct transport_class cls = { .class = { .name = nm, }, .setup = su, .remove = rm, .configure = cfg, }
37 #define DECLARE_ANON_TRANSPORT_CLASS(cls, mtch, cfg) struct anon_transport_class cls = { .tclass = { .configure = cfg, }, . container = { .match = mtch, }, }
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
transport_class.h 30 #define DECLARE_TRANSPORT_CLASS(cls, nm, su, rm, cfg) struct transport_class cls = { .class = { .name = nm, }, .setup = su, .remove = rm, .configure = cfg, }
37 #define DECLARE_ANON_TRANSPORT_CLASS(cls, mtch, cfg) struct anon_transport_class cls = { .tclass = { .configure = cfg, }, . container = { .match = mtch, }, }
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
transport_class.h 30 #define DECLARE_TRANSPORT_CLASS(cls, nm, su, rm, cfg) struct transport_class cls = { .class = { .name = nm, }, .setup = su, .remove = rm, .configure = cfg, }
37 #define DECLARE_ANON_TRANSPORT_CLASS(cls, mtch, cfg) struct anon_transport_class cls = { .tclass = { .configure = cfg, }, . container = { .match = mtch, }, }
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/
transport_class.h 30 #define DECLARE_TRANSPORT_CLASS(cls, nm, su, rm, cfg) struct transport_class cls = { .class = { .name = nm, }, .setup = su, .remove = rm, .configure = cfg, }
37 #define DECLARE_ANON_TRANSPORT_CLASS(cls, mtch, cfg) struct anon_transport_class cls = { .tclass = { .configure = cfg, }, . container = { .match = mtch, }, }
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/
transport_class.h 30 #define DECLARE_TRANSPORT_CLASS(cls, nm, su, rm, cfg) struct transport_class cls = { .class = { .name = nm, }, .setup = su, .remove = rm, .configure = cfg, }
37 #define DECLARE_ANON_TRANSPORT_CLASS(cls, mtch, cfg) struct anon_transport_class cls = { .tclass = { .configure = cfg, }, . container = { .match = mtch, }, }

Completed in 997 milliseconds

1 2 3 4 5 6 7 8 91011>>