Searched refs:count_max (Results 1 - 7 of 7) sorted by relevance

/haiku-buildtools/legacy/gcc/libf2c/libU77/
H A Dsys_clock_.c43 int G77_system_clock_0 (count, count_rate, count_max)
44 integer *count, *count_rate, *count_max;
46 int G77_system_clock_0 (integer *count, integer *count_rate, integer *count_max)
65 if (count_max) /* optional arg present? */
66 *count_max = INT_MAX; /* dubious */
H A Du77-test.f45 integer i, j, k, ltarray (9), idat (3), count, rate, count_max, variable
153 call system_clock(count, rate, count_max)
154 write(6,*) 'SYSTEM_CLOCK returns: ', count, rate, count_max
/haiku-buildtools/isl/
H A Dpip.c240 isl_int count, count_max; local
248 isl_int_init(count_max);
250 isl_int_set_si(count_max, 2000);
251 r = isl_basic_set_count_upto(context, count_max, &count);
255 isl_int_clear(count_max);
/haiku-buildtools/gcc/gcc/
H A Dpredict.c2831 gcov_type count_max, true_count_max = 0;
2843 count_max = MAX (true_count_max, 1);
2845 bb->frequency = (bb->count * BB_FREQ_MAX + count_max / 2) / count_max;
3198 gcov_type count_max = 0;
3201 count_max = MAX (bb->count, count_max);
3205 && count_max < REG_BR_PROB_BASE/10))
2827 gcov_type count_max, true_count_max = 0; local
3194 gcov_type count_max = 0; local
/haiku-buildtools/gcc/gcc/fortran/
H A Dcheck.c5641 count_max are all optional arguments */
5645 gfc_expr *count_max)
5693 if (count_max != NULL)
5695 if (!scalar_check (count_max, 2))
5698 if (!type_check (count_max, 2, BT_INTEGER))
5701 if (count_max->ts.kind != gfc_default_integer_kind
5704 &count_max->where))
5707 if (!variable_check (count_max, 2, false))
5644 gfc_check_system_clock(gfc_expr *count, gfc_expr *count_rate, gfc_expr *count_max) argument
H A Diresolve.c3313 gfc_expr *count_max = c->ext.actual->next->next->expr; local
3318 && (!count_max || count_max->ts.kind >= 8))
H A Dtrans-intrinsic.c2710 gfc_expr *count_max = code->ext.actual->next->next->expr; local
2725 if (count_max)
2728 gfc_conv_expr (&count_max_se, count_max);
2736 least = (count_max && count_max->ts.kind < least) ? count_max->ts.kind
2765 if (count_max)
2768 arg3 = gfc_create_var (gfc_get_int_type (8), "count_max");
2770 arg3 = gfc_create_var (gfc_get_int_type (4), "count_max");

Completed in 161 milliseconds