Searched refs:CEIL_DIV (Results 1 - 4 of 4) sorted by relevance

/barrelfish-2018-10-04/include/ahci/
H A Dahci_util.h31 #ifndef CEIL_DIV
32 #define CEIL_DIV(x, d) (((x) + ((d)-1)) / (d)) macro
/barrelfish-2018-10-04/lib/ahci/
H A Dahci_util.c164 size_t num_prds_needed = CEIL_DIV(buflen, PR_SIZE);
166 size_t num_prds_needed = CEIL_DIV(buflen, MAX_PR_SIZE);
H A Dahci.c422 num_prds = CEIL_DIV(buflen, PR_SIZE);
424 num_prds = CEIL_DIV(buflen, MAX_PR_SIZE);
/barrelfish-2018-10-04/lib/vfs/
H A Dvfs_fat.c68 #ifndef CEIL_DIV
69 #define CEIL_DIV(x, d) (((x) + ((d)-1)) / (d)) macro
1261 CEIL_DIV(fat_bpb_rtc_rd(&mount->bpb) * fat_direntry_size,

Completed in 52 milliseconds