Searched refs:state (Results 151 - 175 of 2035) sorted by relevance

1234567891011>>

/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dsha2.c291 memcpy(context->state, sha256_initial_hash_value,
323 SHA256_Transform(u_int32_t state[8], const u_int8_t data[SHA256_BLOCK_LENGTH]) argument
330 a = state[0];
331 b = state[1];
332 c = state[2];
333 d = state[3];
334 e = state[4];
335 f = state[5];
336 g = state[6];
337 h = state[
381 SHA256_Transform(u_int32_t state[8], const u_int8_t data[SHA256_BLOCK_LENGTH]) argument
604 SHA512_Transform(u_int64_t state[8], const u_int8_t data[SHA512_BLOCK_LENGTH]) argument
662 SHA512_Transform(u_int64_t state[8], const u_int8_t data[SHA512_BLOCK_LENGTH]) argument
865 SHA384_Transform(u_int64_t state[8], const u_int8_t data[SHA512_BLOCK_LENGTH]) argument
[all...]
/freebsd-11-stable/usr.sbin/rtadvd/
H A Dcontrol_client.c60 cm_handler_client(int fd, int state, char *buf_orig) argument
87 while (state != CM_STATE_EOM) {
88 syslog(LOG_DEBUG, "<%s> state = %d", __func__, state);
90 switch (state) {
92 state = CM_STATE_EOM;
102 state = CM_STATE_ACK_WAIT;
129 state = CM_STATE_EOM;
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dinffast.c44 state->mode == LEN
48 state->bits < 8
50 On return, state->mode is one of:
73 struct inflate_state FAR *state; local
99 /* copy state to local variables */
100 state = (struct inflate_state FAR *)strm->state;
107 dmax = state->dmax;
109 wsize = state->wsize;
110 whave = state
[all...]
/freebsd-11-stable/crypto/openssl/crypto/ocsp/
H A Docsp_ht.c78 int state; /* Current I/O state */ member in struct:ocsp_req_ctx_st
123 rctx->state = OHS_ERROR;
172 rctx->state = OHS_ASN1_WRITE_INIT;
189 rctx->state = OHS_ERROR;
204 rctx->state = OHS_HTTP_HEADER;
229 rctx->state = OHS_HTTP_HEADER;
331 if (!(rctx->state & OHS_NOREAD)) {
346 switch (rctx->state) {
350 rctx->state
[all...]
/freebsd-11-stable/sys/arm/ti/omap4/
H A Domap4_gpio.c80 unsigned int state = 0; local
86 state = PADCONF_PIN_OUTPUT;
89 state = PADCONF_PIN_INPUT_PULLUP;
91 state = PADCONF_PIN_INPUT_PULLDOWN;
93 state = PADCONF_PIN_INPUT;
95 return ti_pinmux_padconf_set_gpiomode((sc->sc_bank-1)*32 + gpio, state);
101 unsigned int state; local
106 /* Get the current pin state */
107 if (ti_pinmux_padconf_get_gpiomode((sc->sc_bank-1)*32 + gpio, &state) != 0) {
111 switch (state) {
[all...]
/freebsd-11-stable/contrib/ncurses/ncurses/widechar/
H A Dlib_get_wch.c56 mbstate_t state; local
93 reset_mbytes(state);
94 status = count_mbytes(buffer, count, state);
96 reset_mbytes(state);
97 if (check_mbytes(wch, buffer, count, state) != status) {
/freebsd-11-stable/contrib/ofed/opensm/include/complib/
H A Dcl_types.h416 * objects set their final state to CL_DESTROYED before freeing the
425 * The cl_is_state_valid function returns whether a state has a valid value.
429 static inline boolean_t cl_is_state_valid(IN const cl_state_t state) argument
431 return ((state == CL_UNINITIALIZED) || (state == CL_INITIALIZED) ||
432 (state == CL_DESTROYING) || (state == CL_DESTROYED));
437 * state
441 * TRUE if the specified state has a valid value.
447 * uninitialized object is passed, the memory for the state ma
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DObjCSelfInitChecker.cpp106 static SelfFlagEnum getSelfFlags(SVal val, ProgramStateRef state) { argument
108 if (const unsigned *attachedFlags = state->get<SelfFlag>(sym))
117 static void addSelfFlag(ProgramStateRef state, SVal val, argument
121 state = state->set<SelfFlag>(sym, getSelfFlags(val, state) | flag);
122 C.addTransition(state);
178 ProgramStateRef state = C.getState(); local
183 state = state
[all...]
/freebsd-11-stable/sys/dev/pccard/
H A Dpccard_cis.c81 struct cis_state state; local
83 bzero(&state, sizeof state);
84 state.card = &sc->card;
85 state.card->error = 0;
86 state.card->cis1_major = -1;
87 state.card->cis1_minor = -1;
88 state.card->cis1_info[0] = NULL;
89 state.card->cis1_info[1] = NULL;
90 state
649 struct cis_state *state = arg; local
[all...]
/freebsd-11-stable/tools/regression/poll/
H A Dpipeselect.c36 report(int num, const char *state, int expected, int got) argument
42 printf(" %s state %s: expected %s; got %s\n",
45 state, decode_events(expected), decode_events(got));
51 static volatile sig_atomic_t state; variable
56 state++;
80 * This state (a reader for which there has never been a
84 * distinguish this state from the one of a reader for which
96 while (state != 1)
104 state = 4;
114 while (state !
[all...]
/freebsd-11-stable/sys/dev/isci/scil/
H A Dsati_start_stop_unit.c105 if ( sequence->state != SATI_SEQUENCE_STATE_INCOMPLETE )
112 sequence->state = SATI_SEQUENCE_STATE_INCOMPLETE;
169 //Power Condition Field is set to 0x01(Device to transition to Active state)
172 if( sequence->state != SATI_SEQUENCE_STATE_INCOMPLETE )
175 sequence->state = SATI_SEQUENCE_STATE_INCOMPLETE;
185 //Power Condition Field is set to 0x02(Device to transition to Idle state)
189 sequence->state != SATI_SEQUENCE_STATE_INCOMPLETE )
193 sequence->state = SATI_SEQUENCE_STATE_INCOMPLETE;
209 //Power Condition Field is set to 0x03(Device to transition to Standby state)
212 sequence->state !
[all...]
/freebsd-11-stable/sys/contrib/vchiq/interface/vchi/connections/
H A Dconnection.h48 // opaque handle to the connection state information
167 typedef int32_t (*VCHI_CONNECTION_SERVER_PRESENT)( VCHI_CONNECTION_STATE_T *state, int32_t service_id, int32_t peer_flags );
170 typedef int (*VCHI_CONNECTION_RX_SLOTS_AVAILABLE)( const VCHI_CONNECTION_STATE_T *state );
173 typedef uint32_t (*VCHI_CONNECTION_RX_SLOT_SIZE)( const VCHI_CONNECTION_STATE_T *state );
176 typedef void (*VCHI_CONNECTION_RX_BULK_BUFFER_ADDED)(VCHI_CONNECTION_STATE_T *state,
185 typedef void (*VCHI_CONNECTION_FLOW_CONTROL)(VCHI_CONNECTION_STATE_T *state, int32_t service_id, int32_t xoff);
188 typedef void (*VCHI_CONNECTION_SERVER_AVAILABLE_REPLY)(VCHI_CONNECTION_STATE_T *state, int32_t service_id, uint32_t flags);
191 typedef void (*VCHI_CONNECTION_BULK_AUX_RECEIVED)(VCHI_CONNECTION_STATE_T *state);
194 typedef void (*VCHI_CONNECTION_BULK_AUX_TRANSMITTED)(VCHI_CONNECTION_STATE_T *state, void *handle);
197 typedef void (*VCHI_CONNECTION_INFO)(VCHI_CONNECTION_STATE_T *state, uint32_
315 VCHI_CONNECTION_STATE_T *state; member in struct:vchi_connection_t
[all...]
/freebsd-11-stable/crypto/openssh/
H A Dblocks.c84 uint64 state[8]; local
96 a = load_bigendian(statebytes + 0); state[0] = a;
97 b = load_bigendian(statebytes + 8); state[1] = b;
98 c = load_bigendian(statebytes + 16); state[2] = c;
99 d = load_bigendian(statebytes + 24); state[3] = d;
100 e = load_bigendian(statebytes + 32); state[4] = e;
101 f = load_bigendian(statebytes + 40); state[5] = f;
102 g = load_bigendian(statebytes + 48); state[6] = g;
103 h = load_bigendian(statebytes + 56); state[7] = h;
216 a += state[
[all...]
/freebsd-11-stable/sys/contrib/ngatm/netnatm/saal/
H A Dsaal_sscfu.c89 sscf->state = SSCFU_RELEASED;
103 sscf->state = SSCFU_RELEASED;
121 return (sscf->state);
163 sprintf(str, "BAD SSCFU state %u", s);
175 set_state(struct sscfu *sscf, enum sscfu_state state) argument
178 "change state from %s to %s",
179 sscf_states[sscf->state], sscf_states[state]));
180 sscf->state = state;
[all...]
/freebsd-11-stable/tools/tools/net80211/scripts/
H A Dsetup.simple210 athdebug state
16 wlandebug -i $WLAN state+scan+assoc
23 wlandebug -i $WLAN state+scan+assoc
/freebsd-11-stable/contrib/ofed/opensm/complib/
H A Dcl_thread.c66 p_thread->osd.state = CL_UNINITIALIZED;
90 p_thread->osd.state = CL_INITIALIZED;
98 CL_ASSERT(cl_is_state_valid(p_thread->osd.state));
100 if (p_thread->osd.state == CL_INITIALIZED)
103 p_thread->osd.state = CL_UNINITIALIZED;
136 CL_ASSERT(p_thread->osd.state == CL_INITIALIZED);
H A Dcl_event.c49 p_event->state = CL_UNINITIALIZED;
63 p_event->state = CL_INITIALIZED;
70 CL_ASSERT(cl_is_state_valid(p_event->state));
73 if (p_event->state == CL_INITIALIZED) {
79 p_event->state = CL_UNINITIALIZED;
85 CL_ASSERT(p_event->state == CL_INITIALIZED);
103 CL_ASSERT(p_event->state == CL_INITIALIZED);
122 CL_ASSERT(p_event->state == CL_INITIALIZED);
135 /* If just testing the state, return CL_TIMEOUT. */
/freebsd-11-stable/contrib/unbound/util/
H A Drandom.c101 ub_random_max(struct ub_randstate* state, long int x) argument
103 (void)state;
125 long int ub_random(struct ub_randstate* ATTR_UNUSED(state))
191 ub_random_max(struct ub_randstate* state, long int x) argument
196 long int v = ub_random(state);
198 v = ub_random(state);
/freebsd-11-stable/contrib/ntp/lib/isc/include/isc/
H A Dlfsr.h32 * modify any state in the LFSR in any way it sees fit OTHER THAN "bits".
43 * needs to be taken to not change state once the lfsr is in operation.
46 isc_uint32_t state; /*%< previous state */ member in struct:isc_lfsr
58 isc_lfsr_init(isc_lfsr_t *lfsr, isc_uint32_t state, unsigned int bits,
105 * Given two LFSRs, use the current state from each to skip entries in the
117 *\li Since the current state from each of the LFSRs is used to skip
118 * state in the other, it is important that no state be leaked
/freebsd-11-stable/contrib/blacklist/bin/
H A DMakefile8 SRCS.blacklistd = blacklistd.c conf.c run.c state.c support.c internal.c
9 SRCS.blacklistctl = blacklistctl.c conf.c state.c support.c internal.c
/freebsd-11-stable/contrib/binutils/opcodes/
H A Darc-dis.h79 #define __TRANSLATION_REQUIRED(state) ((state).acnt != 0)
/freebsd-11-stable/sys/contrib/vchiq/interface/vchiq_arm/
H A Dvchiq_core.h157 #define VCHIQ_STATS_INC(state, stat) (state->stats. stat++)
162 #define VCHIQ_STATS_INC(state, stat) ((void)0)
304 VCHIQ_STATE_T *state; member in struct:vchiq_service_struct
383 /* Debugging state */
534 vchiq_init_state(VCHIQ_STATE_T *state, VCHIQ_SLOT_ZERO_T *slot_zero,
538 vchiq_connect_internal(VCHIQ_STATE_T *state, VCHIQ_INSTANCE_T instance);
541 vchiq_add_service_internal(VCHIQ_STATE_T *state,
558 vchiq_shutdown_internal(VCHIQ_STATE_T *state, VCHIQ_INSTANCE_T instance);
561 vchiq_pause_internal(VCHIQ_STATE_T *state);
592 VCHIQ_STATE_T *state = vchiq_states[(handle / VCHIQ_MAX_SERVICES) & local
[all...]
/freebsd-11-stable/crypto/heimdal/appl/telnet/
H A DMakefile.am11 EXTRA_DIST = NTMakefile README.ORIG telnet.state
/freebsd-11-stable/sys/net/
H A Dmppcd.c100 struct MPPC_decomp_state *state = (struct MPPC_decomp_state*)history; local
103 state->histptr = MPPE_HIST_LEN;
108 struct MPPC_decomp_state *state = (struct MPPC_decomp_state*)history; local
115 memcpy(state->hist, state->hist + MPPE_HIST_LEN, MPPE_HIST_LEN);
116 state->histptr = MPPE_HIST_LEN;
119 hist = state->hist + state->histptr;
126 if (state->histptr < 2*MPPE_HIST_LEN) {
128 (state
[all...]
/freebsd-11-stable/tools/tools/net80211/scripts/mesh/
H A Dcommon13 wlandebug -i $WLAN mesh+hwmp+state+scan+assoc

Completed in 170 milliseconds

1234567891011>>