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

/external/python/cpython2/Python/
H A Dpyarena.c17 #define ROUNDUP(x) (((x) + ALIGNMENT_MASK) & ~ALIGNMENT_MASK) macro
89 b->ab_offset = ROUNDUP((Py_uintptr_t)(b->ab_mem)) -
108 size = ROUNDUP(size);
/external/openssh/
H A Dmisc.h148 #define ROUNDUP(x, y) ((((x)+((y)-1))/(y))*(y)) macro
H A Dsshbuf.c253 rlen = ROUNDUP(buf->size, SSHBUF_SIZE_INC);
342 rlen = ROUNDUP(buf->alloc + need, SSHBUF_SIZE_INC);
H A Dkex.c897 if ((digest = calloc(1, ROUNDUP(need, mdsz))) == NULL) {
H A Dsshconnect.c1405 size = ROUNDUP(strlen(password) + 1, 32);
H A Dpacket.c1080 out_blocks = ROUNDUP(outbound_packet_len,
1208 ROUNDUP(state->extra_pad, block_size);
/external/python/cpython2/Objects/
H A Dobmalloc.c335 #undef ROUNDUP macro
336 #define ROUNDUP(x) (((x) + ALIGNMENT_MASK) & ~ALIGNMENT_MASK) macro
337 #define POOL_OVERHEAD ROUNDUP(sizeof(struct pool_header))
/external/icu/icu4c/source/i18n/
H A DdecNumberLocal.h109 /* ROUNDUP -- round an integer up to a multiple of n */
110 #define ROUNDUP(i, n) ((((i)+(n)-1)/n)*n) macro
333 #define DECPMAX9 (ROUNDUP(DECPMAX, 9)/9) /* 'Pmax' in 10**9s */
/external/valgrind/helgrind/
H A Dlibhb_core.c421 #define ROUNDUP(a, N) ((a + N - 1) & ~(N-1)) macro
1706 return ROUNDUP(a, N_LINE_ARANGE);
6829 Addr BFC = ROUNDUP(BPC, N_LINE_ARANGE);
6830 Addr FSM = ROUNDUP(BPC, N_SECMAP_ARANGE);

Completed in 939 milliseconds