Searched refs:total (Results 26 - 50 of 479) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/distrib/utils/embedded/
H A Dmkpkgs110 total=0
112 total=$(expr $total + $(sizeone ${pkgdir}/${p}-*.tgz))
114 total=$(expr \( $total / 1000000 \) + 2)
117 size=${total}
120 if [ ${total} -gt ${size} ]; then
121 echo "File system size given as ${size} MB, but it needs ${total} MB" >&2
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/spu/
H A Dmulti3.c28 * TItype total = 0;
31 * total += (TItype)((l[7-i] * r[7-j]) << (16 * (i + j)));
65 qword total; local
91 total = si_cg (total10, carry);
92 total = si_shlqbyi (total, 4);
93 total = si_cgx (total10, carry, total);
94 total = si_shlqbyi (total,
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/
H A Dtimevar.c379 a special meaning -- it's considered to be the total elapsed time,
388 struct timevar_time_def *total = &timevars[TV_TOTAL].elapsed; local
417 /* Don't print the total execution time here; that goes at the
441 (total->user == 0 ? 0 : tv->elapsed.user / total->user) * 100);
448 (total->sys == 0 ? 0 : tv->elapsed.sys / total->sys) * 100);
455 (total->wall == 0 ? 0 : tv->elapsed.wall / total->wall) * 100);
461 (total
498 print_time(const char *str, long total) argument
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/
H A Dtimevar.c380 a special meaning -- it's considered to be the total elapsed time,
389 struct timevar_time_def *total = &timevars[TV_TOTAL].elapsed; local
418 /* Don't print the total execution time here; that goes at the
442 (total->user == 0 ? 0 : tv->elapsed.user / total->user) * 100);
449 (total->sys == 0 ? 0 : tv->elapsed.sys / total->sys) * 100);
456 (total->wall == 0 ? 0 : tv->elapsed.wall / total->wall) * 100);
462 (total
495 print_time(const char *str, long total) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/tls/
H A Dopt-14.c19 int count, total = 0; local
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libgomp/config/linux/
H A Dbar.h36 /* Make sure total/generation is in a mostly read cacheline, while
38 unsigned total __attribute__((aligned (64))); member in struct:__anon6920
46 bar->total = count;
53 __sync_fetch_and_add (&bar->awaited, count - bar->total);
54 bar->total = count;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/config/i386/
H A Dnetware.c44 unsigned total = 0; local
71 total += parm_size;
82 total / BITS_PER_UNIT));
92 unsigned total = 0; local
117 total += parm_size;
122 if (nregs > total / BITS_PER_WORD)
123 nregs = total / BITS_PER_WORD;
/netbsd-6-1-5-RELEASE/lib/libc/db/recno/
H A Drec_search.c75 recno_t total; local
79 for (pg = P_ROOT, total = 0;;) {
84 t->bt_cur.index = recno - total;
89 if (++idx == top || total + r->nrecs > recno)
91 total += r->nrecs;
/netbsd-6-1-5-RELEASE/gnu/dist/gettext/gettext-tools/lib/
H A Drelocwrapper.c101 size_t total; local
110 total = 0;
112 total += strlen (libdirs[i]) + 1;
113 total += strlen (old_value) + 1;
115 value = (char *) malloc (total);
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/python/lib/gdb/command/
H A Dpretty_printers.py172 """Return a 2-tuple of number of enabled and total printers."""
174 total = 0
182 total += len(printer.subprinters)
186 total += 1
187 return (enabled, total)
191 """Return a 2-tuble of the enabled state and total number of all printers.
239 total = 0
250 total += 1
262 total += 1
278 total
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/lhash/
H A Dlh_stats.c117 unsigned long total=0,n_used=0; local
126 total+=num;
130 fprintf(out,"%lu items\n",total);
133 (int)(total/lh->num_nodes),
134 (int)((total%lh->num_nodes)*100/lh->num_nodes),
135 (int)(total/n_used),
136 (int)((total%n_used)*100/n_used));
226 unsigned long total=0,n_used=0; local
235 total+=num;
239 BIO_printf(out,"%lu items\n",total);
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/ntpd/
H A Dntp_signd.c67 size_t total = 0; local
70 if (n <= 0) return total;
73 total += n;
75 return total;
84 size_t total = 0; local
87 if (n <= 0) return total;
90 total += n;
92 return total;
/netbsd-6-1-5-RELEASE/games/mille/
H A Dmisc.c225 if (Player[PLAYER].total >= 5000 || Player[COMP].total >= 5000)
232 if (Player[PLAYER].total > Player[COMP].total)
234 else if (Player[PLAYER].total < Player[COMP].total)
236 Player[COMP].total = 0;
237 Player[PLAYER].total = 0;
/netbsd-6-1-5-RELEASE/games/backgammon/common_source/
H A Dodds.c72 int total; local
74 total = 0;
77 total += table[i][j];
78 return (total);
/netbsd-6-1-5-RELEASE/common/dist/zlib/contrib/dotzlib/DotZLib/
H A DInflater.cs60 int total = count;
64 while (err >= 0 && inputIndex < total)
66 copyInput(data, inputIndex, Math.Min(total - inputIndex, kBufferSize));
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/zlib/contrib/dotzlib/DotZLib/
H A DInflater.cs60 int total = count;
64 while (err >= 0 && inputIndex < total)
66 copyInput(data, inputIndex, Math.Min(total - inputIndex, kBufferSize));
/netbsd-6-1-5-RELEASE/lib/libc/stdio/
H A Dfread.c60 size_t total; local
76 total = resid;
87 return ((total - resid) / size);
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/common/
H A Dcgen-engine.h55 #define EXTRACT_MSB0_SINT(val, total, start, length) \
56 (((INT) (val) << ((sizeof (INT) * 8) - (total) + (start))) \
58 #define EXTRACT_MSB0_UINT(val, total, start, length) \
59 (((UINT) (val) << ((sizeof (UINT) * 8) - (total) + (start))) \
62 #define EXTRACT_LSB0_SINT(val, total, start, length) \
65 #define EXTRACT_LSB0_UINT(val, total, start, length) \
69 #define EXTRACT_MSB0_LGSINT(val, total, start, length) \
70 (((CGEN_INSN_LGSINT) (val) << ((sizeof (CGEN_INSN_LGSINT) * 8) - (total) + (start))) \
72 #define EXTRACT_MSB0_LGUINT(val, total, start, length) \
73 (((CGEN_INSN_UINT) (val) << ((sizeof (CGEN_INSN_LGUINT) * 8) - (total)
[all...]
/netbsd-6-1-5-RELEASE/sbin/fsck_v7fs/
H A Dinode.c48 int total; member in struct:ilistcheck_arg
127 arg->total++;
138 struct ilistcheck_arg arg = { .total = 0, .alloc = 0 };
143 int nfree = arg.total - arg.alloc;
146 pwarn("*** corrupt total freeinode. %d(sb) != %d(cnt)\n",
158 pwarn("\ninode usage: %d/%d (%d)\n", arg.alloc, arg.total, nfree);
/netbsd-6-1-5-RELEASE/gnu/dist/gettext/gettext-tools/examples/hello-csharp-forms/
H A Dhello.cs49 Size total = ComputePreferredSizeWithoutBorder();
50 LayoutControls(total.Width, total.Height);
51 ClientSize = new Size(border + total.Width + border, border + total.Height + border);
/netbsd-6-1-5-RELEASE/usr.sbin/rtsold/
H A Ddump.c109 sec2str(time_t total) argument
118 days = total / 3600 / 24;
119 hours = (total / 3600) % 24;
120 mins = (total / 60) % 60;
121 secs = total % 60;
/netbsd-6-1-5-RELEASE/usr.bin/m4/lib/
H A Dohash_do.c31 if (4 * h->deleted < h->total)
33 else if (3 * h->deleted > 2 * h->total)
64 h->total -= h->deleted;
81 if (h->deleted >= MINDELETED && 4 * h->deleted > h->total)
107 if (++h->total * 4 > h->size * 3)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/lm32/
H A Dlm32.c72 static bool lm32_rtx_costs (rtx x, int code, int outer_code, int *total,
454 /* Compute total frame size. */
904 lm32_rtx_costs (rtx x, int code, int outer_code, int *total, bool speed) argument
930 *total = COSTS_N_INSNS (LM32_NUM_REGS (mode));
932 *total =
940 *total = COSTS_N_INSNS (1);
942 *total = COSTS_N_INSNS (compare_latency);
947 *total = COSTS_N_INSNS (LM32_NUM_REGS (mode) * (2 + 3) / 2);
957 *total = COSTS_N_INSNS (1);
959 *total
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/i386/
H A Dnetware.c44 unsigned HOST_WIDE_INT total = 0; local
76 total += (parm_size + parm_boundary_bytes - 1)
83 prefix, old_str, total);
96 unsigned HOST_WIDE_INT total = 0; local
128 total += (parm_size + parm_boundary_bytes - 1)
133 if (nregs > total / UNITS_PER_WORD)
134 nregs = total / UNITS_PER_WORD;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/config/vax/
H A Dvax.c652 vax_rtx_costs (rtx x, int code, int outer_code, int *total)
668 *total = 0;
673 *total = ((unsigned HOST_WIDE_INT) ~INTVAL (x) <= 077) ? 1 : 2;
682 *total = 1;
690 *total = 3;
695 *total = vax_float_literal (x) ? 5 : 8;
697 *total = ((CONST_DOUBLE_HIGH (x) == 0
706 *total = 2;
710 *total = 3;
717 *total
648 vax_rtx_costs(rtx x, int code, int outer_code, int *total) argument
[all...]

Completed in 332 milliseconds

1234567891011>>