Searched refs:ROUNDUP (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython2/Python/ |
D | pyarena.c | 17 #define ROUNDUP(x) (((x) + ALIGNMENT_MASK) & ~ALIGNMENT_MASK) macro 89 b->ab_offset = ROUNDUP((Py_uintptr_t)(b->ab_mem)) - in block_new() 108 size = ROUNDUP(size); in block_alloc()
|
/external/openssh/ |
D | sshbuf.c | 253 rlen = ROUNDUP(buf->size, SSHBUF_SIZE_INC); in sshbuf_set_max_size() 342 rlen = ROUNDUP(buf->alloc + need, SSHBUF_SIZE_INC); in sshbuf_allocate()
|
D | misc.h | 148 #define ROUNDUP(x, y) ((((x)+((y)-1))/(y))*(y)) macro
|
D | kex.c | 897 if ((digest = calloc(1, ROUNDUP(need, mdsz))) == NULL) { in derive_key()
|
D | scp.c | 1345 size = ROUNDUP(stb.st_blksize, blksize);
|
D | sshconnect.c | 1405 size = ROUNDUP(strlen(password) + 1, 32); in ssh_put_password()
|
D | packet.c | 1080 out_blocks = ROUNDUP(outbound_packet_len, in ssh_packet_need_rekeying() 1208 ROUNDUP(state->extra_pad, block_size); in ssh_packet_send2_wrapped()
|
D | ChangeLog | 2495 Add MAXIMUM(), MINIMUM(), and ROUNDUP() to misc.h, then
|
/external/icu/icu4c/source/i18n/ |
D | decNumberLocal.h | 110 #define ROUNDUP(i, n) ((((i)+(n)-1)/n)*n) macro 333 #define DECPMAX9 (ROUNDUP(DECPMAX, 9)/9) /* 'Pmax' in 10**9s */
|
/external/python/cpython2/Objects/ |
D | obmalloc.c | 335 #undef ROUNDUP 336 #define ROUNDUP(x) (((x) + ALIGNMENT_MASK) & ~ALIGNMENT_MASK) macro 337 #define POOL_OVERHEAD ROUNDUP(sizeof(struct pool_header))
|
/external/valgrind/helgrind/ |
D | libhb_core.c | 421 #define ROUNDUP(a, N) ((a + N - 1) & ~(N-1)) macro 1706 return ROUNDUP(a, N_LINE_ARANGE); in cacheline_ROUNDUP() 6829 Addr BFC = ROUNDUP(BPC, N_LINE_ARANGE); in zsm_sset_range_noaccess() 6830 Addr FSM = ROUNDUP(BPC, N_SECMAP_ARANGE); in zsm_sset_range_noaccess()
|