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

/u-boot/fs/zfs/
H A Dzfs.c79 * eg, P2ALIGN(1200, 1024) == 1024 (1*align)
80 * eg, P2ALIGN(1024, 1024) == 1024 (1*align)
81 * eg, P2ALIGN(0x1234, 0x100) == 0x1200 (0x12*align)
82 * eg, P2ALIGN(0x5600, 0x100) == 0x5600 (0x56*align)
84 #define P2ALIGN(x, align) ((x) & -(align)) macro
1917 P2ALIGN(device_size, (uint64_t) sizeof(vdev_label_t));

Completed in 41 milliseconds