HomeSort by: relevance | last modified time | path
    Searched defs:active (Results 1 - 25 of 123) sorted by relevancy

1 2 3 4 5

  /src/sys/arch/ia64/stand/common/
console.c 46 * is marked active. Also create the console variable.
54 int active; local in function:cons_probe
63 active = -1;
64 for (cons = 0; consoles[cons] != NULL && active == -1; cons++) {
68 active = cons;
81 active = cons;
84 if (active == -1)
85 active = 0;
86 consoles[active]->c_flags |= (C_ACTIVEIN | C_ACTIVEOUT);
87 consoles[active]->c_init(0)
155 int cons, active; local in function:cons_set
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/
intel_engine_pool_types.h 25 struct i915_active active; member in struct:intel_engine_pool_node
intel_timeline_types.h 94 struct i915_active active; member in struct:intel_timeline_cacheline
  /src/sys/uvm/
uvm_stat.c 59 int active, inactive; local in function:uvmexp_print
62 uvm_estimatepageable(&active, &inactive);
81 (*pr)(" %d VM pages: %d active, %d inactive, %d wired, %d free\n",
82 uvmexp.npages, active, inactive, uvmexp.wired, freepg);
uvm_meter.c 98 int active, inactive; local in function:sysctl_vm_uvmexp2
100 uvm_estimatepageable(&active, &inactive);
110 u.active = active;
321 int active; local in function:uvm_total
356 * note active objects
383 uvm_estimatepageable(&active, NULL);
386 totalp->t_avm = active + uvmexp.swpginuse; /* XXX */
388 totalp->t_arm = active;
  /src/sbin/ifconfig/
af_link.c 58 {.k_word = "active", .k_key = "active", .k_type = KW_T_BOOL,
83 bool active; local in function:link_pre_aifaddr
86 if (prop_dictionary_get_bool(env, "active", &active) && active)
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_gem_evict.c 55 * bound by their active reference.
108 struct i915_vma *active; local in function:i915_gem_evict_something
116 * Since both active and inactive objects reside on the same list,
118 * we sort it into inactive/active, which keeps the active portion
123 * 2. Active objects (will stall on unbinding, oldest scanned first)
137 active = NULL;
142 * of active elements (inactive elements are cheap to reap).
153 * first active element seen, before moving it to the tail.
156 if (vma == active) {
    [all...]
i915_active_types.h 52 int (*active)(struct i915_active *ref); member in struct:i915_active
i915_globals.c 27 static atomic_t active; variable in typeref:typename:atomic_t
59 if (!atomic_read(&active)) {
135 if (!atomic_dec_and_test(&active))
146 atomic_inc(&active);
151 atomic_inc(&active); /* skip shrinking */
156 atomic_dec(&active);
161 GEM_BUG_ON(atomic_read(&active));
  /src/sys/net/agr/
ieee8023ad_lacp_sm_rx.c 150 bool active; local in function:lacp_sm_rx_record_pdu
160 active = (du->ldu_actor.lip_state & LACP_STATE_ACTIVITY)
165 if (active &&
  /src/sbin/gpt/
create.c 72 create(gpt_t gpt, u_int parts, int force, int primary_only, int active)
103 gpt_create_pmbr_part(mbr->mbr_part, last, active);
128 int active = 0; local in function:cmd_create
136 active = 1;
158 return create(gpt, parts, force, primary_only, active);
  /src/sys/dev/ic/
pcdisplayvar.h 38 int active; /* currently displayed */ member in struct:pcdisplayscreen
siopvar.h 45 * These are chained in either a free list or an active list
68 struct siop_cmd *active; /* active command */ member in struct:siop_tag
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/fifo/
gf100.h 26 int active; member in struct:gf100_fifo::__anone316f6f70208
  /src/sys/external/bsd/drm2/linux/
linux_hrtimer.c 120 bool active; local in function:hrtimer_cancel
124 * active when we invoked hrtimer_cancel.
127 /* Callout expired, meaning it was active. */
128 active = true;
133 * corresponds with whether the hrtimer was active or
136 active = callout_pending(&hrt->hrt_ch);
138 return active;
  /src/sys/arch/ews4800mips/stand/common/
local.h 52 bool active; member in struct:device_capability
disk.c 55 bool active; member in struct:disk
89 __disk.active = true;
161 if (!__disk.active)
169 __disk.active = false;
209 if (!__disk.active)
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_ids.h 46 struct amdgpu_sync active; member in struct:amdgpu_vmid
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dcn20/
amdgpu_dcn20_link_encoder.c 190 uint32_t active = 0; local in function:enc2_fec_is_active
193 REG_GET(DP_DPHY_CNTL, DPHY_FEC_ACTIVE_STATUS, &active);
195 return (active != 0);
  /src/sys/arch/arm/s3c2xx0/
s3c24x0_lcd.h 69 struct s3c24x0_lcd_screen *active; member in struct:s3c24x0_lcd_softc
  /src/sys/arch/ia64/stand/efi/libefi/
bootinfo.c 85 int active; local in function:bi_getboothowto
92 active = 0;
94 if (!active && (*cp == '-')) {
95 active = 1;
96 } else if (active)
  /src/sys/arch/ia64/stand/ia64/ski/
bootinfo.c 82 int active; local in function:bi_getboothowto
89 active = 0;
91 if (!active && (*cp == '-')) {
92 active = 1;
93 } else if (active)
  /src/sys/arch/zaurus/dev/
w100var.h 35 struct w100_screen *active; member in struct:w100_softc
  /src/sys/dev/pci/cxgb/
cxgb_lro.c 96 int active = l->nactive; local in function:lro_lookup
98 while (active) {
103 active--;
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_mutex.cc 200 u64 active = iter_ % kActiveSpinIters; local in function:__tsan::Backoff::Contention
201 u64 passive = iter_ - active;
202 return active + 10 * passive;

Completed in 24 milliseconds

1 2 3 4 5