HomeSort by relevance Sort by last modified time
    Searched defs:ROUNDUP (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/usrsctp/usrsctplib/
user_recv_thread.c 69 #define ROUNDUP(a, size) (((a) & ((size)-1)) ? (1 + ((a) | ((size)-1))) : (a))
72 ((caddr_t) ap + (ap->sa_len ? ROUNDUP(ap->sa_len, sizeof (uint32_t)) : sizeof(uint32_t)))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/sys/
gmon.h 152 #define ROUNDUP(x,y) ((((x)+(y)-1)/(y))*(y))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
gmon.h 152 #define ROUNDUP(x,y) ((((x)+(y)-1)/(y))*(y))
  /external/chromium_org/third_party/icu/source/i18n/
decNumberLocal.h 106 /* ROUNDUP -- round an integer up to a multiple of n */
107 #define ROUNDUP(i, n) ((((i)+(n)-1)/n)*n)
330 #define DECPMAX9 (ROUNDUP(DECPMAX, 9)/9) /* 'Pmax' in 10**9s */
    [all...]
  /external/icu/icu4c/source/i18n/
decNumberLocal.h 106 /* ROUNDUP -- round an integer up to a multiple of n */
107 #define ROUNDUP(i, n) ((((i)+(n)-1)/n)*n)
330 #define DECPMAX9 (ROUNDUP(DECPMAX, 9)/9) /* 'Pmax' in 10**9s */
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmutils.h 620 #define ROUNDUP(x, y) ((((x) + ((y) - 1)) / (y)) * (y))
  /external/valgrind/main/helgrind/
libhb_core.c 411 #define ROUNDUP(a, N) ((a + N - 1) & ~(N-1))
    [all...]

Completed in 1324 milliseconds