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

1234567891011>>

/netbsd-6-1-5-RELEASE/usr.bin/m4/lib/
H A Dohash_entries.c25 return h->total - h->deleted;
/netbsd-6-1-5-RELEASE/sys/arch/hpc/stand/libz/
H A Dzalloc.c37 size_t total = items * size; local
39 opaque = malloc(total);
41 memset(opaque, 0, total);
/netbsd-6-1-5-RELEASE/games/canfield/cfscores/
H A Dcfscores.c107 struct betinfo total; local
120 i = read(dbfd, &total, sizeof(total));
123 if (i == 0 || total.hand == 0) {
129 if (total.worth >= 0)
135 printf("| Hands %8ld |\n", total.hand);
136 printf("| Inspections %8ld |\n", total.inspection);
137 printf("| Games %8ld |\n", total.game);
138 printf("| Runs %8ld |\n", total.runs);
139 printf("| Information %8ld |\n", total
[all...]
/netbsd-6-1-5-RELEASE/usr.bin/cksum/
H A Dsum1.c53 off_t total; local
63 thecrc = total = 0;
65 for (total += nr, p = buf; nr--; ++p) {
74 *clen = total;
H A Dsum2.c54 off_t total; local
67 total = 0;
69 for (total += nr, p = buf; nr--; ++p)
78 *clen = total;
/netbsd-6-1-5-RELEASE/external/bsd/openldap/dist/libraries/liblutil/
H A Dfetch.c94 size_t total; local
106 total = 0;
109 char *newp = ber_memrealloc( p, total + bytes + 1 );
116 AC_MEMCPY( &p[total], buffer, bytes );
117 total += bytes;
122 if( total == 0 ) {
131 p[total] = '\0';
133 *vlenp = total;
/netbsd-6-1-5-RELEASE/sys/arch/ews4800mips/stand/common/
H A Dinckern.c42 int err, i, n, total, nulldata; local
46 total = 0;
54 total = strtoul(optarg, 0, 0);
58 if ((optarg == 0) || (total != 0) ||
74 fprintf(ofd, "%d];\n", total);
75 fprintf(ofd, "int kernel_binary_size = %d;\n", total);
84 total += n;
86 fprintf(ofd, "\n};\nint kernel_binary_size = %d;\n", total);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/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
22 float A[SIZE][SIZE], b[SIZE], c[SIZE], total; local
26 total = 0.0;
45 #pragma omp parallel shared(A,b,c,total) private(tid,i)
56 /* Update and display of running total must be serialized */
59 total = total + c[i];
61 printf("Running total= %.2f\n",total);
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
H A Daverage.c23 int total = 0, num_elements = 0, average = 0; local
24 total = sum(list, low, high);
27 average = total / num_elements;
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/testsuite/gdb.hp/gdb.compat/
H A Daverage.c23 int total = 0, num_elements = 0, average = 0; local
24 total = sum(list, low, high);
27 average = total / num_elements;
/netbsd-6-1-5-RELEASE/gnu/dist/gettext/gettext-tools/lib/
H A Dfull-write.c64 size_t total = 0; local
77 total += n_rw;
82 return total;
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/isc/win32/include/isc/
H A Dntgroups.h33 unsigned int *total);
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/lib/isc/win32/include/isc/
H A Dntgroups.h33 unsigned int *total);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/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...
/netbsd-6-1-5-RELEASE/sbin/newfs_v7fs/
H A Dnewfs_v7fs.h41 off_t total; member in struct:progress_arg
/netbsd-6-1-5-RELEASE/sys/netiso/xebec/
H A Dmalloc.c60 int total = x; local
66 total,total, bytesmalloced);
71 total,total, hiwat);
84 while( total ) {
85 x = MIN(CHUNKSIZE, total);
86 if(total != x) {
89 total,x, total
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/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
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/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;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/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
/netbsd-6-1-5-RELEASE/games/mille/
H A Dmille.c103 if (!restore || (Player[PLAYER].total >= 5000
104 || Player[COMP].total >= 5000)) {
105 if (Player[COMP].total < Player[PLAYER].total)
107 else if (Player[COMP].total > Player[PLAYER].total)
109 Player[COMP].total = 0;
110 Player[PLAYER].total = 0;
131 } while (Player[COMP].total < 5000
132 && Player[PLAYER].total < 500
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/cron/dist/
H A Dpw_dup.c59 size_t nsize, psize, gsize, dsize, ssize, total; local
66 total = sizeof(struct passwd);
69 total += nsize;
74 total += psize;
80 total += csize;
86 total += gsize;
91 total += dsize;
96 total += ssize;
99 if ((newpw = malloc(total)) == NULL)
/netbsd-6-1-5-RELEASE/external/bsd/flex/dist/tests/test-bison-nr/
H A Dparser.y46 int total =0;
48 total += (int) *s;
51 return total;
/netbsd-6-1-5-RELEASE/external/bsd/flex/dist/tests/test-bison-yylloc/
H A Dparser.y46 int total =0;
48 total += (int) *s;
51 return total;
/netbsd-6-1-5-RELEASE/external/bsd/flex/dist/tests/test-bison-yylval/
H A Dparser.y45 int total =0;
47 total += (int) *s;
50 return total;
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
H A Dnsusing.cc119 int total = 0; local
127 total = _a + b + c + d + marker2 (); // marker1 stop
131 return marker2 () + total;

Completed in 277 milliseconds

1234567891011>>