Searched refs:state (Results 176 - 200 of 2035) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/cddl/dev/dtrace/aarch64/
H A Ddtrace_isa.c71 struct unwind_state state; local
86 state.fp = (uint64_t)__builtin_frame_address(0);
87 state.sp = sp;
88 state.pc = (uint64_t)dtrace_getpcstack;
91 if (!INKERNEL(state.pc) || !INKERNEL(state.fp))
94 fp = state.fp;
95 state.sp = fp + 0x10;
97 state.fp = *(register_t *)(fp);
99 state
273 struct unwind_state state; local
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_thread.cpp102 static u32 xorshift(u32 state) { argument
103 state ^= state << 13;
104 state ^= state >> 17;
105 state ^= state << 5;
106 return state;
/freebsd-11-stable/contrib/serf/buckets/
H A Ddechunk_buckets.c34 } state; member in struct:__anon61
53 ctx->state = STATE_SIZE;
77 switch (ctx->state) {
87 if (ctx->linebuf.state == SERF_LINEBUF_READY) {
102 ctx->state = STATE_DONE;
107 ctx->state = STATE_CHUNK;
139 ctx->state = STATE_TERM;
167 ctx->state = STATE_SIZE;
/freebsd-11-stable/contrib/byacc/
H A Dverbose.c8 static void print_conflicts(int state);
9 static void print_core(int state);
11 static void print_nulls(int state);
13 static void print_state(int state);
110 print_state(int state) argument
112 if (state)
114 if (SRconflicts[state] || RRconflicts[state])
115 print_conflicts(state);
116 fprintf(verbose_file, "state
123 print_conflicts(int state) argument
172 print_core(int state) argument
208 print_nulls(int state) argument
[all...]
/freebsd-11-stable/crypto/openssl/crypto/comp/
H A Dc_zlib.c144 struct zlib_state *state = local
147 if (state == NULL)
150 state->istream.zalloc = zlib_zalloc;
151 state->istream.zfree = zlib_zfree;
152 state->istream.opaque = Z_NULL;
153 state->istream.next_in = Z_NULL;
154 state->istream.next_out = Z_NULL;
155 state->istream.avail_in = 0;
156 state->istream.avail_out = 0;
157 err = inflateInit_(&state
184 struct zlib_state *state = local
198 struct zlib_state *state = local
227 struct zlib_state *state = local
[all...]
/freebsd-11-stable/contrib/wpa/src/utils/
H A Djson.c198 if (token->state != JSON_COMPLETED) {
200 "JSON: Unexpected token state %d (name=%s type=%d)",
201 token->state, token->name ? token->name : "N/A",
242 } else if (curr_token->state == JSON_WAITING_VALUE) {
246 curr_token->parent->state == JSON_STARTED &&
247 curr_token->state == JSON_EMPTY) {
251 "JSON: Invalid state for start array/object");
261 token->state = JSON_STARTED;
267 curr_token->state = JSON_EMPTY;
272 curr_token->parent->state !
[all...]
/freebsd-11-stable/bin/sh/
H A Dmain.c91 * exception occurs. When an exception occurs the variable "state"
99 volatile int state; local
104 state = 0;
119 if (state == 0 || iflag == 0 || ! rootshell ||
127 if (state == 1)
129 else if (state == 2)
131 else if (state == 3)
153 state = 1;
156 state = 2;
163 state
[all...]
/freebsd-11-stable/contrib/tcp_wrappers/
H A Dworkarounds.c275 static char *state; local
279 state = buf;
280 while ((result = strsep(&state, sep)) && result[0] == 0)
300 static char *state; local
304 state = buf;
309 if (*(state += strspn(state, sep)) == 0)
315 result = state;
316 if (*(state += strcspn(state, se
[all...]
/freebsd-11-stable/contrib/wpa/src/eap_peer/
H A Deap_vendor_test.c25 enum { INIT, CONFIRM, SUCCESS } state; member in struct:eap_vendor_test_data
40 data->state = INIT;
82 if (data->state == INIT && *pos != 1) {
84 "%d in INIT state", *pos);
89 if (data->state == CONFIRM && *pos != 3) {
91 "%d in CONFIRM state", *pos);
96 if (data->state == SUCCESS) {
98 "in SUCCESS state");
103 if (data->state == CONFIRM) {
125 if (data->state
[all...]
/freebsd-11-stable/contrib/wpa/src/eap_server/
H A Deap_server_md5.c21 enum { CONTINUE, SUCCESS, FAILURE } state; member in struct:eap_md5_data
32 data->state = CONTINUE;
52 data->state = FAILURE;
61 data->state = FAILURE;
70 data->state = CONTINUE;
110 data->state = FAILURE;
125 data->state = FAILURE;
131 data->state = SUCCESS;
134 data->state = FAILURE;
142 return data->state !
[all...]
/freebsd-11-stable/usr.sbin/keyserv/
H A Dcrypt_server.c75 unsigned char state[256]; member in struct:arcfour_key
90 unsigned char* state; local
93 state = &key->state[0];
95 state[counter] = counter;
102 index2 = (key_data_ptr[index1] + state[counter] +
104 swap_byte(&state[counter], &state[index2]);
114 unsigned char* state; local
121 state
[all...]
/freebsd-11-stable/contrib/binutils/gas/
H A Dapp.c126 in state 5 of do_scrub_chars must be changed. */
195 /* Saved state of the scrubber. */
196 static int state; variable
207 /* Data structure for saving the state of app across #include's. Note that
209 state at the time .include is interpreted is completely unrelated.
214 int state; member in struct:app_save
237 saved->state = state;
261 state = 0;
273 state
[all...]
/freebsd-11-stable/sys/contrib/vchiq/interface/vchiq_arm/
H A Dvchiq_kern_lib.c51 VCHIQ_STATE_T *state; member in struct:vchiq_instance_struct
72 VCHIQ_STATE_T *state; local
81 state = vchiq_get_state();
82 if (state)
103 instance->state = state;
128 VCHIQ_STATE_T *state = instance->state; local
133 if (lmutex_lock_interruptible(&state->mutex) != 0)
137 status = vchiq_shutdown_internal(state, instanc
191 VCHIQ_STATE_T *state = instance->state; local
229 VCHIQ_STATE_T *state = instance->state; local
274 VCHIQ_STATE_T *state = instance->state; local
[all...]
/freebsd-11-stable/contrib/flex/
H A Ddfa.c43 /* check_for_backing_up - check a DFA state for backing up
46 * void check_for_backing_up( int ds, int state[numecs] );
48 * ds is the number of the state to check and state[] is its out-transitions,
52 void check_for_backing_up (ds, state)
54 int state[];
56 if ((reject && !dfaacc[ds].dfaacc_set) || (!reject && !dfaacc[ds].dfaacc_state)) { /* state is non-accepting */
63 /* identify the state */
69 dump_transitions (backing_up_file, state);
77 /* check_trailing_context - check to see if NFA state se
402 int duplist[CSIZE + 1], state[CSIZE + 1]; local
[all...]
/freebsd-11-stable/sys/cddl/dev/dtrace/
H A Ddtrace_unload.c28 dtrace_state_t *state; local
58 if ((state = dtrace_anon_grab()) != NULL) {
60 * If there were ECBs on this state, the provider should
64 ASSERT(state->dts_necbs == 0);
65 dtrace_state_destroy(state);
/freebsd-11-stable/contrib/unvis/
H A Dunvis.c111 int state = 0; local
117 switch(ret = unvis(&outc, (char)c, &state, eflags)) {
126 state = 0;
136 if (unvis(&outc, (char)0, &state, eflags | UNVIS_END) == UNVIS_VALID)
/freebsd-11-stable/contrib/wpa/src/crypto/
H A Dsha256_i.h16 u32 state[8], curlen; member in struct:sha256_state
H A Dsha512_i.h15 u64 length, state[8]; member in struct:sha512_state
/freebsd-11-stable/sys/opencrypto/
H A Drmd160.h31 u_int32_t state[5]; /* state */ member in struct:RMD160Context
/freebsd-11-stable/sys/dev/isci/scil/
H A Dsati_abort_task_set.c108 sequence->state = SATI_SEQUENCE_STATE_AWAIT_RESPONSE;
123 sequence->state = SATI_SEQUENCE_STATE_TRANSLATE_DATA;
146 if(sequence->state == SATI_SEQUENCE_STATE_READ_ERROR)
169 sequence->state = SATI_SEQUENCE_STATE_FINAL;
/freebsd-11-stable/contrib/ofed/opensm/include/complib/
H A Dcl_event_osd.h65 cl_state_t state; member in struct:_cl_event_t
H A Dcl_thread_osd.h59 cl_state_t state; member in struct:_cl_thread_osd_t
/freebsd-11-stable/sys/sys/
H A Dmd4.h31 u_int32_t state[4]; /* state (ABCD) */ member in struct:MD4Context
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/
H A Diwcm.h51 enum iw_cm_state state; member in struct:iwcm_id_private
/freebsd-11-stable/usr.sbin/ppp/
H A Dtimer.h37 int state; member in struct:pppTimer

Completed in 320 milliseconds

1234567891011>>