| /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...] |
| /external/mesa3d/src/glx/ |
| drisw_glx.c | 377 __GLXDRIconfigPrivate *config = (__GLXDRIconfigPrivate *) config_base; local 401 if (!glx_context_init(&pcp->base, &psc->base, &config->base)) { 408 config->driConfig, shared, pcp); 428 __GLXDRIconfigPrivate *config = (__GLXDRIconfigPrivate *) config_base; local 466 if (!glx_context_init(&pcp->base, &psc->base, &config->base)) { 488 config->driConfig, 521 __GLXDRIconfigPrivate *config = (__GLXDRIconfigPrivate *) modes; local 543 (*swrast->createNewDrawable) (psc->driScreen, config->driConfig, pdp);
|
| /external/pdfium/samples/ |
| pdfium_test.cc | 589 FPDF_LIBRARY_CONFIG config; local 590 config.version = 2; 591 config.m_pUserFontPaths = nullptr; 592 config.m_pIsolate = nullptr; 593 config.m_v8EmbedderSlot = 0; 599 config.m_pUserFontPaths = path_array; 601 FPDF_InitLibraryWithConfig(&config);
|
| /external/skia/src/images/ |
| SkImageDecoder_libwebp.cpp | 110 * Called when determining the output config to request to webp. 190 // and decodes this block to appropriate color-space as per config object. 191 static bool webp_idecode(SkStream* stream, WebPDecoderConfig* config) { 192 WebPIDecoder* idec = WebPIDecode(nullptr, 0, config); 194 WebPFreeDecBuffer(&config->output); 208 WebPFreeDecBuffer(&config->output); 229 WebPFreeDecBuffer(&config->output); 234 static bool webp_get_config_resize(WebPDecoderConfig* config, 242 if (0 == WebPInitDecoderConfig(config)) { 246 config->output.colorspace = mode 316 WebPDecoderConfig config; local [all...] |
| /external/sonivox/arm-wt-22k/lib_src/ |
| jet_data.h | 148 S_JET_CONFIG config; member in struct:s_jet_data_tag
|
| /external/tinycompress/ |
| compress.c | 88 struct compr_config *config; member in struct:compress 142 static bool _is_codec_supported(struct compress *compress, struct compr_config *config, 149 if (caps->codecs[i] == config->codec->id) { 160 if (config->fragment_size < caps->min_fragment_size) { 162 config->fragment_size, caps->min_fragment_size); 165 if (config->fragment_size > caps->max_fragment_size) { 167 config->fragment_size, caps->max_fragment_size); 170 if (config->fragments < caps->min_fragments) { 172 config->fragments, caps->min_fragments); 175 if (config->fragments > caps->max_fragments) [all...] |
| /external/v8/src/ia32/ |
| deoptimizer-ia32.cc | 236 const RegisterConfiguration* config = local 238 for (int i = 0; i < config->num_allocatable_double_registers(); ++i) { 239 int code = config->GetAllocatableDoubleCode(i); 291 for (int i = 0; i < config->num_allocatable_double_registers(); ++i) { 292 int code = config->GetAllocatableDoubleCode(i); 375 for (int i = 0; i < config->num_allocatable_double_registers(); ++i) { 376 int code = config->GetAllocatableDoubleCode(i);
|
| /external/v8/src/x87/ |
| deoptimizer-x87.cc | 312 const RegisterConfiguration* config = local 316 int code = config->GetAllocatableDoubleCode(i);
|
| /external/vulkan-validation-layers/tests/ |
| vktestframework.cpp | 242 // - dumping out a template for user construction of a config file 340 // *.conf => this is a config file that can set limits/resources 359 char *config = 0; local 363 config = *configStrings; 370 if (config == 0) { 371 config = (char *)alloca(strlen(DefaultConfig) + 1); 372 strcpy(config, DefaultConfig); 376 const char *token = strtok(config, delims); 739 // TODO: Do we want to load a special config file depending on the
|
| /external/webp/src/demux/ |
| anim_decode.c | 14 #include "../webp/config.h" 34 WebPDecoderConfig config_; // Decoder config. 66 WebPDecoderConfig* config = &dec->config_; local 77 WebPInitDecoderConfig(config); 78 config->output.colorspace = mode; 79 config->output.is_external_memory = 1; 80 config->options.use_threads = dec_options->use_threads; 81 // Note: config->output.u.RGBA is set at the time of decoding each frame. 342 WebPDecoderConfig* const config = &dec->config_; local 343 WebPRGBABuffer* const buf = &config->output.u.RGBA [all...] |
| /external/webrtc/talk/media/webrtc/ |
| webrtcvideoengine2.h | 211 void ConfigureReceiverRtp(webrtc::VideoReceiveStream::Config* config, 242 const webrtc::VideoSendStream::Config& config, 283 const webrtc::VideoSendStream::Config& config, 287 webrtc::VideoSendStream::Config config; member in struct:cricket::WebRtcVideoChannel2::WebRtcVideoSendStream::VideoSendStreamParameters 392 const webrtc::VideoReceiveStream::Config& config, [all...] |
| /external/webrtc/webrtc/modules/audio_coding/neteq/ |
| neteq_stereo_unittest.cc | 63 NetEq::Config config; local 64 config.sample_rate_hz = sample_rate_hz_; 65 neteq_mono_ = NetEq::Create(config); 66 neteq_ = NetEq::Create(config);
|
| /external/webrtc/webrtc/modules/audio_coding/neteq/tools/ |
| neteq_rtpplay.cc | 491 NetEq::Config config; local 492 config.sample_rate_hz = sample_rate_hz; 493 NetEq* neteq = NetEq::Create(config);
|
| /external/webrtc/webrtc/modules/rtp_rtcp/source/ |
| rtp_rtcp_impl_unittest.cc | 103 RtpRtcp::Configuration config; local 104 config.audio = false; 105 config.clock = clock; 106 config.outgoing_transport = &transport_; 107 config.receive_statistics = receive_statistics_.get(); 108 config.rtcp_packet_type_counter_observer = this; 109 config.rtt_stats = &rtt_stats_; 111 impl_.reset(new ModuleRtpRtcpImpl(config)); 321 // Verify RTT from rtt_stats config.
|
| /external/webrtc/webrtc/voice_engine/test/cmd_test/ |
| voe_cmd_test.cc | 502 Config config; local 503 config.Set<ExperimentalNs>(new ExperimentalNs(experimental_ns_enabled)); 504 base1->audio_processing()->SetExtraOptions(config);
|
| /external/wpa_supplicant_8/src/eap_peer/ |
| eap_mschapv2.c | 300 struct eap_peer_config *config = eap_get_config(sm); local 301 if (config && config->new_password) { 306 bin_clear_free(config->password, config->password_len); 307 if (config->flags & EAP_CONFIG_FLAGS_EXT_PASSWORD) { 309 } else if (config->flags & EAP_CONFIG_FLAGS_PASSWORD_NTHASH) { 310 config->password = os_malloc(16); 311 config->password_len = 16; 312 if (config->password & 405 struct eap_peer_config *config = eap_get_config(sm); local 684 struct eap_peer_config *config = eap_get_config(sm); local 780 struct eap_peer_config *config = eap_get_config(sm); local [all...] |