HomeSort by relevance Sort by last modified time
    Searched defs:active (Results 1 - 25 of 629) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2007-09-17-WeakRef.c 6 int active (void) function
2008-09-03-WeakAlias.c 5 int active (void) function
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen7_te_state.c 33 bool active = brw->tess_eval_program; local
38 if (active) {
brw_reset.c 39 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)
gen8_hs_state.c 35 bool active = brw->tess_eval_program; local
41 if (active) {
81 brw->tcs.enabled = active;
gen7_hs_state.c 36 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;
gen8_ds_state.c 35 bool active = brw->tess_eval_program; local
45 if (active) {
104 brw->tes.enabled = active;
gen6_gs_state.c 97 bool active = brw->geometry_program; local
104 if (!active || stage_state->push_const_size == 0) {
129 if (active) {
201 brw->gs.enabled = active;
gen7_ds_state.c 66 bool active = brw->tess_eval_program; local
78 if (active) {
114 brw->tes.enabled = active;
gen7_gs_state.c 37 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;
gen8_gs_state.c 35 bool active = brw->geometry_program; local
43 if (active) {
  /external/ltp/pan/
ltp-bump.c 48 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/jemalloc/test/unit/
prof_idump.c 26 bool active; local
31 active = true;
32 assert_d_eq(mallctl("prof.active", NULL, NULL, (void *)&active,
33 sizeof(active)), 0,
prof_gdump.c 24 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/
weaver.h 49 bool active; member in struct:EseWeaverSession
  /system/extras/libperfmgr/
RequestGroup.cc 48 bool active = false; local
56 active = true;
60 return active;
  /external/autotest/client/common_lib/
profiler_manager.py 86 def active(self): member in class:profiler_manager
  /external/libese/apps/boot/include/ese/app/
boot.h 51 bool active; member in struct:EseBootSession
  /external/linux-kselftest/tools/testing/selftests/sync/
sync_wait.c 36 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/
etnaviv_query.h 46 bool active; member in struct:etna_query
  /external/mesa3d/src/gallium/drivers/freedreno/
freedreno_query.h 49 bool active; member in struct:fd_query
  /external/mesa3d/src/gallium/drivers/ilo/
ilo_query.h 46 bool active; member in struct:ilo_query
  /external/mesa3d/src/intel/common/
gen_urb_config.c 53 * \param[in] tess_present - are tessellation shaders active?
54 * \param[in] gs_present - are geometry shaders active?
66 const bool active[4] = { true, tess_present, tess_present, gs_present }; local
135 if (active[i]) {
  /external/selinux/libselinux/utils/
getsebool.c 17 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/webrtc/webrtc/modules/rtp_rtcp/source/
rtp_header_extension.h 32 : type(extension_type), length(0), active(true) {
36 HeaderExtension(RTPExtensionType extension_type, bool active)
37 : type(extension_type), length(0), active(active) {
68 bool active; member in struct:webrtc::HeaderExtension
80 // Active is a concept for a registered rtp header extension which doesn't
85 bool SetActive(const RTPExtensionType type, bool active);
112 int32_t Register(const RTPExtensionType type, const uint8_t id, bool active);

Completed in 423 milliseconds

1 2 3 4 5 6 7 8 91011>>