Searched refs:ss_bypass_nocache_bytes (Results 1 - 2 of 2) sorted by path

/macosx-10.10.1/BootCache-109/
H A DBootCache.h209 u_int ss_bypass_nocache_bytes; /* bytes missed by IOs we won't cache for next boot */ member in struct:BC_statistics
H A Dlibrary.c1085 fprintf(fp, " noncached bytes requested %-10u %3.0f%%\n", ss->ss_bypass_nocache_bytes + ss->ss_hit_nocache_bytes, ((float)(ss->ss_bypass_nocache_bytes + ss->ss_hit_nocache_bytes) / ss->ss_requested_bytes) * 100);
1086 if (ss->ss_bypass_nocache_bytes + ss->ss_hit_nocache_bytes > 0) {
1087 fprintf(fp, " noncached bytes hit %-10u %3.0f%%\n", ss->ss_hit_nocache_bytes, ((float)ss->ss_hit_nocache_bytes / (ss->ss_bypass_nocache_bytes + ss->ss_hit_nocache_bytes)) * 100);
1088 fprintf(fp, " noncached bytes missed %-10u %3.0f%%\n", ss->ss_bypass_nocache_bytes, ((float)ss->ss_bypass_nocache_bytes / (ss->ss_bypass_nocache_bytes + ss->ss_hit_nocache_bytes)) * 100);

Completed in 449 milliseconds