HomeSort by relevance Sort by last modified time
    Searched refs:roundup (Results 1 - 25 of 28) 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 51 : mSize(roundup(size)), mOwn(shared == NULL),
69 return sizeof(Shared) + roundup(size);
80 : mSize(roundup(size)), mShared((Shared *) shared), mRear(0), mEnabled(mShared != NULL)
85 : mSize(roundup(size)), mShared(iMemory != 0 ? (Shared *) iMemory->pointer() : NULL),
275 : mSize(roundup(size)), mShared((const Shared *) shared), mFront(0)
280 : mSize(roundup(size)), mShared(iMemory != 0 ? (const Shared *) iMemory->pointer() : NULL),
MonoPipe.cpp 28 #include <media/nbaio/roundup.h>
37 mMaxFrames(roundup(reqFrames)),
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
param.h 55 # define roundup(x, y) (__builtin_constant_p (y) && powerof2 (y) \ macro
59 # define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y)) macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
param.h 55 # define roundup(x, y) (__builtin_constant_p (y) && powerof2 (y) \ macro
59 # define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y)) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
param.h 55 # define roundup(x, y) (__builtin_constant_p (y) && powerof2 (y) \ macro
59 # 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);
  /external/chromium_org/chrome/test/gpu/
gpu_feature_browsertest.cc 506 const int roundup = 64; local
507 // A few resize values assuming a roundup of 64 pixels. The test will resize
510 int offsets[] = { 1, roundup - 1, roundup, roundup + 1, 2*roundup};
525 bool expect_create = (old_width/roundup != new_width/roundup ||
  /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/openssh/
buffer.c 129 newlen = roundup(buffer->alloc + len, BUFFER_ALLOCSZ);
155 if (roundup(buffer->alloc + len, BUFFER_ALLOCSZ) <= BUFFER_MAX_LEN)
defines.h 435 #ifndef roundup
436 # define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) macro
kex.c 490 digest = xmalloc(roundup(need, mdsz));
sshconnect.c     [all...]
  /frameworks/av/media/libmedia/
Android.mk 59 LOCAL_SRC_FILES += ../libnbaio/roundup.c
AudioTrackShared.cpp 40 mFrameCountP2(roundup(frameCount)), mIsOut(isOut), mClientInServer(clientInServer),
  /external/kernel-headers/original/linux/
kernel.h 36 #define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y)) macro
  /frameworks/av/include/private/media/
AudioTrackShared.h 26 #include <media/nbaio/roundup.h>
  /external/elfutils/src/
strings.c 483 roundup (2 * min_len_bytes + 1, ps));
  /frameworks/av/services/audioflinger/
FastMixer.cpp 681 if (samplingN <= mSamplingN || samplingN > kSamplingN || roundup(samplingN) != samplingN) {
    [all...]

Completed in 2952 milliseconds

1 2