Searched refs:state (Results 276 - 300 of 2035) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/contrib/libreadline/
H A Dhistory.c92 HISTORY_STATE *state; local
94 state = (HISTORY_STATE *)xmalloc (sizeof (HISTORY_STATE));
95 state->entries = the_history;
96 state->offset = history_offset;
97 state->length = history_length;
98 state->size = history_size;
99 state->flags = 0;
101 state->flags |= HS_STIFLED;
103 return (state);
106 /* Set the state o
[all...]
/freebsd-11-stable/contrib/gcclibs/libssp/
H A Dssp.c142 volatile int state; local
143 for (state = 0; ; state++)
144 switch (state)
/freebsd-11-stable/contrib/apr/random/unix/
H A Dsha2.h40 apr_uint32_t state[8]; member in struct:_SHA256_CTX
/freebsd-11-stable/sys/crypto/sha2/
H A Dsha256c.c117 /* Adjusted round function for rotating state */
130 * SHA256 block compression function. The 256-bit state is transformed via
131 * the 512-bit input block to produce a new state.
134 SHA256_Transform(uint32_t * state, const unsigned char block[64]) argument
144 memcpy(S, state, 32);
185 /* 4. Mix local working variables into global state */
187 state[i] += S[i];
213 SHA256_Transform(ctx->state, ctx->buf);
223 SHA256_Transform(ctx->state, ctx->buf);
235 ctx->state[
[all...]
/freebsd-11-stable/sys/dev/cxgbe/tom/
H A Dt4_tom_l2t.h46 if (__predict_true(e->state == L2T_STATE_VALID)) {
/freebsd-11-stable/sys/contrib/ngatm/netnatm/saal/
H A Dsscfupriv.h51 enum sscfu_state state; /* SSCF state */ member in struct:sscfu
/freebsd-11-stable/contrib/wpa/wpa_supplicant/examples/
H A Dp2p-action-udhcp.sh56 iptables -A FORWARD -i $UPLINK -o $GIFNAME -m state --state RELATED,ESTABLISHED -j ACCEPT
67 iptables -D FORWARD -i $UPLINK -o $GIFNAME -m state --state RELATED,ESTABLISHED -j ACCEPT
/freebsd-11-stable/sys/nlm/
H A Dsm_inter.h45 int state; member in struct:stat_chge
50 int state; member in struct:sm_stat
62 int state; member in struct:sm_stat_res
68 int state; member in struct:sm_status
H A Dsm_inter_xdr.c62 if (!xdr_int(xdrs, &objp->state))
71 if (!xdr_int(xdrs, &objp->state))
91 if (!xdr_int(xdrs, &objp->state))
102 if (!xdr_int(xdrs, &objp->state))
/freebsd-11-stable/tools/tools/net80211/scripts/
H A Dsetup.wdsrelay18 #mwldebug state+node+reset+xmit+recv+beacon+hal+hal2
21 wlandebug -i $WLAN_AP state+assoc+wds+11n
25 wlandebug -i $WLAN_STA state+assoc+auth+wds+scan+11n
/freebsd-11-stable/sys/dev/e1000/
H A De1000_82543.h46 /* If TBI_COMPAT_ENABLED, then this is the current state (on/off) */
54 bool state);
H A De1000_82571.h64 void e1000_set_laa_state_82571(struct e1000_hw *hw, bool state);
/freebsd-11-stable/sys/geom/vinum/
H A Dgeom_vinum_share.c206 gv_drivestate(int state) argument
208 switch (state) {
227 /* Translate from a string to a subdisk state. */
243 /* Translate from a subdisk state to a string. */
245 gv_sdstate(int state) argument
247 switch (state) {
263 /* Translate from a string to a plex state. */
279 /* Translate from a plex state to a string. */
281 gv_plexstate(int state) argument
283 switch (state) {
323 gv_volstate(int state) argument
[all...]
/freebsd-11-stable/usr.bin/tr/
H A Dextern.h41 CCLASS, CCLASS_UPPER, CCLASS_LOWER, SET } state; member in struct:__anon13836
/freebsd-11-stable/usr.sbin/pmcstudy/
H A Deval_expr.h51 uint8_t state; /* Current state if value type */ member in struct:expression
/freebsd-11-stable/sys/sys/
H A Dmd5.h37 u_int32_t state[4]; /* state (ABCD) */ member in struct:MD5Context
/freebsd-11-stable/sys/cddl/compat/opensolaris/sys/
H A Dproc.h67 size_t len, proc_t *pp, int state, pri_t pri)
77 ASSERT(state == TS_RUN);
91 #define thread_create(stk, stksize, proc, arg, len, pp, state, pri) \
92 do_thread_create(stk, stksize, proc, arg, len, pp, state, pri)
66 do_thread_create(caddr_t stk, size_t stksize, void (*proc)(void *), void *arg, size_t len, proc_t *pp, int state, pri_t pri) argument
H A Dsunddi.h56 void *ddi_get_soft_state(void *state, int item);
57 int ddi_soft_state_zalloc(void *state, int item);
58 void ddi_soft_state_free(void *state, int item);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
H A DHexagonDYLDRendezvous.cpp89 if (!(cursor = ReadWord(cursor, &info.state, word_size)))
95 // The rendezvous was successfully read. Update our internal state.
120 if (m_previous.state == eConsistent && m_current.state == eConsistent)
124 // state and take a snapshot of the currently loaded images.
125 if (m_current.state == eAdd || m_current.state == eDelete) {
127 m_previous.state = eConsistent;
130 assert(m_previous.state == eConsistent);
136 assert(m_current.state
337 int state = GetState(); local
[all...]
/freebsd-11-stable/contrib/serf/buckets/
H A Dheaders_buckets.c58 } state; member in struct:__anon66
59 apr_size_t amt_read; /* how much of the current state we've read */
72 ctx->state = READ_START;
268 if (ctx->state == READ_START) {
270 /* No headers. Move straight to the TERM state. */
271 ctx->state = READ_TERM;
274 ctx->state = READ_HEADER;
280 switch (ctx->state) {
310 /* the current data chunk has been read/consumed. move our internal state. */
313 /* move to the next state, resettin
[all...]
/freebsd-11-stable/contrib/wpa/src/eap_server/
H A Deap_server_psk.c22 enum { PSK_1, PSK_3, SUCCESS, FAILURE } state; member in struct:eap_psk_data
40 data->state = PSK_1;
64 data->state = FAILURE;
76 data->state = FAILURE;
104 data->state = FAILURE;
151 data->state = FAILURE;
160 switch (data->state) {
166 wpa_printf(MSG_DEBUG, "EAP-PSK: Unknown state %d in buildReq",
167 data->state);
191 if (data->state
[all...]
/freebsd-11-stable/sys/arm/nvidia/tegra124/
H A Dtegra124_clk_super.c158 int shift, state; local
165 state = super_mux_get_state(reg);
167 if ((state != SUPER_MUX_STATE_RUN) &&
168 (state != SUPER_MUX_STATE_IDLE)) {
169 panic("Unexpected super mux state: %u", state);
172 shift = state * SUPER_MUX_MUX_WIDTH;
195 int shift, state; local
202 state = super_mux_get_state(reg);
204 if ((state !
[all...]
/freebsd-11-stable/sys/dev/hptmv/
H A Daccess601.h38 void HPTLIBAPI set_fail_led(MV_SATA_ADAPTER *pAdapter, UCHAR channel, UCHAR state);
41 #define set_fail_led(pAdapter, channel, state)
55 #define set_fail_led(pAdapter, channel, state)
/freebsd-11-stable/sys/dev/isci/scil/
H A Dsati_test_unit_ready.c90 * - the device should be in a state to receive commands
98 if (sequence->device->state == SATI_DEVICE_STATE_STOPPED)
110 else if (sequence->device->state
123 else if (sequence->device->state
/freebsd-11-stable/sys/arm/ti/
H A Dti_pinmux.c116 * ti_pinmux_padconf_set_internal - sets the muxmode and state for a pad/pin
119 * @state: the state to put the pad/pin in, i.e. PADCONF_PIN_???
132 const char *muxmode, unsigned int state)
138 reg_val = (uint16_t)(state & ti_pinmux_dev.padconf_sate_mask);
167 * ti_pinmux_padconf_set - sets the muxmode and state for a pad/pin
170 * @state: the state to put the pad/pin in, i.e. PADCONF_PIN_???
181 ti_pinmux_padconf_set(const char *padname, const char *muxmode, unsigned int state) argument
193 return (ti_pinmux_padconf_set_internal(ti_pinmux_sc, padconf, muxmode, state));
130 ti_pinmux_padconf_set_internal(struct ti_pinmux_softc *sc, const struct ti_pinmux_padconf *padconf, const char *muxmode, unsigned int state) argument
211 ti_pinmux_padconf_get(const char *padname, const char **muxmode, unsigned int *state) argument
254 ti_pinmux_padconf_set_gpiomode(uint32_t gpio, unsigned int state) argument
299 ti_pinmux_padconf_get_gpiomode(uint32_t gpio, unsigned int *state) argument
[all...]

Completed in 182 milliseconds

<<11121314151617181920>>