Lines Matching refs:bytestotal
134 double bytestotal = 0;
139 bytestotal = (double)fsinfo.cbSector * fsinfo.cSectorUnit * fsinfo.cUnit;
140 *space = bytestotal;
148 double bytestotal = 0;
161 bytestotal = (((double)buf.f_blocks) * ((double)buf.f_frsize));
163 bytestotal = (((double)buf.f_blocks) * ((double)buf.f_bsize));
171 bytestotal = (((double)buf.f_bsize) * ((double)buf.f_blocks));
174 *space = bytestotal;
185 double bytestotal; in PHP_FUNCTION() local
197 if (php_disk_total_space(path, &bytestotal) == SUCCESS) { in PHP_FUNCTION()
198 RETURN_DOUBLE(bytestotal); in PHP_FUNCTION()