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

1 2 3

  /src/sys/net/agr/
ieee8023ad_lacp_sm_mux.c 52 enum lacp_mux_state new_state; local
65 new_state = lp->lp_mux_state;
69 new_state = LACP_MUX_WAITING;
76 new_state = LACP_MUX_ATTACHED;
78 new_state = LACP_MUX_DETACHED;
83 new_state = LACP_MUX_COLLECTING;
85 new_state = LACP_MUX_DETACHED;
90 new_state = LACP_MUX_DISTRIBUTING;
92 new_state = LACP_MUX_ATTACHED;
97 new_state = LACP_MUX_COLLECTING
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/therm/
nouveau_nvkm_subdev_therm_g84.c 107 enum nvkm_therm_thrs_state prev_state, new_state; local
116 new_state = NVKM_THERM_THRS_HIGHER;
119 new_state = NVKM_THERM_THRS_LOWER;
124 if (new_state == NVKM_THERM_THRS_LOWER && cur > thrs->temp)
125 new_state = NVKM_THERM_THRS_HIGHER;
126 else if (new_state == NVKM_THERM_THRS_HIGHER &&
128 new_state = NVKM_THERM_THRS_LOWER;
129 nvkm_therm_sensor_set_threshold_state(therm, thrs_name, new_state);
132 if (prev_state < new_state)
134 else if (prev_state > new_state)
    [all...]
nouveau_nvkm_subdev_therm_temp.c 147 enum nvkm_therm_thrs_state prev_state, new_state; local
154 new_state = NVKM_THERM_THRS_HIGHER;
158 new_state = NVKM_THERM_THRS_LOWER;
162 nvkm_therm_sensor_set_threshold_state(therm, thrs_name, new_state);
  /src/external/gpl2/groff/dist/src/devices/xditview/
parse.c 199 DviState *new_state; local
201 new_state = (DviState *) XtMalloc (sizeof (*new_state));
203 *new_state = *(dw->dvi.state);
205 new_state->font_size = 10;
206 new_state->font_number = 1;
207 new_state->x = 0;
208 new_state->y = 0;
210 new_state->next = dw->dvi.state;
211 dw->dvi.state = new_state;
    [all...]
  /src/sys/dev/gpio/
gpiobutton.c 172 const bool new_state = gpiobutton_is_pressed(sc); local
173 if (new_state != sc->sc_state) {
174 sc->sc_state = new_state;
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/
state-machine.c 83 state_machine_decl_t *new_state = state_machine_state_get(state_header, next_state); local
85 if (new_state == NULL) {
92 state_header->state_name = new_state->name;
93 state_machine_action_t action = new_state->action;
  /src/external/bsd/tmux/dist/
key-bindings.c 679 struct cmdq_state *new_state; local
691 new_state = cmdq_new_state(fs, event, flags);
692 new_item = cmdq_get_command(bd->cmdlist, new_state);
693 cmdq_free_state(new_state);
  /src/common/lib/libc/stdlib/
random.c 411 uint32_t *new_state; local
418 new_state = (uint32_t *)(void *)arg_state;
419 type = (uint32_t)(new_state[0] % MAX_TYPES);
420 rear = (uint32_t)(new_state[0] / MAX_TYPES);
441 state = (uint32_t *) (new_state + 1);
  /src/sys/arch/evbarm/g42xxeb/
g42xxeb_kmkbd.c 498 enum kmkbd_state new_state = ST_DEBOUNCE; local
508 new_state = newbits == 0 ? ST_ALL_UP : ST_KEY_PRESSED;
517 kmkbd_new_state(sc, new_state);
528 int new_state = ST_KEY_PRESSED; local
535 new_state = ST_DEBOUNCE;
539 kmkbd_new_state(sc, new_state);
544 kmkbd_new_state(struct kmkbd_softc *sc, enum kmkbd_state new_state)
548 switch(new_state){
583 sc->state = new_state;
  /src/sys/dev/fdt/
gpiokeys.c 288 const int new_state = fdtbus_gpio_read(key->key_pin); local
289 if (new_state != key->key_state) {
290 key->key_state = new_state;
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_vcn.c 301 struct dpg_pause_state new_state; local
304 new_state.fw_based = VCN_DPG_STATE__PAUSE;
306 new_state.fw_based = VCN_DPG_STATE__UNPAUSE;
308 adev->vcn.pause_dpg_mode(adev, j, &new_state);
336 struct dpg_pause_state new_state; local
344 new_state.fw_based = VCN_DPG_STATE__PAUSE;
346 new_state.fw_based = VCN_DPG_STATE__UNPAUSE;
349 new_state.fw_based = VCN_DPG_STATE__PAUSE;
351 adev->vcn.pause_dpg_mode(adev, ring->me, &new_state);
  /src/sys/external/bsd/drm2/dist/drm/i915/display/
intel_atomic.c 127 struct drm_connector_state *new_state = local
130 to_intel_digital_connector_state(new_state);
137 intel_hdcp_atomic_check(conn, old_state, new_state);
138 intel_psr_atomic_check(conn, old_state, new_state);
140 if (!new_state->crtc)
143 crtc_state = drm_atomic_get_new_crtc_state(state, new_state->crtc);
  /src/external/bsd/jemalloc/dist/src/
tsd.c 177 uint8_t new_state = tsd_state_compute(tsd); local
178 old_state = tsd_atomic_exchange(&tsd->state, new_state,
186 tsd_state_set(tsd_t *tsd, uint8_t new_state) {
188 assert(new_state != tsd_state_nominal_recompute);
196 tsd_atomic_store(&tsd->state, new_state, ATOMIC_RELAXED);
197 if (new_state <= tsd_state_nominal_max) {
207 if (new_state > tsd_state_nominal_max) {
209 tsd_atomic_store(&tsd->state, new_state,
  /src/external/bsd/libbind/dist/isc/
ctl_clnt.c 108 static void new_state(struct ctl_cctx *, enum state);
215 new_state(ctx, connecting);
387 new_state(ctx, destroyed);
397 new_state(struct ctl_cctx *ctx, enum state new_state) { function
398 static const char me[] = "isc/ctl_clnt::new_state";
401 state_names[ctx->state], state_names[new_state]);
402 ctx->state = new_state;
427 new_state(ctx, connected);
  /src/external/bsd/ntp/dist/libntp/
ntp_random.c 423 register unsigned long *new_state = (unsigned long *) arg_state; local
424 register long type = new_state[0] % MAX_TYPES;
425 register long rear = new_state[0] / MAX_TYPES;
446 state = (new_state + 1);
  /src/external/bsd/wpa/dist/src/fst/
fst_ctrl_aux.h 68 enum fst_session_state new_state; member in struct:fst_event_extra::fst_event_extra_session_state
  /src/external/gpl3/binutils/dist/libiberty/
random.c 327 register long int *new_state = (long int *) arg_state;
328 register int type = new_state[0] % MAX_TYPES;
329 register int rear = new_state[0] / MAX_TYPES;
354 state = &new_state[1];
324 register long int *new_state = (long int *) arg_state; local
  /src/external/gpl3/binutils.old/dist/libiberty/
random.c 327 register long int *new_state = (long int *) arg_state;
328 register int type = new_state[0] % MAX_TYPES;
329 register int rear = new_state[0] / MAX_TYPES;
354 state = &new_state[1];
324 register long int *new_state = (long int *) arg_state; local
  /src/external/gpl3/gcc/dist/libiberty/
random.c 327 register long int *new_state = (long int *) arg_state;
328 register int type = new_state[0] % MAX_TYPES;
329 register int rear = new_state[0] / MAX_TYPES;
354 state = &new_state[1];
324 register long int *new_state = (long int *) arg_state; local
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_mutex.h 177 u64 new_state; local
181 new_state = (state | kWriterLock) & reset_mask;
185 new_state = (state + kWaitingWriterInc) & reset_mask;
189 new_state = state | kWriterSpinWait;
195 if (UNLIKELY(!atomic_compare_exchange_weak(&state_, &state, new_state,
235 u64 new_state; local
240 new_state = state & ~kWriterLock;
244 new_state = (new_state - kWaitingWriterInc) | kWriterSpinWait;
250 new_state = (new_state & ~kWaitingReaderMask) | kReaderSpinWait
265 u64 new_state; local
299 u64 new_state; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libiberty/
random.c 329 register long int *new_state = (long int *) arg_state;
330 register int type = new_state[0] % MAX_TYPES;
331 register int rear = new_state[0] / MAX_TYPES;
356 state = &new_state[1];
326 register long int *new_state = (long int *) arg_state; local
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_mutex.h 175 u64 new_state; local
179 new_state = (state | kWriterLock) & reset_mask;
183 new_state = (state + kWaitingWriterInc) & reset_mask;
187 new_state = state | kWriterSpinWait;
193 if (UNLIKELY(!atomic_compare_exchange_weak(&state_, &state, new_state,
219 u64 new_state; local
224 new_state = state & ~kWriterLock;
228 new_state = (new_state - kWaitingWriterInc) | kWriterSpinWait;
234 new_state = (new_state & ~kWaitingReaderMask) | kReaderSpinWait
249 u64 new_state; local
283 u64 new_state; local
    [all...]
  /src/external/gpl3/gdb/dist/libiberty/
random.c 327 register long int *new_state = (long int *) arg_state;
328 register int type = new_state[0] % MAX_TYPES;
329 register int rear = new_state[0] / MAX_TYPES;
354 state = &new_state[1];
324 register long int *new_state = (long int *) arg_state; local
  /src/external/gpl3/gdb.old/dist/libiberty/
random.c 327 register long int *new_state = (long int *) arg_state;
328 register int type = new_state[0] % MAX_TYPES;
329 register int rear = new_state[0] / MAX_TYPES;
354 state = &new_state[1];
324 register long int *new_state = (long int *) arg_state; local
  /src/sys/dev/usb/
u3g.c 562 uint16_t mask, new_state; local
580 new_state = com->c_outpins & ~mask;
582 new_state |= mask;
584 if (new_state == com->c_outpins)
587 com->c_outpins = new_state;
591 USETW(req.wValue, new_state);

Completed in 51 milliseconds

1 2 3