Searched refs:base (Results 1 – 2 of 2) sorted by relevance
| /include/ |
| A D | libc-pointer-arith.h | 46 #define ALIGN_DOWN(base, size) ((base) & -((__typeof__ (base)) (size))) argument 53 #define ALIGN_UP(base, size) ALIGN_DOWN ((base) + (size) - 1, (size)) argument 56 #define PTR_ALIGN_DOWN(base, size) \ argument 57 ((__typeof__ (base)) ALIGN_DOWN ((uintptr_t) (base), (size))) 60 #define PTR_ALIGN_UP(base, size) \ argument 61 ((__typeof__ (base)) ALIGN_UP ((uintptr_t) (base), (size))) 64 #define PTR_IS_ALIGNED(base, size) \ argument 65 ((((uintptr_t) (base)) & (size - 1)) == 0)
|
| A D | time.h | 329 extern int __timespec_get64 (struct __timespec64 *ts, int base); 331 extern int __timespec_getres64 (struct __timespec64 *ts, int base);
|
Completed in 5 milliseconds