HomeSort by relevance Sort by last modified time
    Searched defs:cfg (Results 126 - 150 of 381) sorted by null

1 2 3 4 56 7 8 91011>>

  /system/bt/stack/srvc/
srvc_battery.cc 70 tBA_WRITE_DATA cfg; local
76 cfg.remote_bda = srvc_eng_cb.clcb[clcb_idx].bda;
77 STREAM_TO_UINT16(cfg.clt_cfg, p);
83 cfg.need_rsp = p_value->need_rsp;
86 (*p_inst->p_cback)(p_inst->app_id, BA_WRITE_CLT_CFG_REQ, &cfg);
  /external/emma/ant/ant14/com/vladium/emma/report/
ReportCfg.java 285 final Element cfg = (Element) i.next (); local
286 cfg.processGenericSettings ();
402 protected Element addCfgElement (final String type, final Element cfg)
413 m_cfgList.add (cfg);
416 return cfg;
  /packages/services/Car/tests/vehiclehal_test/src/com/android/car/vehiclehal/test/
E2ePerformanceTest.java 179 CarPropertyConfig<Float> cfg = findHvacPropConfig(Float.class, PROP, mgr); local
180 assertNotNull(cfg);
182 + ", got: " + cfg.getAreaCount(), cfg.getAreaCount() >= 2);
192 long missingInvocations = stressTestHvacProperties(mgr, cfg,
206 private long stressTestHvacProperties(CarHvacManager mgr, CarPropertyConfig<Float> cfg,
211 new Thread(() -> invokeSetAndGetForHvacFloat(mgr, cfg, cfg.getAreaIds()[0], counter)),
212 new Thread(() -> invokeSetAndGetForHvacFloat(mgr, cfg, cfg.getAreaIds()[1], counter))))
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
Settings_SystemTest.java 104 Configuration cfg = new Configuration(); local
105 System.getConfiguration(cr, cfg);
106 float store = cfg.fontScale;
141 cfg = new Configuration();
142 cfg.fontScale = 1.2f;
143 assertTrue(System.putConfiguration(cr, cfg));
145 System.getConfiguration(cr, cfg);
146 assertEquals(1.2f, cfg.fontScale);
152 cfg.fontScale = store;
153 assertTrue(System.putConfiguration(cr, cfg));
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 68 const CFG &cfg; member in class:__anon15327::ReachableCode
71 ReachableCode(const CFG &cfg)
72 : cfg(cfg), reachable(cfg.getNumBlockIDs(), false) {}
83 if (!cfg.getNumBlockIDs())
87 worklist.push_back(&cfg.getEntry());
124 const CFG &cfg member in class:__anon15328::DeadStoreObs
467 CFG &cfg = *mgr.getCFG(D); local
    [all...]
