| /external/deqp/modules/egl/ |
| teglChooseConfigTests.cpp | 21 * \brief Choose config tests. 61 EGLConfig config = *cfgIter; local 62 EGLint configId = eglu::getConfigID(egl, display, config); 546 selectionGroup->addChild(new ChooseConfigSimpleCase(m_eglTestCtx, attributes[ndx].testName, "Simple config selection case", attributes[ndx].attribute, false)); 547 sortGroup->addChild(new ChooseConfigSimpleCase(m_eglTestCtx, attributes[ndx].testName, "Simple config selection and sort case", attributes[ndx].attribute, true));
|
| /external/deqp/scripts/ |
| make_release.py | 41 from build.config import * 211 # Create config with full build dir path 212 config = BuildConfig(os.path.join(packageBuildInfo.getTmpBasePath(), self.baseConfig.getBuildDir()), 217 assert not os.path.exists(config.getBuildDir()) 218 build(config, self.generator, self.targets) 514 "--config", 515 dest="config", 533 config = ReleaseConfig(args.name, args.version, RELEASE_CONFIGS[args.config]) variable 534 makeRelease(config) [all...] |
| /external/dnsmasq/src/ |
| dhcp.c | 494 struct dhcp_config *config; local 496 for (config = configs; config; config = config->next) 497 if ((config->flags & CONFIG_ADDR) && config->addr.s_addr == addr.s_addr) 498 return config; 635 static int is_addr_in_context(struct dhcp_context *context, struct dhcp_config *config) 639 if (!(config->flags & CONFIG_ADDR) 669 struct dhcp_config *config, *candidate; local 727 struct dhcp_config *config; local 921 struct dhcp_config *config; local [all...] |
| /external/iproute2/ip/ |
| ipl2tp.c | 84 struct l2tp_parm config; member in struct:l2tp_data 201 const struct l2tp_parm *p = &data->config; 220 struct l2tp_parm *p = &data->config; 247 struct l2tp_parm *p = &data->config; 376 if (p->config.tunnel_id && p->config.session_id) { 377 addattr32(&req.n, 128, L2TP_ATTR_CONN_ID, p->config.tunnel_id); 378 addattr32(&req.n, 128, L2TP_ATTR_SESSION_ID, p->config.session_id); 410 if (p->config.tunnel_id) 411 addattr32(&req.n, 1024, L2TP_ATTR_CONN_ID, p->config.tunnel_id) [all...] |
| /external/jetty/src/java/org/eclipse/jetty/servlets/ |
| MultiPartFilter.java | 155 MultipartConfigElement config = new MultipartConfigElement(tempdir.getCanonicalPath(), _maxFileSize, _maxRequestSize, _fileOutputBuffer); local 156 MultiPartInputStream mpis = new MultiPartInputStream(in, content_type, config, tempdir);
|
| /external/kernel-headers/original/uapi/linux/ |
| mic_common.h | 36 * @config_len: Number of bytes of the config array after virtqueues. 38 * @config: Start of the following variable length config. 46 __le64 config[0]; member in struct:mic_device_desc 54 * @config_change: Set to 1 by host when a config change is requested. 78 * @h2c_config_db: Host to Card Virtio config doorbell set by card 108 * for a virtqueue to be laid out in config space. 141 * - virtio device config space
|
| /external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/ |
| LwjglCanvas.java | 67 LwjglApplicationConfiguration config = new LwjglApplicationConfiguration(); local 68 initialize(listener, config); 71 public LwjglCanvas (ApplicationListener listener, LwjglApplicationConfiguration config) { 72 initialize(listener, config); 75 private void initialize (ApplicationListener listener, LwjglApplicationConfiguration config) { 105 graphics = new LwjglGraphics(canvas, config) { 123 graphics.setVSync(config.vSyncEnabled); 269 int frameRate = Display.isActive() ? graphics.config.foregroundFPS : graphics.config.backgroundFPS; 271 if (frameRate == 0) frameRate = graphics.config.backgroundFPS [all...] |
| /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/ |
| ParticleShader.java | 54 public static class Config { 66 public Config() { } 67 public Config(AlignMode align, ParticleType type) { 72 public Config(AlignMode align) { 76 public Config(ParticleType type) { 80 public Config(final String vertexShader, final String fragmentShader) { 155 protected final Config config; field in class:ParticleShader 160 this(renderable, new Config()); 163 public ParticleShader(final Renderable renderable, final Config config) [all...] |
| /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/ |
| Benchmark3DTest.java | 36 import com.badlogic.gdx.graphics.g3d.shaders.DefaultShader.Config; 138 DefaultShader.Config config = new Config(); local 139 config.numDirectionalLights = directionalLights; 140 config.numPointLights = pointLights; 141 config.numSpotLights = 0; 144 modelBatch = new ModelBatch(new DefaultShaderProvider(config));
|
| /external/libusb/libusb/ |
| core.c | 21 #include <config.h> 675 struct libusb_config_descriptor *config, unsigned char endpoint) 678 for (iface_idx = 0; iface_idx < config->bNumInterfaces; iface_idx++) { 679 const struct libusb_interface *iface = &config->interface[iface_idx]; 718 struct libusb_config_descriptor *config; local 722 r = libusb_get_active_config_descriptor(dev, &config); 725 "could not retrieve active config descriptor"); 729 ep = find_endpoint(config, endpoint); 734 libusb_free_config_descriptor(config); 767 struct libusb_config_descriptor *config; local [all...] |