Searched refs:state (Results 426 - 450 of 2035) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/sys/contrib/ck/src/
H A Dck_epoch.c115 * re-use e_g to represent the e_g+3 state. This means it is sufficient to
244 unsigned int state; local
252 if (ck_pr_load_uint(&record->state) == CK_EPOCH_STATE_FREE) {
255 state = ck_pr_fas_uint(&record->state,
257 if (state == CK_EPOCH_STATE_FREE) {
280 record->state = CK_EPOCH_STATE_USED;
315 ck_pr_store_uint(&record->state, CK_EPOCH_STATE_FREE);
337 unsigned int state, active; local
341 state
[all...]
/freebsd-11-stable/contrib/dialog/
H A Dfselect.c514 usable_state(int state, LIST * dirs, LIST * files) argument
518 switch (state) {
532 #define which_list() ((state == sFILES) \
534 : ((state == sDIRS) \
585 int state = dialog_vars.default_button >= 0 ? dlg_default_button() : sTEXT; local
587 int first = (state == sTEXT);
709 if (fill_lists(current, input, &d_list, &f_list, state < sTEXT))
725 button = (state < 0) ? 0 : state;
734 if (state <
[all...]
/freebsd-11-stable/usr.sbin/mptutil/
H A Dmpt_config.c362 parse_volume(int fd, int raid_type, struct config_id_state *state, argument
413 error = mpt_lookup_drive(state->list, cp, &PhysDiskNum);
422 if (mpt_lookup_standalone_disk(cp, state->sdisks,
423 state->nsdisks, &i) < 0) {
428 dinfo->sdisk = &state->sdisks[i];
477 find_next_volume(struct config_id_state *state) argument
484 state->target_id++;
487 for (i = 0; i < state->nsdisks; i++)
488 if (state->sdisks[i].target == state
505 build_volume(int fd, struct volume_info *info, int raid_type, long stripe_size, struct config_id_state *state, int verbose) argument
625 struct config_id_state state; local
[all...]
/freebsd-11-stable/usr.sbin/ppp/
H A Dccp.c172 State2Nam(ccp->fsm.state));
173 if (ccp->fsm.state == ST_OPENED) {
208 switch (ccp->cfg.mppe.state) {
216 prompt_Printf(arg->prompt, "any state");
264 ccp->cfg.mppe.state = MPPE_ANYSTATE;
280 ccp->in.state = ccp->out.state = NULL;
294 * without our state machine bringing the supporting lcp layer down.
319 if (ccp->fsm.state == ST_OPENED && ccp->out.algorithm >= 0)
429 if (ccp->out.state
[all...]
/freebsd-11-stable/crypto/heimdal/appl/telnet/telnetd/
H A Dstate.c69 #define TS_DATA 0 /* base state */
83 static int state = TS_DATA; local
93 switch (state) {
96 state = TS_DATA;
105 state = TS_IAC;
130 state = TS_CR;
226 state = TS_SB;
231 state = TS_WILL;
235 state = TS_WONT;
239 state
[all...]
H A DMakefile.am11 telnetd_SOURCES = telnetd.c state.c termstat.c slc.c sys_term.c \
/freebsd-11-stable/sys/dev/utopia/
H A Dutopia.c231 if (utp->chip->type != UTP_TYPE_UNKNOWN && utp->state & UTP_ST_ACTIVE) {
233 if (!(utp->state & UTP_ST_SDH))
236 if (utp->state & UTP_ST_SDH)
240 if (!(utp->state & UTP_ST_UNASS))
243 if (utp->state & UTP_ST_UNASS)
247 if (!(utp->state & UTP_ST_NOSCRAMB))
250 if (utp->state & UTP_ST_NOSCRAMB)
268 if (utp->chip->type != UTP_TYPE_UNKNOWN && utp->state & UTP_ST_ACTIVE) {
285 if (utp->state & UTP_ST_SDH) {
289 if (utp->state
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DHashing.h256 /// The intermediate state used during hashing.
258 /// keeps 56 bytes of arbitrary state.
266 hash_state state = { local
269 state.h6 = hash_16_bytes(state.h4, state.h5);
270 state.mix(s);
271 return state;
305 /// state and the length of bytes hashed.
413 hash_state state local
455 hash_state state = state.create(s_begin, seed); local
496 hash_state state; member in struct:llvm::hashing::detail::hash_combine_recursive_helper
[all...]
/freebsd-11-stable/contrib/ncurses/ncurses/tinfo/
H A Ddb_iterator.c228 _nc_next_db(DBDIRS * state, int *offset) argument
233 if ((int) *state < my_size
235 && my_list[*state] != 0) {
236 result = my_list[*state];
237 (*state)++;
242 T(("_nc_next_db %d %s", *state, result));
248 _nc_first_db(DBDIRS * state, int *offset) argument
251 *state = dbdTIC;
/freebsd-11-stable/contrib/libstdc++/include/bits/
H A Dpostypes.h92 * @param StateT Type passed to and returned from state().
105 // constructs the state.
114 // constructs the state.
124 state(_StateT __st) function in class:fpos
129 state() const function in class:fpos
/freebsd-11-stable/contrib/ldns/ldns/
H A Dsha2.h83 uint32_t state[8]; member in struct:_ldns_sha256_CTX
88 uint64_t state[8]; member in struct:_ldns_sha512_CTX
/freebsd-11-stable/sys/dev/cxgb/ulp/tom/
H A Dcxgb_l2t.h50 * Each L2T entry plays multiple roles. First of all, it keeps state for the
58 uint16_t state; /* entry state */ member in struct:l2t_entry
94 if (__predict_true(e->state == L2T_STATE_VALID))
/freebsd-11-stable/secure/lib/libcrypt/
H A Dcrypt-blowfish.c39 * 1. state := InitState ()
40 * 2. state := ExpandKey (state, salt, password)
42 * state := ExpandKey (state, 0, password)
43 * state := ExpandKey (state, 0, salt)
46 * ctext := Encrypt_ECB (state, ctext);
141 blf_ctx state; local
223 Blowfish_initstate(&state);
[all...]
/freebsd-11-stable/crypto/openssh/regress/unittests/kex/
H A Dtest_kex.c85 struct sshbuf *state; local
131 state = sshbuf_new();
132 ASSERT_PTR_NE(state, NULL);
133 ASSERT_INT_EQ(ssh_packet_get_state(server, state), 0);
134 ASSERT_INT_GE(sshbuf_len(state), 1);
143 ASSERT_INT_EQ(ssh_packet_set_state(server2, state), 0);
144 ASSERT_INT_EQ(sshbuf_len(state), 0);
145 sshbuf_free(state);
/freebsd-11-stable/etc/
H A Drc.suspend38 state=$2
H A Drc.resume38 state=$2
/freebsd-11-stable/tools/tools/net80211/scripts/
H A Dsetup.dfs15 #mwldebug state+node+reset+xmit+recv+beacon+hal+hal2
22 wlandebug -i $WLAN state+scan+assoc+11n
H A Dsetup.fixed16 wlandebug -i $WLAN state+scan+assoc
H A Dsetup.simple15 wlandebug -i $WLAN state+scan+assoc+11n
H A Dsetup.tdma-master14 wlandebug -i $WLAN state+scan+tdma
H A Dsetup.updown13 #mwldebug state+node+reset+xmit+recv+beacon+hal+hal2
21 wlandebug -i $WLAN state+scan+assoc
H A Dsetup.wep14 wlandebug -i $WLAN state+scan+assoc+crypto
/freebsd-11-stable/sys/dev/joy/
H A Djoy.c49 * Getting the state of the buttons is done by reading the game port:
157 int state = 0; local
182 state = bus_space_read_1 (bt, port, 0);
184 state >>= 2;
186 if (!timespecisset(&x) && !(state & 0x01))
188 if (!timespecisset(&y) && !(state & 0x02))
208 state >>= 4;
209 c.b1 = ~state & 1;
210 c.b2 = ~(state >> 1) & 1;
/freebsd-11-stable/usr.sbin/bluetooth/l2control/
H A Dl2cap.c134 static char const * const state[] = { local
139 #define con_state2str(x) ((x) >= SIZE(state)? "UNKNOWN" : state[(x)])
176 con_state2str(r.connections[n].state));
188 static char const * const state[] = { local
197 #define ch_state2str(x) ((x) >= SIZE(state)? "UNKNOWN" : state[(x)])
229 ch_state2str(r.channels[n].state));
/freebsd-11-stable/lib/libthr/thread/
H A Dthr_info.c70 if (thread->state != PS_DEAD) {
103 if (thread->state != PS_DEAD)

Completed in 226 milliseconds

<<11121314151617181920>>