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

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/libbb/
H A Dfull_write.c20 ssize_t total; local
22 total = 0;
30 total += cc;
35 return total;
H A Dcopyfd.c22 off_t total = 0; local
54 total += rd;
65 return status ? -1 : total;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/scripts/
H A Dbin2c.c14 int ch, total=0; local
24 total++;
26 if (total % 16 == 0)
33 printf("\t;\n\nconst int %s_size = %d;\n", argv[1], total);
H A Dprofile2linkerlist.pl16 if ( ($line =~ /unknown/) || ($line =~ /total/)) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test_micro/
H A Dreport.awk4 total[$1] += $2
10 for (i in total) {
11 avg[i] = total[i] / count[i];
16 for (i in total) {
18 var = (sum[i] - ((total[i] * total[i]) / count[i])) / count[i];
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/lib/
H A Dinterfaces.c101 int total = 0; local
123 for (i=n-1;i>=0 && total < max_interfaces;i--) {
145 strncpy(ifaces[total].name, iname, sizeof(ifaces[total].name)-1);
146 ifaces[total].name[sizeof(ifaces[total].name)-1] = 0;
147 ifaces[total].ip = ipaddr;
148 ifaces[total].netmask = nmask;
149 total++;
154 return total;
174 int total = 0; local
266 int total = 0; local
363 int total, i, j; local
394 int total = get_interfaces(ifaces, MAX_INTERFACES); local
[all...]
H A Dsendfile.c39 size_t total=0; local
50 while (total < hdr_len) {
51 ret = sys_send(tofd, header->data + total,hdr_len - total, MSG_MORE);
54 total += ret;
58 total = count;
59 while (total) {
63 nwritten = sendfile64(tofd, fromfd, &offset, total);
65 nwritten = sendfile(tofd, fromfd, &offset, total);
84 total
105 size_t total=0; local
179 size_t total, xferred; local
264 size_t total=0; local
335 size_t total=0; local
407 size_t total=0; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dfull-write.c61 size_t total = 0; local
74 total += n_rw;
79 return total;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/scripts/
H A Dautopppd22 my ($total) = @_;
24 my $seconds = $total % 60; $total = ($total - $seconds)/60;
25 my $minutes = $total % 60; $total = ($total - $minutes)/60;
26 my $hours = $total % 24; $total = ($total
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/mp/
H A Dmp_trickle.c54 u_int32_t clean, dirty, i, need_clean, total, dtmp, wrote; local
71 * Loop through the caches counting total/dirty buffers.
79 for (ret = 0, i = dirty = total = 0; i < mp->nreg; ++i) {
81 total += c_mp->stat.st_pages;
90 if (total == 0 || dirty == 0)
94 * The total number of pages is an exact number, but the dirty page
96 * even possible the dirty page count ends up larger than the total
99 clean = total > dirty ? total - dirty : 0;
100 need_clean = (total * (u_in
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/tests/libtest/
H A Dlib556.c77 size_t total=0; local
92 total += iolen;
94 } while(((res == CURLE_OK) || (res == CURLE_AGAIN)) && (total < 129));
H A Dlib553.c35 static size_t total=POSTLEN; local
42 if (size > total)
43 size = total;
49 total -= size;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/mm/
H A Dpgtable.c8 int pfn, total = 0, reserved = 0; local
21 total++;
31 printk("%d pages of RAM\n", total);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/src/
H A Dtool_cb_prg.c59 curl_off_t total = (curl_off_t)dltotal + (curl_off_t)ultotal + local
66 if(point > total)
67 /* we have got more than the expected total! */
68 total = point;
73 if(total < 1) {
82 frac = (double)point / (double)total;
112 * it can display progress towards total file
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/torture/
H A Dmangle_test.c27 static unsigned total, collisions, failures; variable
37 total++;
93 name, data.dptr, shortname, collisions, total);
198 if (total && total % 100 == 0) {
200 collisions, total, (100.0*collisions) / total, failures);
211 collisions, total, (100.0*collisions) / total, failures);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/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...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/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...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/util-linux/
H A Dreadprofile.c53 unsigned int *buf, total, fn_len; local
136 total = 0;
169 if ((*mode == 'A' || *mode == '?') && total == 0) continue;
188 total += this;
192 printf(" total\t\t\t\t%u\n", this);
228 0, "total", total, total/(double)(fn_add-add0));
231 total, "total", tota
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ntfs-3g-2009.3.8/libntfs-3g/
H A Ddevice.c178 s64 br, total; local
192 for (total = 0; count; count -= br, total += br) {
193 br = dops->pread(dev, (char*)b + total, count, pos + total);
198 if (!br || total)
199 return total;
204 return total;
229 s64 written, total, ret = -1; local
248 for (total
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/boot/simple/
H A Dmpc10x_memory.c63 unsigned long start, end, total, offset; local
78 total = 0;
104 total += (end - start + 1);
108 return total;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/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));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/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));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/tx4927/common/
H A Dtx4927_prom.c136 unsigned int total; local
143 total = c0 + c1 + c2 + c3;
145 return (total);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/tx4938/common/
H A Dprom.c119 unsigned int total; local
126 total = c0 + c1 + c2 + c3;
128 return (total);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/smbd/
H A Dvfs.c418 size_t total=0; local
420 while (total < byte_count)
422 ssize_t ret = SMB_VFS_READ(fsp, fsp->fd, buf + total,
423 byte_count - total);
425 if (ret == 0) return total;
432 total += ret;
434 return (ssize_t)total;
440 size_t total=0; local
442 while (total < byte_count)
444 ssize_t ret = SMB_VFS_PREAD(fsp, fsp->fd, buf + total,
465 size_t total=0; local
491 SMB_BIG_UINT total=0; local
[all...]

Completed in 150 milliseconds

1234567891011>>