Searched refs:state (Results 51 - 75 of 11292) sorted by relevance

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/gdb/sim/arm/
H A Darmsupp.c36 ARMul_GetReg (ARMul_State * state, unsigned mode, unsigned reg) argument
39 if (mode != state->Mode)
40 return (state->RegBank[ModeToBank ((ARMword) mode)][reg]);
42 return (state->Reg[reg]);
48 ARMul_SetReg (ARMul_State * state, unsigned mode, unsigned reg, ARMword value) argument
51 if (mode != state->Mode)
52 state->RegBank[ModeToBank ((ARMword) mode)][reg] = value;
54 state->Reg[reg] = value;
60 ARMul_GetPC (ARMul_State * state) argument
62 if (state
71 ARMul_GetNextPC(ARMul_State * state) argument
82 ARMul_SetPC(ARMul_State * state, ARMword value) argument
94 ARMul_GetR15(ARMul_State * state) argument
105 ARMul_SetR15(ARMul_State * state, ARMword value) argument
120 ARMul_GetCPSR(ARMul_State * state) argument
128 ARMul_SetCPSR(ARMul_State * state, ARMword value) argument
138 ARMul_FixCPSR(ARMul_State * state, ARMword instr, ARMword rhs) argument
161 ARMul_GetSPSR(ARMul_State * state, ARMword mode) argument
174 ARMul_SetSPSR(ARMul_State * state, ARMword mode, ARMword value) argument
185 ARMul_FixSPSR(ARMul_State * state, ARMword instr, ARMword rhs) argument
204 ARMul_CPSRAltered(ARMul_State * state) argument
264 ARMul_R15Altered(ARMul_State * state) argument
290 ARMul_SwitchMode(ARMul_State * state, ARMword oldmode, ARMword newmode) argument
399 ARMul_NegZero(ARMul_State * state, ARMword result) argument
439 ARMul_AddCarry(ARMul_State * state, ARMword a, ARMword b, ARMword result) argument
448 ARMul_AddOverflow(ARMul_State * state, ARMword a, ARMword b, ARMword result) argument
456 ARMul_SubCarry(ARMul_State * state, ARMword a, ARMword b, ARMword result) argument
465 ARMul_SubOverflow(ARMul_State * state, ARMword a, ARMword b, ARMword result) argument
476 ARMul_LDC(ARMul_State * state, ARMword instr, ARMword address) argument
536 ARMul_STC(ARMul_State * state, ARMword instr, ARMword address) argument
594 ARMul_MCR(ARMul_State * state, ARMword instr, ARMword source) argument
631 ARMul_MRC(ARMul_State * state, ARMword instr) argument
673 ARMul_CDP(ARMul_State * state, ARMword instr) argument
704 ARMul_UndefInstr(ARMul_State * state, ARMword instr ATTRIBUTE_UNUSED) argument
712 IntPending(ARMul_State * state) argument
758 ARMul_ScheduleEvent(ARMul_State * state, unsigned long delay, unsigned (*what) (ARMul_State *)) argument
777 ARMul_EnvokeEvent(ARMul_State * state) argument
797 EnvokeList(ARMul_State * state, unsigned long from, unsigned long to) argument
817 ARMul_Time(ARMul_State * state) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/zlib/
H A Dinflate.c26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
30 * - Add comments on state->bits assertion in inffast.c
95 local void fixedtables OF((struct inflate_state FAR *state));
106 struct inflate_state FAR *state; local
108 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
109 state = (struct inflate_state FAR *)strm->state;
110 strm->total_in = strm->total_out = state->total = 0;
113 state
135 struct inflate_state FAR *state; local
175 struct inflate_state FAR *state; local
214 struct inflate_state FAR *state; local
307 struct inflate_state state; local
362 struct inflate_state FAR *state; local
593 struct inflate_state FAR *state; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/zlib/
H A Dinflate.c26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
30 * - Add comments on state->bits assertion in inffast.c
95 local void fixedtables OF((struct inflate_state FAR *state));
106 struct inflate_state FAR *state; local
108 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
109 state = (struct inflate_state FAR *)strm->state;
110 strm->total_in = strm->total_out = state->total = 0;
113 state
135 struct inflate_state FAR *state; local
175 struct inflate_state FAR *state; local
214 struct inflate_state FAR *state; local
307 struct inflate_state state; local
362 struct inflate_state FAR *state; local
593 struct inflate_state FAR *state; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/zlib/
H A Dinflate.c26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
30 * - Add comments on state->bits assertion in inffast.c
95 local void fixedtables OF((struct inflate_state FAR *state));
106 struct inflate_state FAR *state; local
108 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
109 state = (struct inflate_state FAR *)strm->state;
110 strm->total_in = strm->total_out = state->total = 0;
113 state
135 struct inflate_state FAR *state; local
175 struct inflate_state FAR *state; local
214 struct inflate_state FAR *state; local
307 struct inflate_state state; local
362 struct inflate_state FAR *state; local
593 struct inflate_state FAR *state; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/lib/zlib_inflate/
H A Dinflate.c25 struct inflate_state *state; local
27 if (strm == NULL || strm->state == NULL) return Z_STREAM_ERROR;
28 state = (struct inflate_state *)strm->state;
29 strm->total_in = strm->total_out = state->total = 0;
32 state->mode = HEAD;
33 state->last = 0;
34 state->havedict = 0;
35 state->dmax = 32768U;
36 state
51 struct inflate_state *state; local
79 zlib_fixedtables(struct inflate_state *state) argument
104 struct inflate_state *state; local
149 struct inflate_state *state; local
320 struct inflate_state *state; local
763 struct inflate_state *state = (struct inflate_state *)z->state; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/lib/zlib_inflate/
H A Dinflate.c25 struct inflate_state *state; local
27 if (strm == NULL || strm->state == NULL) return Z_STREAM_ERROR;
28 state = (struct inflate_state *)strm->state;
29 strm->total_in = strm->total_out = state->total = 0;
32 state->mode = HEAD;
33 state->last = 0;
34 state->havedict = 0;
35 state->dmax = 32768U;
36 state
51 struct inflate_state *state; local
79 zlib_fixedtables(struct inflate_state *state) argument
104 struct inflate_state *state; local
149 struct inflate_state *state; local
320 struct inflate_state *state; local
763 struct inflate_state *state = (struct inflate_state *)z->state; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/source4/winbind/
H A Dwb_cmd_list_trustdom.c52 struct cmd_list_trustdom_state *state; local
57 state = talloc(result, struct cmd_list_trustdom_state);
58 if (state == NULL) goto failed;
59 state->ctx = result;
60 result->private_data = state;
62 ctx = wb_sid2domain_send(state, service, service->primary_sid);
65 ctx->async.private_data = state;
75 struct cmd_list_trustdom_state *state = local
81 state->ctx->status = wb_sid2domain_recv(ctx, &domain);
82 if (!composite_is_ok(state
94 struct cmd_list_trustdom_state *state = local
124 struct cmd_list_trustdom_state *state = local
188 struct cmd_list_trustdom_state *state = local
[all...]
H A Dwb_connect_lsa.c53 struct init_lsa_state *state; local
58 state = talloc(result, struct init_lsa_state);
59 if (state == NULL) goto failed;
60 state->ctx = result;
61 result->private_data = state;
70 composite_continue(state->ctx, ctx, init_lsa_recv_pipe, state);
81 struct init_lsa_state *state = local
85 state->ctx->status = dcerpc_secondary_auth_connection_recv(ctx, state,
107 struct init_lsa_state *state = local
126 struct init_lsa_state *state = local
[all...]
H A Dwb_dom_info_trusted.c54 struct trusted_dom_info_state *state; local
59 state = talloc(result, struct trusted_dom_info_state);
60 if (state == NULL) goto failed;
61 state->ctx = result;
62 result->private_data = state;
64 state->info = talloc_zero(state, struct wb_dom_info);
65 if (state->info == NULL) goto failed;
67 state->service = service;
69 state
89 struct trusted_dom_info_state *state = local
122 struct trusted_dom_info_state *state = local
178 struct trusted_dom_info_state *state = local
207 struct trusted_dom_info_state *state = local
224 struct trusted_dom_info_state *state = local
[all...]
H A Dwb_cmd_list_groups.c47 struct cmd_list_groups_state *state; local
54 state = talloc(result, struct cmd_list_groups_state);
55 if (composite_nomem(state, result)) return result;
57 state->ctx = result;
58 result->private_data = state;
59 state->service = service;
60 state->resume_index = 0;
61 state->result = talloc_strdup(state, "");
62 if (composite_nomem(state
85 struct cmd_list_groups_state *state = talloc_get_type( local
124 struct cmd_list_groups_state *state = talloc_get_type( local
189 struct cmd_list_groups_state *state = talloc_get_type( local
[all...]
H A Dwb_cmd_list_users.c47 struct cmd_list_users_state *state; local
54 state = talloc(result, struct cmd_list_users_state);
55 if (composite_nomem(state, result)) return result;
57 state->ctx = result;
58 result->private_data = state;
59 state->service = service;
60 state->resume_index = 0;
61 state->result = talloc_strdup(state, "");
62 if (composite_nomem(state
85 struct cmd_list_users_state *state = talloc_get_type( local
124 struct cmd_list_users_state *state = talloc_get_type( local
187 struct cmd_list_users_state *state = talloc_get_type( local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/source4/winbind/
H A Dwb_cmd_list_trustdom.c52 struct cmd_list_trustdom_state *state; local
57 state = talloc(result, struct cmd_list_trustdom_state);
58 if (state == NULL) goto failed;
59 state->ctx = result;
60 result->private_data = state;
62 ctx = wb_sid2domain_send(state, service, service->primary_sid);
65 ctx->async.private_data = state;
75 struct cmd_list_trustdom_state *state = local
81 state->ctx->status = wb_sid2domain_recv(ctx, &domain);
82 if (!composite_is_ok(state
94 struct cmd_list_trustdom_state *state = local
124 struct cmd_list_trustdom_state *state = local
188 struct cmd_list_trustdom_state *state = local
[all...]
H A Dwb_connect_lsa.c53 struct init_lsa_state *state; local
58 state = talloc(result, struct init_lsa_state);
59 if (state == NULL) goto failed;
60 state->ctx = result;
61 result->private_data = state;
70 composite_continue(state->ctx, ctx, init_lsa_recv_pipe, state);
81 struct init_lsa_state *state = local
85 state->ctx->status = dcerpc_secondary_auth_connection_recv(ctx, state,
107 struct init_lsa_state *state = local
126 struct init_lsa_state *state = local
[all...]
H A Dwb_dom_info_trusted.c54 struct trusted_dom_info_state *state; local
59 state = talloc(result, struct trusted_dom_info_state);
60 if (state == NULL) goto failed;
61 state->ctx = result;
62 result->private_data = state;
64 state->info = talloc_zero(state, struct wb_dom_info);
65 if (state->info == NULL) goto failed;
67 state->service = service;
69 state
89 struct trusted_dom_info_state *state = local
122 struct trusted_dom_info_state *state = local
178 struct trusted_dom_info_state *state = local
207 struct trusted_dom_info_state *state = local
224 struct trusted_dom_info_state *state = local
[all...]
H A Dwb_cmd_list_groups.c47 struct cmd_list_groups_state *state; local
54 state = talloc(result, struct cmd_list_groups_state);
55 if (composite_nomem(state, result)) return result;
57 state->ctx = result;
58 result->private_data = state;
59 state->service = service;
60 state->resume_index = 0;
61 state->result = talloc_strdup(state, "");
62 if (composite_nomem(state
85 struct cmd_list_groups_state *state = talloc_get_type( local
124 struct cmd_list_groups_state *state = talloc_get_type( local
189 struct cmd_list_groups_state *state = talloc_get_type( local
[all...]
H A Dwb_cmd_list_users.c47 struct cmd_list_users_state *state; local
54 state = talloc(result, struct cmd_list_users_state);
55 if (composite_nomem(state, result)) return result;
57 state->ctx = result;
58 result->private_data = state;
59 state->service = service;
60 state->resume_index = 0;
61 state->result = talloc_strdup(state, "");
62 if (composite_nomem(state
85 struct cmd_list_users_state *state = talloc_get_type( local
124 struct cmd_list_users_state *state = talloc_get_type( local
187 struct cmd_list_users_state *state = talloc_get_type( local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/source4/winbind/
H A Dwb_cmd_list_trustdom.c52 struct cmd_list_trustdom_state *state; local
57 state = talloc(result, struct cmd_list_trustdom_state);
58 if (state == NULL) goto failed;
59 state->ctx = result;
60 result->private_data = state;
62 ctx = wb_sid2domain_send(state, service, service->primary_sid);
65 ctx->async.private_data = state;
75 struct cmd_list_trustdom_state *state = local
81 state->ctx->status = wb_sid2domain_recv(ctx, &domain);
82 if (!composite_is_ok(state
94 struct cmd_list_trustdom_state *state = local
124 struct cmd_list_trustdom_state *state = local
188 struct cmd_list_trustdom_state *state = local
[all...]
H A Dwb_connect_lsa.c53 struct init_lsa_state *state; local
58 state = talloc(result, struct init_lsa_state);
59 if (state == NULL) goto failed;
60 state->ctx = result;
61 result->private_data = state;
70 composite_continue(state->ctx, ctx, init_lsa_recv_pipe, state);
81 struct init_lsa_state *state = local
85 state->ctx->status = dcerpc_secondary_auth_connection_recv(ctx, state,
107 struct init_lsa_state *state = local
126 struct init_lsa_state *state = local
[all...]
H A Dwb_dom_info_trusted.c54 struct trusted_dom_info_state *state; local
59 state = talloc(result, struct trusted_dom_info_state);
60 if (state == NULL) goto failed;
61 state->ctx = result;
62 result->private_data = state;
64 state->info = talloc_zero(state, struct wb_dom_info);
65 if (state->info == NULL) goto failed;
67 state->service = service;
69 state
89 struct trusted_dom_info_state *state = local
122 struct trusted_dom_info_state *state = local
178 struct trusted_dom_info_state *state = local
207 struct trusted_dom_info_state *state = local
224 struct trusted_dom_info_state *state = local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/source4/rpc_server/lsa/
H A Dlsa_init.c28 struct lsa_policy_state *state; local
40 state = talloc(mem_ctx, struct lsa_policy_state);
41 if (!state) {
46 state->sam_ldb = samdb_connect(state, dce_call->event_ctx, dce_call->conn->dce_ctx->lp_ctx, dce_call->conn->auth_state.session_info);
47 if (state->sam_ldb == NULL) {
53 state->domain_dn = ldb_get_default_basedn(state->sam_ldb);
54 if (!state->domain_dn) {
60 state
152 struct lsa_policy_state *state; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/source4/rpc_server/lsa/
H A Dlsa_init.c28 struct lsa_policy_state *state; local
40 state = talloc(mem_ctx, struct lsa_policy_state);
41 if (!state) {
46 state->sam_ldb = samdb_connect(state, dce_call->event_ctx, dce_call->conn->dce_ctx->lp_ctx, dce_call->conn->auth_state.session_info);
47 if (state->sam_ldb == NULL) {
53 state->domain_dn = ldb_get_default_basedn(state->sam_ldb);
54 if (!state->domain_dn) {
60 state
152 struct lsa_policy_state *state; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/source4/rpc_server/lsa/
H A Dlsa_init.c28 struct lsa_policy_state *state; local
40 state = talloc(mem_ctx, struct lsa_policy_state);
41 if (!state) {
46 state->sam_ldb = samdb_connect(state, dce_call->event_ctx, dce_call->conn->dce_ctx->lp_ctx, dce_call->conn->auth_state.session_info);
47 if (state->sam_ldb == NULL) {
53 state->domain_dn = ldb_get_default_basedn(state->sam_ldb);
54 if (!state->domain_dn) {
60 state
152 struct lsa_policy_state *state; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/lib/zlib/
H A Dinflate.c26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
30 * - Add comments on state->bits assertion in inffast.c
95 local void fixedtables OF((struct inflate_state FAR *state));
106 struct inflate_state FAR *state; local
108 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
109 state = (struct inflate_state FAR *)strm->state;
110 strm->total_in = strm->total_out = state->total = 0;
113 state
133 struct inflate_state FAR *state; local
150 struct inflate_state FAR *state; local
272 struct inflate_state state; local
327 struct inflate_state FAR *state; local
558 struct inflate_state FAR *state; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/lib/zlib/
H A Dinflate.c26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
30 * - Add comments on state->bits assertion in inffast.c
95 local void fixedtables OF((struct inflate_state FAR *state));
106 struct inflate_state FAR *state; local
108 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
109 state = (struct inflate_state FAR *)strm->state;
110 strm->total_in = strm->total_out = state->total = 0;
113 state
133 struct inflate_state FAR *state; local
150 struct inflate_state FAR *state; local
272 struct inflate_state state; local
327 struct inflate_state FAR *state; local
558 struct inflate_state FAR *state; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/lib/zlib/
H A Dinflate.c26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
30 * - Add comments on state->bits assertion in inffast.c
95 local void fixedtables OF((struct inflate_state FAR *state));
106 struct inflate_state FAR *state; local
108 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
109 state = (struct inflate_state FAR *)strm->state;
110 strm->total_in = strm->total_out = state->total = 0;
113 state
133 struct inflate_state FAR *state; local
150 struct inflate_state FAR *state; local
272 struct inflate_state state; local
327 struct inflate_state FAR *state; local
558 struct inflate_state FAR *state; local
[all...]

Completed in 113 milliseconds

1234567891011>>