Home
last modified time | relevance | path

Searched refs:btotal (Results 1 – 25 of 137) sorted by relevance

123456

/dports/multimedia/camserv/camserv-0.5.1/common/
H A Dgrafxmisc.c26 double rtotal = 0, gtotal = 0, btotal = 0; in camserv_get_pic_mean() local
46 btotal += *cp++; in camserv_get_pic_mean()
51 bmean = btotal / area; in camserv_get_pic_mean()
85 int rtotal, gtotal, btotal, bwtotal; in camserv_get_pic_stddev() local
87 rtotal = gtotal = btotal = bwtotal = 0; in camserv_get_pic_stddev()
108 btotal += pow((unsigned char) *(cp + 2) - picmean, 2); in camserv_get_pic_stddev()
113 btotal /= width * height; in camserv_get_pic_stddev()
118 sqrt(btotal) * .114; in camserv_get_pic_stddev()
120 return (sqrt(rtotal) + sqrt(gtotal) + sqrt(btotal)) / 3; in camserv_get_pic_stddev()
/dports/sysutils/p5-Filesys-DiskFree/Filesys-DiskFree-0.06/
H A DDiskFree.pm137 my ($device,$btotal,$bused,$bavail,$iused,$iavail,$mount,
165 ($device,$btotal,$bused,$bavail,undef,$iused,$iavail,undef,$mount)=
168 $total=$btotal*512;
179 ($device,undef,$btotal,$bused,$bavail,undef,$mount)=split(' ',$line);
180 $total=$btotal*512;
184 ($device,undef,$btotal,$bused,$bavail,undef,$iused,$iavail,undef,$mount)=
193 ($device,$btotal,$bused,$bavail,undef,$iused,$iavail,undef,$mount)=
196 $total=$btotal*1024;
/dports/graphics/digikam/digikam-7.4.0/core/tests/miscs/
H A Donlinedownload_cli.cpp82 [=](qint64 brecv, qint64 btotal) in main()
84 if (btotal) in main()
86 …DIGIKAM_TESTS_LOG) << "Downloaded" << brecv << "/" << btotal << "bytes" << "(" << brecv*100/btotal in main()
/dports/comms/mlan3/mlan3-1.00/lib/userial/Link/
H A Dbeoslnk.c202 int btotal = 0; in ReadCOM() local
219 while ((btotal < inlen) && (!timepassed(curtime,endtime))) in ReadCOM()
221 if ((bread = read(ComID[portnum],inbuf,inlen-btotal)) > 0) in ReadCOM()
223 btotal += bread; in ReadCOM()
230 return(btotal); in ReadCOM()
235 return(btotal); in ReadCOM()
/dports/net/netatalk3/netatalk-3.1.12/etc/afpd/
H A Dquota.c70 *btotal = dbtob(ufsq[QUOTA_LIMIT_BLOCK].ufsqe_cur); in getfreespace()
75 *btotal = dbtob(ufsq[QUOTA_LIMIT_BLOCK].ufsqe_hardlimit); in getfreespace()
102 *btotal = gbtotal; in uquota_getvolspace()
106 *btotal = ubtotal; in uquota_getvolspace()
111 *btotal = ubtotal; in uquota_getvolspace()
114 *btotal = gbtotal; in uquota_getvolspace()
785 *btotal = *bfree = ~((VolSpace) 0);
788 *btotal = tobytes( dqblk.dqb_curblocks, this_bsize );
792 *btotal = tobytes( dqblk.dqb_bsoftlimit, this_bsize );
797 *btotal = tobytes( dqblk.dqb_bhardlimit, this_bsize );
[all …]
H A Dunix.c37 int ustatfs_getvolspace(const struct vol *vol, VolSpace *bfree, VolSpace *btotal, uint32_t *bsize) in ustatfs_getvolspace() argument
67 *btotal = (VolSpace) in ustatfs_getvolspace()
70 *btotal = (VolSpace) sfs.f_blocks; in ustatfs_getvolspace()
74 if ( *btotal > maxVolSpace / *bsize ) { in ustatfs_getvolspace()
75 *btotal = maxVolSpace; in ustatfs_getvolspace()
77 *btotal *= *bsize; in ustatfs_getvolspace()
H A Dvolume.c222 uint32_t *bfree, uint32_t *btotal, in getvolspace() argument
274 *btotal = MIN(*xbtotal, maxsize); in getvolspace()
307 uint32_t bfree, btotal, bsize; in getvolparams() local
350 if ( getvolspace(obj, vol, &bfree, &btotal, &xbfree, &xbtotal, in getvolparams()
450 btotal = htonl( btotal ); in getvolparams()
451 memcpy(data, &btotal, sizeof( btotal )); in getvolparams()
452 data += sizeof( btotal ); in getvolparams()
/dports/graphics/processing/processing-1.5.1/modes/android/examples/Topics/Image Processing/Convolution/
H A DConvolution.pde51 float btotal = 0.0;
64 btotal += (blue(img.pixels[loc]) * matrix[i][j]);
70 btotal = constrain(btotal,0,255);
72 return color(rtotal,gtotal,btotal);
/dports/graphics/processing/processing-1.5.1/modes/java/examples/Topics/Image Processing/Convolution/
H A DConvolution.pde51 float btotal = 0.0;
64 btotal += (blue(img.pixels[loc]) * matrix[i][j]);
70 btotal = constrain(btotal,0,255);
72 return color(rtotal,gtotal,btotal);
/dports/comms/limesuite/LimeSuite-20.10.0/LimeUtil/
H A DLimeUtil.cpp171 auto progCallback = [](int bsent, int btotal, const char* progressMsg) in programUpdate()
173 … printf("[%3i%%] %5i/%5i Bytes %s\r", int(100.0*bsent/btotal+0.5), bsent, btotal, progressMsg); in programUpdate()
224 auto progCallback = [](int bsent, int btotal, const char* progressMsg) in programGateware()
226 … printf("[%3i%%] %5i/%5i Bytes %s\r", int(100.0*bsent/btotal+0.5), bsent, btotal, progressMsg); in programGateware()
269 auto progCallback = [](int bsent, int btotal, const char* progressMsg) in programFirmware()
271 … printf("[%3i%%] %5i/%5i Bytes %s\r", int(100.0*bsent/btotal+0.5), bsent, btotal, progressMsg); in programFirmware()
/dports/lang/spidermonkey78/firefox-78.9.0/tools/bloatview/
H A Dbloatdiff.pl327 my $btotal = 0;
340 $btotal += $bloat;
345 printf "%-40s %10s %10s\n", ("TOTAL", $ltotal, $btotal);
352 $btotal = 0;
364 $btotal += $bloat;
369 printf "%-40s %10s %10s\n", ("TOTAL", $ltotal, $btotal);
/dports/lang/spidermonkey60/firefox-60.9.0/tools/bloatview/
H A Dbloatdiff.pl327 my $btotal = 0;
340 $btotal += $bloat;
345 printf "%-40s %10s %10s\n", ("TOTAL", $ltotal, $btotal);
352 $btotal = 0;
364 $btotal += $bloat;
369 printf "%-40s %10s %10s\n", ("TOTAL", $ltotal, $btotal);
/dports/mail/thunderbird/thunderbird-91.8.0/tools/bloatview/
H A Dbloatdiff.pl327 my $btotal = 0;
340 $btotal += $bloat;
345 printf "%-40s %10s %10s\n", ("TOTAL", $ltotal, $btotal);
352 $btotal = 0;
364 $btotal += $bloat;
369 printf "%-40s %10s %10s\n", ("TOTAL", $ltotal, $btotal);
/dports/www/firefox/firefox-99.0/tools/bloatview/
H A Dbloatdiff.pl327 my $btotal = 0;
340 $btotal += $bloat;
345 printf "%-40s %10s %10s\n", ("TOTAL", $ltotal, $btotal);
352 $btotal = 0;
364 $btotal += $bloat;
369 printf "%-40s %10s %10s\n", ("TOTAL", $ltotal, $btotal);
/dports/www/firefox-legacy/firefox-52.8.0esr/tools/bloatview/
H A Dbloatdiff.pl327 my $btotal = 0;
340 $btotal += $bloat;
345 printf "%-40s %10s %10s\n", ("TOTAL", $ltotal, $btotal);
352 $btotal = 0;
364 $btotal += $bloat;
369 printf "%-40s %10s %10s\n", ("TOTAL", $ltotal, $btotal);
/dports/www/firefox-esr/firefox-91.8.0/tools/bloatview/
H A Dbloatdiff.pl327 my $btotal = 0;
340 $btotal += $bloat;
345 printf "%-40s %10s %10s\n", ("TOTAL", $ltotal, $btotal);
352 $btotal = 0;
364 $btotal += $bloat;
369 printf "%-40s %10s %10s\n", ("TOTAL", $ltotal, $btotal);
/dports/cad/magic/magic-8.3.245/cif/
H A DCIFsee.c434 long long atotal, btotal; local
478 btotal = (long long)(area->r_xtop - area->r_xbot);
479 btotal *= (long long)(area->r_ytop - area->r_ybot);
480 btotal *= (long long)(scale * scale);
482 if (btotal > 0.0) fcover = (float)cstats.coverage / (float)btotal;
501 "Cell", btotal);
/dports/sysutils/gnome-system-monitor/gnome-system-monitor-41.0/src/
H A Ddisks.cpp44 guint64 *bused, guint64 *bfree, guint64 *bavail, guint64 *btotal, in fsusage_stats() argument
51 *btotal = *bfree = *bavail = *bused = 0ULL; in fsusage_stats()
55 *btotal = total; in fsusage_stats()
58 *bused = *btotal - *bfree; in fsusage_stats()
182 guint64 bused, bfree, bavail, btotal; in add_disk() local
193 fsusage_stats(&usage, &bused, &bfree, &bavail, &btotal, &percentage); in add_disk()
209 DISK_TOTAL, btotal, in add_disk()
/dports/graphics/netpbm/netpbm-10.91.01/converter/other/fiasco/output/
H A Dmc.c173 unsigned btotal = 0; /* #backward decisions */ in encode_mc_coords() local
208 btotal++; in encode_mc_coords()
234 "%d interpolated", ftotal, btotal, itotal); in encode_mc_coords()
241 unsigned total = ftotal * 2 + btotal * 2 + itotal * 4; in encode_mc_coords()
/dports/sysutils/mate-system-monitor/mate-system-monitor-1.26.0/src/
H A Ddisks.cpp49 guint64 *bused, guint64 *bfree, guint64 *bavail, guint64 *btotal, in fsusage_stats() argument
56 *btotal = *bfree = *bavail = *bused = 0ULL; in fsusage_stats()
60 *btotal = total; in fsusage_stats()
63 *bused = *btotal - *bfree; in fsusage_stats()
233 guint64 bused, bfree, bavail, btotal; in add_disk() local
247 fsusage_stats(&usage, &bused, &bfree, &bavail, &btotal, &percentage); in add_disk()
273 DISK_TOTAL, btotal, in add_disk()
/dports/finance/frontaccounting/frontaccounting/gl/
H A Dgl_budget.php103 $total = $btotal = $ltotal = 0; variable
117 $btotal += $d;
130 label_cell("<b>".number_format2($btotal, 0)."</b>", "nowrap align=right");
/dports/comms/limesuite/LimeSuite-20.10.0/src/LMS_Programing/
H A DLMS_Programing_wxgui.h41 static bool OnProgrammingCallback(int bsent, int btotal, const char* progressMsg);
42 static bool test(int bsent, int btotal, const char* progressMsg);
/dports/ftp/tnftpd/tnftpd-20200704/ls/
H A Dls.c422 ULLT btotal, maxblock, maxsize; in display() local
451 btotal = maxblock = maxsize = 0; in display()
499 btotal += sp->st_blocks; in display()
555 d.btotal = btotal; in display()
/dports/japanese/jls/ls/
H A Dls.c539 u_long btotal, maxblock, maxinode, maxlen, maxnlink; in display() local
564 btotal = 0; in display()
683 btotal += sp->st_blocks; in display()
746 d.btotal = btotal; in display()
/dports/ftp/bsdftpd-ssl/bsdftpd-ssl-1.1.0/contrib/ls/
H A Dls.c533 u_long btotal, labelstrlen, maxblock, maxinode, maxlen, maxnlink; in display() local
562 btotal = 0; in display()
684 btotal += sp->st_blocks; in display()
817 d.btotal = btotal; in display()

123456