Searched refs:active (Results 1 - 25 of 305) sorted by relevance

1234567891011>>

/freebsd-current/sys/contrib/ck/include/
H A Dck_array.h45 struct _ck_array *active; member in struct:ck_array
69 struct _ck_array *a = ck_pr_load_ptr(&array->active);
78 struct _ck_array *a = ck_pr_load_ptr(&array->active);
89 return ck_pr_load_ptr(&array->active) != NULL;
93 (i)->snapshot = ck_pr_load_ptr(&(a)->active); \
96 _ck_i < (a)->active->n_committed && \
97 ((*b) = (a)->active->values[_ck_i], 1); \
H A Dck_epoch.h67 * forward progress guarantees with-in prolonged active sections.
90 unsigned int active; member in struct:ck_epoch_record
134 if (record->active == 0) {
139 * is committed into the caller's epoch and active fields.
143 ck_pr_fas_uint(&record->active, 1);
146 ck_pr_store_uint(&record->active, 1);
152 * active flag due to monotonic nature of the global epoch.
160 ck_pr_store_uint(&record->active, record->active + 1);
178 ck_pr_store_uint(&record->active, recor
[all...]
/freebsd-current/sys/contrib/ck/src/
H A Dck_array.c37 struct _ck_array *active; local
39 active = allocator->malloc(sizeof(struct _ck_array) + sizeof(void *) * length);
40 if (active == NULL)
43 active->n_committed = 0;
44 active->length = length;
46 return active;
52 struct _ck_array *active; local
62 active = ck_array_create(allocator, length);
63 if (active == NULL)
68 array->active
[all...]
H A Dck_epoch.c44 * acquired some snapshot (e) of the global epoch value (e_g) and set an active
46 * For example, assume an initial e_g value of 1, e value of 0 and active value
51 * active = 1
54 * Any serialized reads may observe e = 0 or e = 1 with active = 0, or e = 0 or
55 * e = 1 with active = 1. The e_g value can only go from 1 to 2 if every thread
58 * critical sections (referred to as "active" threads from here on) would have
86 * still be accessed at e_g as threads are "active" at the same time
93 * e_g-1 were still active, then we would never increment to e_g+1 (active != 0
97 * (since it is valid for active thread
337 unsigned int state, active; local
430 bool active; local
568 bool active; local
[all...]
/freebsd-current/stand/common/
H A Dconsole.c70 * specified, mark them as active. Else, mark the first probed console
71 * as active. Also create the console variable.
77 int active; local
97 active = -1;
98 for (cons = 0; consoles[cons] != NULL && active == -1; cons++) {
102 active = cons;
105 if (active == -1)
106 active = 0;
116 consoles[active]->c_flags |= C_ACTIVEIN | C_ACTIVEOUT;
117 consoles[active]
266 int cons, active; local
[all...]
/freebsd-current/contrib/opencsd/decoder/include/common/
H A Dtrc_ret_stack.h59 void set_active(bool active) argument
61 m_active = active;
/freebsd-current/tools/tools/nanobsd/Files/root/
H A Dupdatep153 gpart set -a active -i 1 ${NANO_DRIVE}
H A Dupdatep260 gpart set -a active -i 2 ${NANO_DRIVE}
/freebsd-current/tools/tools/nanobsd/pcengines/Files/root/
H A Dupdatep153 gpart set -a active -i 1 ${NANO_DRIVE}
H A Dupdatep260 gpart set -a active -i 2 ${NANO_DRIVE}
/freebsd-current/contrib/ncurses/ncurses/widechar/
H A Dlib_wacs.c110 int active = _nc_unicode_locale(); local
119 T(("initializing WIDE-ACS map (Unicode is%s active)",
120 active ? "" : " not"));
128 int wide = wcwidth((wchar_t) table[n].value[active]);
134 if (active && (wide == 1)) {
144 _tracechar(table[n].value[active]),
/freebsd-current/sys/contrib/dev/rtw89/
H A Dchan.h17 static inline void rtw89_set_entity_state(struct rtw89_dev *rtwdev, bool active) argument
21 WRITE_ONCE(hal->entity_active, active);
/freebsd-current/contrib/mandoc/
H A Dtbl.c40 int active; local
50 active = 1;
54 active = 0;
57 active = 1;
60 if (active)
/freebsd-current/contrib/ntp/libntp/lib/isc/include/isc/
H A Dbuffer.h47 * The 'active region' is an (optional) subregion of the remaining region.
49 * that is selected with isc_buffer_setactive(). Initially, the active region
51 * active region will also be empty.
63 * c == active pointer. Meaningful between b and d.
71 * b-c == optional active region.
85 * 0 <= active <= used
86 * (although active < current implies empty active region)
145 ((void *)((unsigned char *)(b)->base + (b)->active)) /*c*/
158 #define isc_buffer_activelength(b) ((b)->active
176 unsigned int active; member in struct:isc_buffer
[all...]
/freebsd-current/tools/test/stress2/misc/
H A Dvunref.sh49 rm -f $RUNDIR/active.*
71 while [ ! -z "`ls $RUNDIR/active.* 2>/dev/null`" ] ; do
81 rm -f /tmp/vunref $RUNDIR/active.* $diskimage.* ${mntpoint}*/p*
84 touch $RUNDIR/active.$2
89 [ -f $RUNDIR/active.$2 ] || exit
92 rm -f $RUNDIR/active.$2
97 while [ -f $RUNDIR/active.$m ] ; do
105 rm -f $RUNDIR/active.*
/freebsd-current/contrib/jemalloc/include/jemalloc/internal/
H A Dprof_externs.h76 bool prof_active_set(tsdn_t *tsdn, bool active);
80 bool prof_thread_active_set(tsd_t *tsd, bool active);
84 bool prof_gdump_set(tsdn_t *tsdn, bool active);
/freebsd-current/lib/libc/stdlib/
H A Dgetenv.c66 * active state: true/false value to signify whether variable is active.
68 * co-exist. At most, one variable can be active at any
78 bool active; member in struct:envVars
85 * envActive: Number of active variables in array.
87 * envVarsTotal: Number of total variables in array (active or not).
151 * active are returned else all are.
160 * active). A variable created by putenv is always active, or it is not
170 } else if ((!onlyActive || envVars[ndx].active)
[all...]
/freebsd-current/sys/arm/nvidia/drm2/
H A Dtegra_drm_subr.c96 bool active; local
107 rv = gpio_pin_is_active(output->gpio_hpd, &active);
113 return (active ?
/freebsd-current/sys/dev/sound/pci/
H A Dcsavar.h36 int (*active)(int); member in struct:csa_card
/freebsd-current/sys/dev/qlnx/qlnxe/
H A Decore_hsi_init_func.h52 u8 num_active_tcs[MAX_NUM_PORTS] /* number of active TCs per port */;
107 u8 active /* Indicates if this port is active */; member in struct:init_qm_port_params
108 u8 active_phys_tcs /* Vector of valid bits for active TCs used by this port */;
/freebsd-current/sys/contrib/dev/iwlwifi/mvm/
H A Dlink.c99 u32 changes, bool active)
116 * the link was active before. So, do nothing in this case.
126 WARN_ON_ONCE(active == link_info->active);
131 if (!active && vif->type == NL80211_IFTYPE_STATION)
138 * the link becomes active, otherwise they will be ignored.
149 cmd.active = cpu_to_le32(active);
233 link_info->active = active;
97 iwl_mvm_link_changed(struct iwl_mvm *mvm, struct ieee80211_vif *vif, struct ieee80211_bss_conf *link_conf, u32 changes, bool active) argument
[all...]
/freebsd-current/sys/dev/gpio/
H A Dgpioregulator.c103 bool active; local
109 active = enable;
111 active = !active;
112 error = gpio_pin_set_active(sc->def->enable_pin, active);
161 bool active; local
167 error = gpio_pin_is_active(sc->def->pins[n], &active);
170 mask |= (active << n);
/freebsd-current/contrib/llvm-project/lld/MachO/
H A DDriver.h82 if (active)
105 bool active; member in class:lld::macho::DependencyTracker
/freebsd-current/stand/i386/mbr/
H A Dmbr.S16 # A 512 byte MBR boot manager that simply boots the active partition.
52 # Scan the partition table looking for an active entry. Note that %ch is
54 # the active partition in %si and scan the entire table to ensure that only
55 # one partition is marked active.
57 main: xorw %si,%si # No active partition
65 movw %bx,%si # Point to active
72 # Ok, we've found a possible active partition. Check to see that the drive
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_dispatch_hier.h285 // Can be used in a unit with arbitrary number of active threads
336 kmp_int32 active; // number of topology units that communicate with this unit
344 KMP_DEBUG_ASSERT(active > 0);
345 if (active == 1)
348 if (active >= 2 && active <= 8) {
349 core_barrier_impl<T>::reset_shared(active, &hier_barrier);
351 counter_barrier_impl<T>::reset_shared(active, &hier_barrier);
356 KMP_DEBUG_ASSERT(active > 0);
357 if (active
[all...]

Completed in 209 milliseconds

1234567891011>>