Searched refs:ROUNDUP (Results 1 - 6 of 6) sorted by relevance
/third_party/musl/src/malloc/oldmalloc/ |
H A D | malloc_impl.h | 72 #define ROUNDUP(a, b) (((a) + ((b) - 1)) & ~((b) - 1)) macro 73 #define SIZE_ALIGN ROUNDUP(sizeof(struct chunk), 0x10)
|
/third_party/musl/porting/liteos_a/user_debug/src/malloc/oldmalloc/ |
H A D | malloc_impl.h | 63 #define ROUNDUP(a, b) (((a) + ((b) - 1)) & ~((b) - 1)) macro 64 #define SIZE_ALIGN ROUNDUP(sizeof(struct chunk), 0x10)
|
/third_party/FreeBSD/sys/compat/linuxkpi/common/src/ |
H A D | adp.c | 264 size = ROUNDUP(size, PAGE_SIZE); in remap_pfn_range()
|
/third_party/icu/icu4c/source/i18n/ |
H A D | decNumberLocal.h | 109 /* ROUNDUP -- round an integer up to a multiple of n */ 110 #define ROUNDUP(i, n) ((((i)+(n)-1)/n)*n) macro 335 #define DECPMAX9 (ROUNDUP(DECPMAX, 9)/9) /* 'Pmax' in 10**9s */
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | decNumberLocal.h | 109 /* ROUNDUP -- round an integer up to a multiple of n */ 110 #define ROUNDUP(i, n) ((((i)+(n)-1)/n)*n) macro 335 #define DECPMAX9 (ROUNDUP(DECPMAX, 9)/9) /* 'Pmax' in 10**9s */
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | decNumberLocal.h | 109 /* ROUNDUP -- round an integer up to a multiple of n */ 110 #define ROUNDUP(i, n) ((((i)+(n)-1)/n)*n) macro 335 #define DECPMAX9 (ROUNDUP(DECPMAX, 9)/9) /* 'Pmax' in 10**9s */
|
Completed in 6 milliseconds