MallocOverflowSecurityChecker.cpp 297 CFG *cfg = mgr.getCFG(D); local
298 if (!cfg)
304 for (CFG::iterator it = cfg->begin(), ei = cfg->end(); it != ei; ++it) {
  /external/libvpx/libvpx/examples/
vp8_multi_resolution_encoder.c 124 static void write_ivf_file_header(FILE *outfile, const vpx_codec_enc_cfg_t *cfg,
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->ts_periodicity = 1
291 vpx_codec_enc_cfg_t cfg[NUM_ENCODERS]; local
    [all...]
vp9cx_set_ref.c 282 vpx_codec_enc_cfg_t cfg; local
311 vp9_zero(cfg);
359 res = vpx_codec_enc_config_default(encoder->codec_interface(), &cfg, 0);
362 cfg.g_w = info.frame_width;
363 cfg.g_h = info.frame_height;
364 cfg.g_timebase.num = info.time_base.numerator;
365 cfg.g_timebase.den = info.time_base.denominator;
366 cfg.rc_target_bitrate = bitrate;
367 cfg.g_lag_in_frames = 3;
375 if (vpx_codec_enc_init(&ecodec, encoder->codec_interface(), &cfg, 0)
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv50_query_hw_sm.c 167 const struct nv50_hw_sm_query_cfg *cfg; local
171 cfg = nv50_hw_sm_query_get_cfg(nv50, hq);
174 if (screen->pm.num_hw_sm_active + cfg->num_counters > 4) {
179 assert(cfg->num_counters <= 4);
189 for (i = 0; i < cfg->num_counters; i++) {
206 PUSH_DATA (push, (cfg->ctr[i].sig << 24) | (func << 8)
207 | cfg->ctr[i].unit | cfg->ctr[i].mode);
283 const struct nv50_hw_sm_query_cfg *cfg; local
290 cfg = nv50_hw_sm_query_get_cfg(nv50, &hsq->base)
341 const struct nv50_hw_sm_query_cfg *cfg; local
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/nvc0/
nvc0_query_hw_metric.c 715 const struct nvc0_hw_metric_query_cfg *cfg; local
731 cfg = nvc0_hw_metric_query_get_cfg(nvc0, hq);
733 for (i = 0; i < cfg->num_queries; i++) {
734 hmq->queries[i] = nvc0_hw_sm_create_query(nvc0, cfg->queries[i]);
764 const struct nvc0_hw_metric_cfg *cfg = local
767 info->name = cfg->name;
769 info->type = cfg->type;
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_cfg.h 56 explicit bblock_t(cfg_t *cfg);
83 struct cfg_t *cfg; member in struct:bblock_t
brw_fs_copy_propagation.cpp 85 fs_copy_prop_dataflow(void *mem_ctx, cfg_t *cfg,
94 cfg_t *cfg; member in class:__anon30446::fs_copy_prop_dataflow
104 fs_copy_prop_dataflow::fs_copy_prop_dataflow(void *mem_ctx, cfg_t *cfg,
106 : mem_ctx(mem_ctx), cfg(cfg)
108 bd = rzalloc_array(mem_ctx, struct block_data, cfg->num_blocks);
111 foreach_block (block, cfg) {
122 foreach_block (block, cfg) {
157 foreach_block (block, cfg) {
179 foreach_block (block, cfg) {
    [all...]
brw_shader.h 214 cfg_t *cfg; member in struct:backend_instruction::backend_shader
  /external/selinux/libselinux/src/
booleans.c 95 FILE *cfg; local
100 cfg = fopen(selinux_booleans_subs_path(), "re");
101 if (!cfg)
104 while (getline(&line_buf, &line_len, cfg) != -1) {
137 fclose(cfg);
seusers.c 171 FILE *cfg = NULL; local
188 cfg = fopen(selinux_usersconf_path(), "re");
189 if (!cfg)
192 __fsetlocking(cfg, FSETLOCKING_BYCALLER);
193 while (getline(&buffer, &size, cfg) > 0) {
229 fclose(cfg);
  /external/selinux/mcstrans/src/
mcscolor.c 245 FILE *cfg = NULL; local
252 cfg = fopen(selinux_colors_path(), "r");
253 if (!cfg) return 1;
255 __fsetlocking(cfg, FSETLOCKING_BYCALLER);
256 while (getline(&buffer, &size, cfg) > 0) {
261 fclose(cfg);
  /external/syslinux/gpxe/src/drivers/net/
3c90x.c 661 unsigned int cfg; local
759 cfg = inl(inf_3c90x->IOAddr + regInternalConfig_3_l);
760 cfg &= ~(0xF << 20);
761 cfg |= (linktype << 20);
763 DBG("Setting internal cfg register: 0x%08X (linktype: 0x%02X)\n",
764 cfg, linktype);
766 outl(cfg, inf_3c90x->IOAddr + regInternalConfig_3_l);
eepro100.c 313 struct ifec_cfg *cfg = NULL; local
348 cfg = malloc_dma ( sizeof ( *cfg ), CB_ALIGN );
349 if ( !cfg ) {
353 memcpy ( cfg, &ifec_cfg, sizeof ( *cfg ) );
354 cfg->link = virt_to_bus ( priv->tcbs );
355 cfg->byte[19] = ( options & 0x10 ) ? 0xC0 : 0x80;
356 ias->link = virt_to_bus ( cfg );
364 for ( i = 10; i && !cfg->status; i--
    [all...]
  /external/syslinux/gpxe/src/include/gpxe/
aoe.h 61 struct aoecfg cfg; member in union:aoecmd
  /external/tensorflow/tensorflow/core/grappler/
grappler_item_builder_test.cc 80 ItemConfig cfg; local
81 cfg.inline_functions = true;
84 return GrapplerItemFromMetaGraphDef("0", meta_def, cfg);
168 ItemConfig cfg; local
169 cfg.assets_directory_override = temp_dir;
172 GrapplerItemFromMetaGraphDef("0", meta_graph, cfg);
250 ItemConfig cfg; local
251 cfg.assets_directory_override = temp_dir;
254 GrapplerItemFromMetaGraphDef("0", meta_graph, cfg);
275 ItemConfig cfg; local
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_wsc.c 144 struct wps_config cfg; local
180 os_memset(&cfg, 0, sizeof(cfg));
181 cfg.wps = wps;
182 cfg.registrar = registrar;
195 cfg.pin = (const u8 *) pos;
198 cfg.pin_len = pos - (const char *) cfg.pin;
199 if (cfg.pin_len == 6 &&
200 os_strncmp((const char *) cfg.pin, "nfc-pw", 6) == 0)
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_wsc.c 83 struct wps_config cfg; local
105 os_memset(&cfg, 0, sizeof(cfg));
106 cfg.wps = sm->wps;
107 cfg.registrar = registrar;
127 cfg.pin = sm->user->password;
128 cfg.pin_len = sm->user->password_len;
131 cfg.assoc_wps_ie = sm->assoc_wps_ie;
132 cfg.peer_addr = sm->peer_addr;
137 cfg.use_psk_key = 1
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/dec/
SoftVPX.cpp 90 vpx_codec_dec_cfg_t cfg; local
92 memset(&cfg, 0, sizeof(vpx_codec_dec_cfg_t));
94 cfg.threads = GetCPUCoreCount();
103 &cfg, flags))) {
  /frameworks/base/core/tests/coretests/src/android/content/res/
ConfigurationBoundResourceCacheTest.java 87 final Configuration cfg = res.getConfiguration(); local
88 Configuration newCnf = new Configuration(cfg);
89 newCnf.orientation = cfg.orientation == Configuration.ORIENTATION_LANDSCAPE ?
110 final Configuration cfg = res.getConfiguration(); local
111 Configuration newCnf = new Configuration(cfg);
112 newCnf.orientation = cfg.orientation == Configuration.ORIENTATION_LANDSCAPE ?
136 final Configuration cfg = res.getConfiguration(); local
137 Configuration newCnf = new Configuration(cfg);
138 newCnf.orientation = cfg.orientation == Configuration.ORIENTATION_LANDSCAPE ?
178 final Configuration cfg = res.getConfiguration() local
    [all...]
  /hardware/google/av/media/sfplugin/tests/
MediaCodec_sanity_test.cpp 39 cfg(new AMessage),
55 sp<AMessage> cfg; member in class:android::MediaCodecSanityTest
112 cfg->setInt32("width", 320);
113 cfg->setInt32("height", 240);
114 cfg->setString("mime", MIMETYPE_VIDEO_AVC);
118 cfg->setInt32("max-input-size", InputSize);
121 EXPECT_EQ(codec->configure(cfg, nullptr, nullptr, 0), OK);
141 cfg->setInt32("width", 320);
142 cfg->setInt32("height", 240);
143 cfg->setString("mime", MIMETYPE_VIDEO_VP8)
    [all...]

Completed in 395 milliseconds

1 2 3 4 56 7 8 91011>>