Home
last modified time | relevance | path

Searched refs:pstate (Results 1 – 25 of 4680) sorted by relevance

12345678910>>...188

/dports/textproc/miller/miller-5.10.2/c/dsl/
H A Drval_func_evaluators.c31 return pstate->pfunc(pstate->pmvs, nargs); in rval_evaluator_variadic_func()
38 pstate->pargs[i]->pfree_func(pstate->pargs[i]); in rval_evaluator_variadic_free()
81 pstate->parg1->pfree_func(pstate->parg1); in rval_evaluator_b_b_free()
180 pstate->parg1->pfree_func(pstate->parg1); in rval_evaluator_b_bb_free()
181 pstate->parg2->pfree_func(pstate->parg2); in rval_evaluator_b_bb_free()
269 pstate->parg1->pfree_func(pstate->parg1); in rval_evaluator_f_f_free()
304 pstate->parg1->pfree_func(pstate->parg1); in rval_evaluator_x_n_free()
339 pstate->parg1->pfree_func(pstate->parg1); in rval_evaluator_i_i_free()
378 pstate->parg1->pfree_func(pstate->parg1); in rval_evaluator_f_ff_free()
379 pstate->parg2->pfree_func(pstate->parg2); in rval_evaluator_f_ff_free()
[all …]
H A Dmlr_dsl_cst_output_statements.c76 pstate); in alloc_print()
84 pstate->prhs_xevaluator->pfree_func(pstate->prhs_xevaluator); in free_print()
96 free(pstate); in free_print()
188 pstate); in alloc_tee()
199 pstate); in alloc_tee()
220 free(pstate); in free_tee()
411 pstate); in alloc_emitf()
448 free(pstate); in free_emitf()
749 pstate); in alloc_emit()
1175 pstate); in alloc_emit_lashed()
[all …]
H A Drxval_func_evaluators.c45 pstate->pargs[i]->pfree_func(pstate->pargs[i]); in rxval_evaluator_variadic_free()
111 pstate->parg1->pfree_func(pstate->parg1); in rxval_evaluator_x_x_free()
159 pstate->parg1->pfree_func(pstate->parg1); in rxval_evaluator_x_m_free()
216 pstate->parg1->pfree_func(pstate->parg1); in rxval_evaluator_x_mx_free()
217 pstate->parg2->pfree_func(pstate->parg2); in rxval_evaluator_x_mx_free()
280 pstate->parg1->pfree_func(pstate->parg1); in rxval_evaluator_x_ms_free()
281 pstate->parg2->pfree_func(pstate->parg2); in rxval_evaluator_x_ms_free()
350 pstate->parg1->pfree_func(pstate->parg1); in rxval_evaluator_x_ss_free()
351 pstate->parg2->pfree_func(pstate->parg2); in rxval_evaluator_x_ss_free()
424 pstate->parg1->pfree_func(pstate->parg1); in rxval_evaluator_x_mss_free()
[all …]
H A Dmlr_dsl_cst_map_assignment_statements.c44 pstate); in alloc_full_srec_assignment()
52 pstate->prhs_xevaluator->pfree_func(pstate->prhs_xevaluator); in free_full_srec_assignment()
55 free(pstate); in free_full_srec_assignment()
165 pstate); in alloc_local_variable_definition()
174 free(pstate); in free_local_variable_definition()
190 pstate->lhs_variable_name, pstate->lhs_frame_relative_index, pstate->lhs_type_mask, in handle_local_variable_definition_from_xval()
194 pstate->lhs_variable_name, pstate->lhs_frame_relative_index, pstate->lhs_type_mask, in handle_local_variable_definition_from_xval()
242 pstate); in alloc_nonindexed_local_variable_assignment()
324 pstate); in alloc_indexed_local_variable_assignment()
409 pstate); in alloc_oosvar_assignment()
[all …]
/dports/games/egoboo/egoboo-2.8.1/src/game/
H A Dscript_functions.h53 Uint8 scr_set_Bit( struct s_script_state * pstate, struct s_ai_state * pself );
55 Uint8 scr_TestBit( struct s_script_state * pstate, struct s_ai_state * pself );
59 Uint8 scr_Spawned( struct s_script_state * pstate, struct s_ai_state * pself );
64 Uint8 scr_Bumped( struct s_script_state * pstate, struct s_ai_state * pself );
68 Uint8 scr_Killed( struct s_script_state * pstate, struct s_ai_state * pself );
93 Uint8 scr_Else( struct s_script_state * pstate, struct s_ai_state * pself );
94 Uint8 scr_Run( struct s_script_state * pstate, struct s_ai_state * pself );
95 Uint8 scr_Walk( struct s_script_state * pstate, struct s_ai_state * pself );
96 Uint8 scr_Sneak( struct s_script_state * pstate, struct s_ai_state * pself );
140 Uint8 scr_Used( struct s_script_state * pstate, struct s_ai_state * pself );
[all …]
H A Dscript.c379 pstate->operationsum = 0; in scr_run_operation()
862 pstate->x = pstate->operationsum; in scr_set_operand()
866 pstate->y = pstate->operationsum; in scr_set_operand()
870 pstate->distance = pstate->operationsum; in scr_set_operand()
874 pstate->turn = pstate->operationsum; in scr_set_operand()
878 pstate->argument = pstate->operationsum; in scr_set_operand()
934 iTmp = pstate->x; in scr_run_operand()
939 iTmp = pstate->y; in scr_run_operand()
1278 iTmp = SQRT( pstate->x * pstate->x + pstate->y * pstate->y ); in scr_run_operand()
1343 iTmp = vec_to_facing( pstate->x - pchr->pos.x , pstate->y - pchr->pos.y ); in scr_run_operand()
[all …]
H A Dscript_functions.c203 if ( pstate->y >= 0 && pstate->y < 32 ) in scr_set_Bit()
205 SET_BIT( pstate->x, 1 << pstate->y ); in scr_set_Bit()
222 if ( pstate->y >= 0 && pstate->y < 32 ) in scr_ClearBit()
241 if ( pstate->y >= 0 && pstate->y < 32 ) in scr_TestBit()
258 SET_BIT( pstate->x, pstate->y ); in scr_set_Bits()
272 UNSET_BIT( pstate->x, pstate->y ); in scr_ClearBits()
2785 … returncode = chr_teleport( pself->target, pstate->x, pstate->y, pstate->distance, pstate->turn ); in scr_TeleportTarget()
4225 …ode = _break_passage( pstate->y, pstate->x, pstate->distance, pstate->turn, ( PASS_REF )pstate->ar… in scr_BreakPassage()
4440 pstate->x = pstate->argument; in scr_ChangeArmor()
5733 …ode = _find_grid_in_passage( pstate->x, pstate->y, pstate->distance, ( PASS_REF )pstate->argument,… in scr_FindTileInPassage()
[all …]
/dports/textproc/miller/miller-5.10.2/c/mapping/
H A Dmapper_stats2.c534 …mlr_get_linear_regression_ols(pstate->count, pstate->sumx, pstate->sumx2, pstate->sumxy, pstate->s… in stats2_linreg_ols_emit()
550 …mlr_get_linear_regression_ols(pstate->count, pstate->sumx, pstate->sumx2, pstate->sumxy, pstate->s… in stats2_linreg_ols_fit()
551 &pstate->m, &pstate->b); in stats2_linreg_ols_fit()
558 double yfit = pstate->m * x + pstate->b; in stats2_linreg_ols_fit()
651 …mlr_logistic_regression(pstate->pxs->data, pstate->pys->data, pstate->pxs->size, &pstate->m, &psta… in stats2_logireg_fit()
814 pstate->sumx, pstate->sumx2, pstate->sumy, pstate->sumy2, pstate->sumxy, Q); in stats2_corr_cov_emit()
852 pstate->sumx, pstate->sumx2, pstate->sumy, pstate->sumy2, pstate->sumxy, Q); in stats2_corr_cov_emit()
881 double output = mlr_get_cov(pstate->count, pstate->sumx, pstate->sumy, pstate->sumxy); in stats2_corr_cov_emit()
883 double sigmax = sqrt(mlr_get_var(pstate->count, pstate->sumx, pstate->sumx2)); in stats2_corr_cov_emit()
899 pstate->sumx, pstate->sumx2, pstate->sumy, pstate->sumy2, pstate->sumxy, Q); in linreg_pca_fit()
[all …]
H A Dstats1_accumulators.c98 pstate->counter = x_xx_plus_func(&pstate->counter, &pstate->one); in stats1_count_singest()
113 free(pstate); in stats1_count_free()
171 free(pstate); in stats1_mode_free()
230 free(pstate); in stats1_antimode_free()
258 pstate->sum = x_xx_plus_func(&pstate->sum, pval); in stats1_sum_ningest()
312 double quot = pstate->sum / pstate->count; in stats1_mean_emit()
367 double output = mlr_get_var(pstate->count, pstate->sumx, pstate->sumx2); in stats1_stddev_var_meaneb_emit()
443 double output = mlr_get_skewness(pstate->count, pstate->sumx, pstate->sumx2, pstate->sumx3); in stats1_skewness_emit()
504 …double output = mlr_get_kurtosis(pstate->count, pstate->sumx, pstate->sumx2, pstate->sumx3, pstate in stats1_kurtosis_emit()
546 pstate->min = x_xx_min_func(&pstate->min, &val); in stats1_min_singest()
[all …]
H A Dmapper_step.c244 free(pstate); in mapper_step_free()
296 pstate->pstring_alphas, pstate->pewma_suffixes); in mapper_step_process()
372 free(pstate); in step_delta_free()
409 free(pstate); in step_shift_free()
451 free(pstate); in step_from_first_free()
494 free(pstate); in step_ratio_free()
521 pstate->rsum = x_xx_plus_func(&pstate->rsum, pnumv); in step_rsum_nprocess()
532 free(pstate); in step_rsum_free()
558 pstate->counter = x_xx_plus_func(&pstate->counter, &pstate->one); in step_counter_sprocess()
610 curr = pstate->alphas[i] * curr + pstate->alphacompls[i] * pstate->prevs[i]; in step_ewma_dprocess()
[all …]
H A Dmapper_stats1.c67 mapper_stats1_state_t* pstate);
73 mapper_stats1_state_t* pstate,
77 mapper_stats1_state_t* pstate,
360 ap_free(pstate->pargp); in mapper_stats1_free()
361 free(pstate); in mapper_stats1_free()
414 pstate->pgroup_by_ingestor(pinrec, pstate); in mapper_stats1_process()
423 return pstate->pemitter(pstate); in mapper_stats1_process()
453 pstate->pvalue_ingestor(pinrec, pstate, pgroup_by_field_values_to_acc_fields); in mapper_stats1_group_by_ingest_without_regexes()
463pstate->group_by_field_regexes, pstate->num_group_by_field_regexes, pstate->invert_regex_group_by_… in mapper_stats1_group_by_ingest_with_regexes()
492 pstate->pvalue_ingestor(pinrec, pstate, pgroup_by_field_values_to_acc_fields); in mapper_stats1_group_by_ingest_with_regexes()
[all …]
H A Dmapper_bar.c151 pstate->bars[i] = mlr_malloc_or_die(pstate->width + 1); in mapper_bar_alloc()
153 memset(bar, pstate->blank_char, pstate->width); in mapper_bar_alloc()
160 memset(bar, pstate->fill_char, pstate->width); in mapper_bar_alloc()
161 bar[pstate->width-1] = pstate->oob_char; in mapper_bar_alloc()
163 pstate->bars[i] = bar; in mapper_bar_alloc()
180 free(pstate->bars[i]); in mapper_bar_free()
181 free(pstate->bars); in mapper_bar_free()
182 ap_free(pstate->pargp); in mapper_bar_free()
183 free(pstate); in mapper_bar_free()
200 int idx = (int)(pstate->width * (dval - pstate->lo) / (pstate->hi - pstate->lo)); in mapper_bar_process_no_auto()
[all …]
/dports/textproc/miller/miller-5.10.2/c/input/
H A Dlrec_reader_stdio_csv.c131 pstate->ifs_eof = mlr_paste_2_strings(pstate->ifs, "\xff"); in lrec_reader_stdio_csv_alloc()
134 pstate->dquote_ifs = mlr_paste_2_strings("\"", pstate->ifs); in lrec_reader_stdio_csv_alloc()
138 pstate->dquotelen = strlen(pstate->dquote); in lrec_reader_stdio_csv_alloc()
161 pstate->dquote_irs = mlr_paste_2_strings("\"", pstate->irs); in lrec_reader_stdio_csv_alloc()
175 pstate->pfr = pfr_alloc(pstate->pbr, mlr_imax3( in lrec_reader_stdio_csv_alloc()
215 free(pstate); in lrec_reader_stdio_csv_free()
240 …if (streqn(pstate->pfields->phead->value, pstate->comment_string, pstate->comment_string_length)) { in lrec_reader_stdio_csv_process()
295 pstate->ilno++; in lrec_reader_stdio_csv_process()
302 …if (streqn(pstate->pfields->phead->value, pstate->comment_string, pstate->comment_string_length)) { in lrec_reader_stdio_csv_process()
327 ? paste_indices_and_data(pstate, pstate->pfields, pctx) in lrec_reader_stdio_csv_process()
[all …]
H A Dlrec_reader_stdio_dkvp.c114 &pstate->line_length, TRUE, pstate->comment_handling, pstate->comment_string, pctx); in lrec_reader_stdio_dkvp_process_single_irs_single_others_auto_line_term()
119 …return lrec_parse_stdio_dkvp_single_sep(line, pstate->ifs[0], pstate->ips[0], pstate->allow_repeat… in lrec_reader_stdio_dkvp_process_single_irs_single_others_auto_line_term()
132 TRUE, pstate->comment_handling, pstate->comment_string, pctx); in lrec_reader_stdio_dkvp_process_single_irs_multi_others_auto_line_term()
136 …return lrec_parse_stdio_dkvp_multi_sep(line, pstate->ifs, pstate->ips, pstate->ifslen, pstate->ips… in lrec_reader_stdio_dkvp_process_single_irs_multi_others_auto_line_term()
151 …return lrec_parse_stdio_dkvp_single_sep(line, pstate->ifs[0], pstate->ips[0], pstate->allow_repeat… in lrec_reader_stdio_dkvp_process_single_irs_single_others()
161 &pstate->line_length, FALSE, pstate->comment_handling, pstate->comment_string, pctx); in lrec_reader_stdio_dkvp_process_single_irs_multi_others()
165 …return lrec_parse_stdio_dkvp_multi_sep(line, pstate->ifs, pstate->ips, pstate->ifslen, pstate->ips… in lrec_reader_stdio_dkvp_process_single_irs_multi_others()
176 &pstate->line_length, pstate->comment_handling, pstate->comment_string); in lrec_reader_stdio_dkvp_process_multi_irs_single_others()
180 …return lrec_parse_stdio_dkvp_single_sep(line, pstate->ifs[0], pstate->ips[0], pstate->allow_repeat… in lrec_reader_stdio_dkvp_process_multi_irs_single_others()
190 &pstate->line_length, pstate->comment_handling, pstate->comment_string); in lrec_reader_stdio_dkvp_process_multi_irs_multi_others()
[all …]
H A Dlrec_reader_stdio_nidx.c64 pstate->irs = "\n"; in lrec_reader_stdio_nidx_alloc()
65 pstate->irslen = 1; in lrec_reader_stdio_nidx_alloc()
102 &pstate->line_length, TRUE, pstate->comment_handling, pstate->comment_string, pctx); in lrec_reader_stdio_nidx_process_single_irs_single_ifs_auto_line_term()
119 &pstate->line_length, TRUE, pstate->comment_handling, pstate->comment_string, pctx); in lrec_reader_stdio_nidx_process_single_irs_multi_ifs_auto_line_term()
124 …return lrec_parse_stdio_nidx_multi_sep(line, pstate->ifs, pstate->ifslen, pstate->allow_repeat_ifs… in lrec_reader_stdio_nidx_process_single_irs_multi_ifs_auto_line_term()
136 &pstate->line_length, FALSE, pstate->comment_handling, pstate->comment_string, pctx); in lrec_reader_stdio_nidx_process_single_irs_single_ifs()
152 &pstate->line_length, FALSE, pstate->comment_handling, pstate->comment_string, pctx); in lrec_reader_stdio_nidx_process_single_irs_multi_ifs()
157 …return lrec_parse_stdio_nidx_multi_sep(line, pstate->ifs, pstate->ifslen, pstate->allow_repeat_ifs… in lrec_reader_stdio_nidx_process_single_irs_multi_ifs()
167 &pstate->line_length, pstate->comment_handling, pstate->comment_string); in lrec_reader_stdio_nidx_process_multi_irs_single_ifs()
181 &pstate->line_length, pstate->comment_handling, pstate->comment_string); in lrec_reader_stdio_nidx_process_multi_irs_multi_ifs()
[all …]
H A Dlrec_reader_stdio_csvlite.c125 free(pstate); in lrec_reader_stdio_csvlite_free()
159 &pstate->line_length, pstate->do_auto_line_term, in lrec_reader_stdio_csvlite_process()
163 pstate->irs, pstate->irslen, &pstate->line_length, in lrec_reader_stdio_csvlite_process()
175 …: split_csvlite_header_line_multi_ifs(hline, pstate->ifs, pstate->ifslen, pstate->allow_repeat_ifs… in lrec_reader_stdio_csvlite_process()
220 &pstate->line_length, pstate->do_auto_line_term, in lrec_reader_stdio_csvlite_process()
224 pstate->irs, pstate->irslen, &pstate->line_length, in lrec_reader_stdio_csvlite_process()
225 pstate->comment_handling, pstate->comment_string); in lrec_reader_stdio_csvlite_process()
245 pstate->ifs[0], pstate->allow_repeat_ifs) in lrec_reader_stdio_csvlite_process()
247 pstate->ilno, line, pstate->ifs[0], pstate->allow_repeat_ifs, pstate->allow_ragged_csv_input); in lrec_reader_stdio_csvlite_process()
252 pstate->ifs, pstate->ifslen, pstate->allow_repeat_ifs) in lrec_reader_stdio_csvlite_process()
[all …]
H A Dlrec_reader_stdio_xtab.c56 pstate->ifs = "\n"; in lrec_reader_stdio_xtab_alloc()
57 pstate->ifslen = 1; in lrec_reader_stdio_xtab_alloc()
77 pstate->at_eof = FALSE; in lrec_reader_stdio_xtab_sof()
85 if (pstate->at_eof) in lrec_reader_stdio_xtab_process()
96 &pstate->line_length, pstate->do_auto_line_term, pctx); in lrec_reader_stdio_xtab_process()
103 &pstate->line_length, pstate->do_auto_line_term, in lrec_reader_stdio_xtab_process()
104 pstate->comment_handling, pstate->comment_string, pctx); in lrec_reader_stdio_xtab_process()
107 pstate->ifs, pstate->ifslen, &pstate->line_length, in lrec_reader_stdio_xtab_process()
108 pstate->comment_handling, pstate->comment_string); in lrec_reader_stdio_xtab_process()
113 pstate->at_eof = TRUE; in lrec_reader_stdio_xtab_process()
[all …]
/dports/print/gutenprint/gutenprint-5.3.3/test/
H A Dunprint.c115 pstate_t pstate; variable
645 stp_zalloc((pstate.bottom_margin - pstate.top_margin) * in update_page()
654 if (y >= pstate.bottom_margin - pstate.top_margin) in update_page()
979 pstate.dotsize, pstate.bpp); in parse_escp2_extended()
1003 if (pstate.top_margin + pstate.bottom_margin > pstate.page_height) in parse_escp2_extended()
1004 pstate.page_height = pstate.top_margin + pstate.bottom_margin; in parse_escp2_extended()
1012 stp_zalloc((pstate.bottom_margin - pstate.top_margin) * in parse_escp2_extended()
1027 pstate.yposition = i * (pstate.relative_vertical_units / in parse_escp2_extended()
1036 if (pstate.yposition > pstate.bottom_margin - pstate.top_margin) in parse_escp2_extended()
1059 if (pstate.yposition > pstate.bottom_margin - pstate.top_margin) in parse_escp2_extended()
[all …]
/dports/print/gimp-gutenprint/gutenprint-5.3.3/test/
H A Dunprint.c115 pstate_t pstate; variable
645 stp_zalloc((pstate.bottom_margin - pstate.top_margin) * in update_page()
654 if (y >= pstate.bottom_margin - pstate.top_margin) in update_page()
979 pstate.dotsize, pstate.bpp); in parse_escp2_extended()
1003 if (pstate.top_margin + pstate.bottom_margin > pstate.page_height) in parse_escp2_extended()
1004 pstate.page_height = pstate.top_margin + pstate.bottom_margin; in parse_escp2_extended()
1012 stp_zalloc((pstate.bottom_margin - pstate.top_margin) * in parse_escp2_extended()
1027 pstate.yposition = i * (pstate.relative_vertical_units / in parse_escp2_extended()
1036 if (pstate.yposition > pstate.bottom_margin - pstate.top_margin) in parse_escp2_extended()
1059 if (pstate.yposition > pstate.bottom_margin - pstate.top_margin) in parse_escp2_extended()
[all …]
/dports/print/ghostscript7-base/ghostscript-7.07/gimp-print-4.2.7/test/
H A Dunprint.c108 pstate_t pstate; variable
564 if (y >= pstate.bottom_margin - pstate.top_margin) in update_page()
695 pstate.bpp=ch; in parse_escp2_data()
887 pstate.dotsize, pstate.bpp); in parse_escp2_extended()
911 if (pstate.top_margin + pstate.bottom_margin > pstate.page_height) in parse_escp2_extended()
912 pstate.page_height = pstate.top_margin + pstate.bottom_margin; in parse_escp2_extended()
931 if (pstate.top_margin + i * (pstate.relative_vertical_units / in parse_escp2_extended()
934 pstate.yposition = i * (pstate.relative_vertical_units / in parse_escp2_extended()
943 if (pstate.yposition > pstate.bottom_margin - pstate.top_margin) in parse_escp2_extended()
966 if (pstate.yposition > pstate.bottom_margin - pstate.top_margin) in parse_escp2_extended()
[all …]
/dports/net/c3270/suite3270-4.0/Common/Win32/
H A Dgdi_print.c102 } pstate; variable
397 pstate.usable_cols = pstate.usable_xpixels / pstate.space_size.cx; in create_roman_font()
398 pstate.usable_rows = pstate.usable_ypixels / pstate.space_size.cy; in create_roman_font()
400 pstate.usable_cols, pstate.usable_rows); in create_roman_font()
482 memset(&pstate.dlg, '\0', sizeof(pstate.dlg)); in gdi_init()
483 pstate.dlg.lStructSize = sizeof(pstate.dlg); in gdi_init()
678 pstate.usable_xpixels, pstate.usable_ypixels); in gdi_init()
853 pstate.dx[i] = pstate.space_size.cx; in gdi_init()
938 pstate.caption, (UINT)strlen(pstate.caption), NULL); in gdi_screenful()
955 (pstate.out_row * pstate.space_size.cy) + in gdi_screenful()
[all …]
/dports/x11/x3270/suite3270-4.0/Common/Win32/
H A Dgdi_print.c102 } pstate; variable
397 pstate.usable_cols = pstate.usable_xpixels / pstate.space_size.cx; in create_roman_font()
398 pstate.usable_rows = pstate.usable_ypixels / pstate.space_size.cy; in create_roman_font()
400 pstate.usable_cols, pstate.usable_rows); in create_roman_font()
482 memset(&pstate.dlg, '\0', sizeof(pstate.dlg)); in gdi_init()
483 pstate.dlg.lStructSize = sizeof(pstate.dlg); in gdi_init()
678 pstate.usable_xpixels, pstate.usable_ypixels); in gdi_init()
853 pstate.dx[i] = pstate.space_size.cx; in gdi_init()
938 pstate.caption, (UINT)strlen(pstate.caption), NULL); in gdi_screenful()
955 (pstate.out_row * pstate.space_size.cy) + in gdi_screenful()
[all …]
/dports/games/rottdc/rottdc-1.0-2/rott/
H A Drt_playr.c340 {pstate->new_weapon = pstate->weapon = pstate->missileweapon = wp_dog; in InitializeWeapons()
350 {pstate->new_weapon = pstate->weapon = pstate->oldweapon = in InitializeWeapons()
358 {pstate->new_weapon = pstate->weapon = pstate->oldweapon = in InitializeWeapons()
390 pstate->attackframe = pstate->attackcount = in ResetPlayerstate()
525 pstate->missileweapon = pstate->oldweapon = pstate->new_weapon = in RevivePlayerobj()
2894 pstate->new_weapon = pstate->oldweapon; in ResetWeapons()
2916 pstate->oldweapon = pstate->new_weapon; in SaveWeapons()
4418 pstate->weaponframe = pstate->attackframe = pstate->batblast = 0; in T_Attack()
5000 pstate->weapon = pstate->missileweapon = pstate->bulletweapon = in CheckWeaponStates()
5001 pstate->new_weapon = pstate->oldweapon = pstate->oldmissileweapon = -1; in CheckWeaponStates()
[all …]
/dports/devel/gdb/gdb-11.1/gdb/
H A Df-exp.y308 = pstate->pop_vector (pstate->end_arglist ());
1263 pstate->prev_lexptr = pstate->lexptr; in yylex()
1310 pstate->lexptr++; in yylex()
1321 pstate->lexptr++; in yylex()
1328 pstate->lexptr++; in yylex()
1339 if (pstate->lexptr[1] < '0' || pstate->lexptr[1] > '9') in yylex()
1403 pstate->lexptr = p; in yylex()
1523 if (pstate->parse_completion && *pstate->lexptr == '\0') in yylex()
1541 pstate = par_state; in parser()
1552 pstate->set_operation (pstate->pop ()); in parser()
[all …]
/dports/sysutils/freeipmi/freeipmi-1.6.8/common/toolcommon/
H A Dtool-event-common.c51 PSTDOUT_FPRINTF (pstate, in event_load_event_state_config_file()
56 PSTDOUT_FPRINTF (pstate, in event_load_event_state_config_file()
61 PSTDOUT_FPRINTF (pstate, in event_load_event_state_config_file()
73 PSTDOUT_FPRINTF (pstate, in event_load_event_state_config_file()
77 PSTDOUT_FPRINTF (pstate, in event_load_event_state_config_file()
102 PSTDOUT_FPRINTF (pstate, in _sel_parse_err_handle()
109 PSTDOUT_FPRINTF (pstate, in _sel_parse_err_handle()
142 if (_sel_parse_err_handle (pstate, in _sel_parse_record_string()
154 event_output_time (pstdout_state_t pstate, in event_output_time() argument
262 PSTDOUT_PRINTF (pstate, fmt, outbuf); in event_output_sensor_name()
[all …]

12345678910>>...188