HomeSort by relevance Sort by last modified time
    Searched refs:roundup (Results 1 - 25 of 34) sorted by null

1 2

  /frameworks/av/include/media/nbaio/
roundup.h 25 unsigned roundup(unsigned v);
NBLog.h 24 #include <media/nbaio/roundup.h>
  /frameworks/av/media/libnbaio/
roundup.c 17 #include <media/nbaio/roundup.h>
19 unsigned roundup(unsigned v) function
Pipe.cpp 24 #include <media/nbaio/roundup.h>
30 mMaxFrames(roundup(maxFrames)),
Android.mk 14 roundup.c \
NBLog.cpp 52 : mSize(roundup(size)), mOwn(shared == NULL),
70 return sizeof(Shared) + roundup(size);
81 : mSize(roundup(size)), mShared((Shared *) shared), mRear(0), mEnabled(mShared != NULL)
86 : mSize(roundup(size)), mShared(iMemory != 0 ? (Shared *) iMemory->pointer() : NULL),
276 : mSize(roundup(size)), mShared((const Shared *) shared), mFront(0)
281 : mSize(roundup(size)), mShared(iMemory != 0 ? (const Shared *) iMemory->pointer() : NULL),
MonoPipe.cpp 30 #include <media/nbaio/roundup.h>
56 mMaxFrames(roundup(reqFrames)),
  /external/valgrind/main/memcheck/tests/amd64/
insn-pcmpistri.c 40 const size_t roundup = ((len+15)/16)*16; local
44 posix_memalign(&space, 16, roundup);
45 memset(space, 'x', roundup);
53 for (i=len ; i < roundup ; ++i)
  /bionic/libc/include/sys/
param.h 41 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) macro
  /development/ndk/platforms/android-L/include/sys/
param.h 41 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) macro
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/sys/
param.h 41 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) macro
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/sys/
param.h 41 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) macro
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/sys/
param.h 41 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) macro
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/sys/
param.h 41 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) macro
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/sys/
param.h 41 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) macro
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/sys/
param.h 41 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/sys/
param.h 65 # define roundup(x, y) (__builtin_constant_p (y) && powerof2 (y) \ macro
69 # define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y)) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
param.h 65 # define roundup(x, y) (__builtin_constant_p (y) && powerof2 (y) \ macro
69 # define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y)) macro
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
vsnprintf.c 44 #ifndef roundup
45 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) macro
74 e = (char *)roundup((unsigned long)e, pgsize);
  /external/mesa3d/src/mesa/main/
vsnprintf.c 44 #ifndef roundup
45 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) macro
74 e = (char *)roundup((unsigned long)e, pgsize);
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
hdtoa.c 49 roundup(char *s0, int ndigits) function
82 adjust = roundup(s0, ndigits);
86 adjust = roundup(s0, ndigits);
90 adjust = roundup(s0, ndigits);
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
low_level_alloc.cc 189 // pagesize, roundup, min_size
194 size_t roundup; // lowest power of 2 >= max(16,sizeof (AllocList)) member in struct:LowLevelAlloc::Arena
267 arena->roundup = 16;
268 while (arena->roundup < sizeof (arena->freelist.header)) {
269 arena->roundup += arena->roundup;
271 // Don't allocate blocks less than twice the roundup size to avoid tiny
273 arena->min_size = 2 * arena->roundup;
352 static intptr_t RoundUp(intptr_t addr, intptr_t align) {
441 size_t req_rnd = RoundUp(request + sizeof (s->header), arena->roundup)
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
low_level_alloc.cc 189 // pagesize, roundup, min_size
194 size_t roundup; // lowest power of 2 >= max(16,sizeof (AllocList)) member in struct:LowLevelAlloc::Arena
267 arena->roundup = 16;
268 while (arena->roundup < sizeof (arena->freelist.header)) {
269 arena->roundup += arena->roundup;
271 // Don't allocate blocks less than twice the roundup size to avoid tiny
273 arena->min_size = 2 * arena->roundup;
352 static intptr_t RoundUp(intptr_t addr, intptr_t align) {
441 size_t req_rnd = RoundUp(request + sizeof (s->header), arena->roundup)
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/include/linux/
kernel.h 49 #ifndef roundup
50 #define roundup(x, y) ( \ macro
  /frameworks/av/media/libmedia/
Android.mk 65 LOCAL_SRC_FILES += ../libnbaio/roundup.c

Completed in 660 milliseconds

1 2