Searched refs:total (Results 1 - 25 of 250) sorted by relevance

12345678910

/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dpr57518.c7 int total; variable
13 total = t & 0x3;
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/tree-ssa/
H A Dcoalesce-2.c4 float total = 0.2; variable
9 total += i;
/haiku-buildtools/gcc/libvtv/testsuite/libvtv.cc/
H A Dbb_tests.cc4 int total; member in struct:base
5 virtual void add (int i) { total += i; }
6 virtual void sub (int i) { total -= i; }
7 virtual void init (void) { total = 73; }
12 int total; member in struct:derived
13 virtual void add (int i) { total += 10 * i; }
14 virtual void sub (int i) { total -= 2 * i; }
15 virtual void init (void) { total = 0; }
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/aarch64/
H A Dasm-adder-clobber-lr.c15 int total = argc; local
17 total = adder (total, i);
19 if (total != (190 + argc))
H A Dasm-adder-no-clobber-lr.c15 int total = argc; local
17 total = adder (total, i);
19 if (total != (190 + argc))
/haiku-buildtools/gcc/gcc/config/nds32/
H A Dnds32-cost.c90 int *total,
115 *total = 0;
119 *total = COSTS_N_INSNS (1);
126 *total = COSTS_N_INSNS (7);
130 *total = COSTS_N_INSNS (1);
152 *total = 0;
164 *total = COSTS_N_INSNS (1) - 2;
166 *total = COSTS_N_INSNS (1);
168 *total = COSTS_N_INSNS (2);
175 *total
86 nds32_rtx_costs_impl(rtx x, int code, int outer_code, int opno ATTRIBUTE_UNUSED, int *total, bool speed) argument
[all...]
/haiku-buildtools/binutils/gold/testsuite/
H A Dincr_comdat_test_2_v1.cc34 static int total = 0; local
35 total += k;
36 return total;
H A Dincr_comdat_test_2_v3.cc34 static int total = 0; local
35 total += k;
36 return total;
H A Dincr_comdat_test_2_v2.cc34 static int total = 0; local
35 total += k;
36 return total;
H A Dincr_comdat_test_1.cc43 static int total = 0; local
44 total += k;
45 return total;
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp0x/lambda/
H A Dlambda-nullptr.C11 int total; variable
15 total += n;
33 total = 0;
35 assert (total == 5);
37 assert (total == 25);
39 assert (total == -231);
/haiku-buildtools/gcc/libgomp/testsuite/libgomp.c/
H A Domp_matvec.c6 * element b(i) and stores the summed products in vector c(i). A total is
8 * work-sharing construct. The update of the shared global total is
23 float A[SIZE][SIZE], b[SIZE], c[SIZE], total; local
27 total = 0.0;
46 #pragma omp parallel shared(A,b,c,total) private(tid,i)
57 /* Update and display of running total must be serialized */
60 total = total + c[i];
62 printf("Running total= %.2f\n",total);
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/30_threads/thread/cons/
H A D9.cc30 int total = 0; variable
45 void operator()() const { total += i; }
61 VERIFY( total == 60 );
67 VERIFY( total == 660 ); // Not 120...
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Drefs1.C23 void C::count (int& total) { argument
28 count (++total); // THIS IS WHERE THE TROUBLE STARTS
/haiku-buildtools/gcc/libstdc++-v3/testsuite/util/statistic/
H A Dsample_mean.hpp57 const PB_DS_VTYPE total = std::accumulate(b, e, PB_DS_VTYPE(0)); local
59 return total / num;
/haiku-buildtools/gcc/gcc/
H A Dtimevar.c432 struct timevar_time_def *total = &timevars[TV_TOTAL].elapsed; local
457 if (phase_user > total->user * tolerance
458 || phase_sys > total->sys * tolerance
459 || phase_wall > total->wall * tolerance
460 || phase_ggc_mem > total->ggc_mem * tolerance)
463 fprintf (fp, "Timing error: total of phase timers exceeds total time.\n");
464 if (phase_user > total->user)
465 fprintf (fp, "user %24.18e > %24.18e\n", phase_user, total->user);
466 if (phase_sys > total
488 struct timevar_time_def *total = &timevars[TV_TOTAL].elapsed; local
600 print_time(const char *str, long total) argument
[all...]
/haiku-buildtools/libtool/tests/
H A Ddryrun.test50 ls -l . $objdir | grep -v total > $before
52 ls -l . $objdir | grep -v total > $after
59 ls -l . $objdir | grep -v total > $before
61 ls -l . $objdir | grep -v total > $after
68 ls -l . $objdir | grep -v total > $before
70 ls -l . $objdir | grep -v total > $after
80 ls -l . $objdir | grep -v total > $before
81 ls -lR $prefix | grep -v total >> $before
83 ls -l . $objdir | grep -v total > $after
84 ls -lR $prefix | grep -v total >>
[all...]
/haiku-buildtools/gcc/libvtv/scripts/
H A Dsum-vtv-counts.c61 int total; local
108 while (fscanf (fp_in, "%s %d %d %d %d %d\n", fname_in, &total,
111 sum_vcalls += total;
119 if (total > 0)
120 tmp_pct = (verified * 100) / total;
122 if (verbose && tmp_pct < 90 && total >= 20)
125 verified, total, tmp_pct, fname_in);
/haiku-buildtools/gcc/gcc/testsuite/c-c++-common/cilk-plus/CK/
H A Dvarargs_test.c35 double total = 0; local
41 total += va_arg(args,double);
45 return total;
/haiku-buildtools/legacy/gcc/libio/
H A Disgetline.cc97 char *_sb_readline (streambuf *sb, long& total, char terminator) argument
107 long old_total = total;
108 total += count;
110 total++; // Include ch in total.
111 ptr = _sb_readline(sb, total, terminator);
119 ptr = new char[total+1];
121 ptr[total] = '\0';
122 memcpy(ptr + total - count, buf, count);
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/tls/
H A Dopt-14.c19 int count, total = 0; local
/haiku-buildtools/cloog/osl/tests/
H A Dosl_test.c181 int total = 0; // Total number of tests. local
228 total++;
235 total++;
241 printf(" | total %4d |\n", total);
243 printf(" | failure(s) %4d |\n", total - success);
247 if (total - success)
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dderived_array_intrinisics_1.f9023 integer, parameter :: total = sum(g%i) variable in module:m
28 j = total
/haiku-buildtools/gcc/liboffloadmic/runtime/
H A Doffload_timer_target.cpp64 timer_data.phases[p_type].total += _rdtsc() -
83 memcpy(data++, &(timer_data.phases[i].total), sizeof(uint64_t));
/haiku-buildtools/gcc/libgomp/config/linux/
H A Dbar.h37 /* Make sure total/generation is in a mostly read cacheline, while
39 unsigned total __attribute__((aligned (64))); member in struct:__anon2148
58 bar->total = count;
66 __atomic_add_fetch (&bar->awaited, count - bar->total, MEMMODEL_ACQ_REL);
67 bar->total = count;

Completed in 119 milliseconds

12345678910