Searched defs:active (Results 1 - 25 of 196) sorted by relevance

12345678

/external/clang/test/CodeGen/
H A D2007-09-17-WeakRef.c6 int active (void) function
H A D2008-09-03-WeakAlias.c5 int active (void) function
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dgen7_te_state.c33 bool active = brw->tess_eval_program; local
38 if (active) {
H A Dbrw_reset.c39 uint32_t active; local
49 * nonzero active/pending only if reset has been encountered and completed.
55 err = drm_intel_get_reset_stats(brw->hw_ctx, &reset_count, &active,
63 if (active != 0) {
84 uint32_t active; local
88 err = drm_intel_get_reset_stats(brw->hw_ctx, &reset_count, &active,
93 if (active > 0 || pending > 0)
H A Dgen8_ds_state.c35 bool active = brw->tess_eval_program; local
45 if (active) {
104 brw->tes.enabled = active;
H A Dgen8_hs_state.c35 bool active = brw->tess_eval_program; local
41 if (active) {
81 brw->tcs.enabled = active;
H A Dgen6_constant_state.c33 bool active, unsigned opcode)
38 active = active && stage_state->push_const_size != 0;
55 if (brw->gen >= 9 && active) {
59 OUT_BATCH(active ? stage_state->push_const_size : 0);
65 if (brw->gen >= 9 && active) {
78 OUT_BATCH(active ? (stage_state->push_const_offset | mocs) : 0);
87 OUT_BATCH(active ? (stage_state->push_const_offset | mocs) : 0);
31 gen7_upload_constant_state(struct brw_context *brw, const struct brw_stage_state *stage_state, bool active, unsigned opcode) argument
H A Dgen6_gs_state.c97 bool active = brw->geometry_program; local
104 if (!active || stage_state->push_const_size == 0) {
129 if (active) {
201 brw->gs.enabled = active;
H A Dgen7_ds_state.c66 bool active = brw->tess_eval_program; local
78 if (active) {
114 brw->tes.enabled = active;
H A Dgen7_gs_state.c37 bool active = brw->geometry_program; local
57 if (!brw->is_haswell && brw->gt == 2 && brw->gs.enabled != active)
60 if (active) {
155 brw->gs.enabled = active;
H A Dgen7_hs_state.c36 bool active = brw->tess_eval_program; local
38 if (active) {
47 gen7_upload_constant_state(brw, stage_state, active, _3DSTATE_CONSTANT_HS);
69 bool active = brw->tess_eval_program; local
75 if (active) {
112 brw->tcs.enabled = active;
H A Dgen8_gs_state.c35 bool active = brw->geometry_program; local
43 if (active) {
/external/autotest/frontend/client/src/autotest/common/ui/
H A DToggleControl.java9 public void setActive(boolean active); argument
H A DToggleLink.java29 public void setActive(boolean active) { argument
30 link.setText(active ? deactivateText : activateText);
/external/jemalloc/test/unit/
H A Dprof_idump.c26 bool active; local
31 active = true;
32 assert_d_eq(mallctl("prof.active", NULL, NULL, (void *)&active,
33 sizeof(active)), 0,
H A Dprof_gdump.c24 bool active, gdump, gdump_old; local
30 active = true;
31 assert_d_eq(mallctl("prof.active", NULL, NULL, (void *)&active,
32 sizeof(active)), 0,
/external/libese/apps/weaver/include/ese/app/
H A Dweaver.h49 bool active; member in struct:EseWeaverSession
/external/ltp/pan/
H A Dltp-bump.c48 char *active = NULL; local
56 active = malloc(strlen(optarg) + 1);
57 strcpy(active, optarg);
71 if (active == NULL) {
72 active = zoo_getname();
73 if (active == NULL) {
86 if ((zoo = zoo_open(active)) == NULL) {
/external/autotest/frontend/client/src/autotest/common/table/
H A DCheckboxFilter.java33 public void setActive(boolean active) { argument
34 checkBox.setValue(active);
/external/libese/apps/boot/include/ese/app/
H A Dboot.h51 bool active; member in struct:EseBootSession
/external/linux-kselftest/tools/testing/selftests/sync/
H A Dsync_wait.c36 int valid, active, signaled, ret; local
53 active = sync_fence_count_with_status(merged, FENCE_STATUS_ACTIVE);
54 ASSERT(active == 3, "Fence signaled too early!\n");
61 active = sync_fence_count_with_status(merged, FENCE_STATUS_ACTIVE);
63 ASSERT(active == 2 && signaled == 1,
67 active = sync_fence_count_with_status(merged, FENCE_STATUS_ACTIVE);
69 ASSERT(active == 1 && signaled == 2,
73 active = sync_fence_count_with_status(merged, FENCE_STATUS_ACTIVE);
75 ASSERT(active == 0 && signaled == 3,
/external/mesa3d/src/gallium/drivers/etnaviv/
H A Detnaviv_query.h46 bool active; member in struct:etna_query
/external/mesa3d/src/gallium/drivers/ilo/
H A Dilo_query.h46 bool active; member in struct:ilo_query
/external/selinux/libselinux/utils/
H A Dgetsebool.c17 int i, get_all = 0, rc = 0, active, pending, len = 0, opt; local
75 active = security_get_boolean_active(names[i]);
76 if (active < 0) {
79 fprintf(stderr, "Error getting active value for %s\n",
98 if (pending != active) {
100 (active ? "on" : "off"),
104 (active ? "on" : "off"));
/external/tensorflow/tensorflow/core/distributed_runtime/
H A Dworker_cache.h74 virtual void SetLogging(bool active) {} argument

Completed in 511 milliseconds

12345678