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

1 2 3

  /cts/apps/CtsVerifier/jni/audio_loopback/audio_utils/
roundup.h 25 unsigned roundup(unsigned v);
roundup.c 17 #include "roundup.h"
19 unsigned roundup(unsigned v) function
  /external/drrickorang/LoopbackApp/app/src/main/jni/audio_utils/
roundup.h 25 unsigned roundup(unsigned v);
roundup.c 17 #include "roundup.h"
19 unsigned roundup(unsigned v) { function
  /system/media/audio_utils/include/audio_utils/
roundup.h 25 unsigned roundup(unsigned v);
  /system/media/audio_utils/
roundup.c 17 #include <audio_utils/roundup.h>
19 unsigned roundup(unsigned v) function
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
Pipe.java 34 mMaxValues = Utilities.roundup(maxSamples); // round up to the nearest power of 2
Utilities.java 42 public static int roundup(int size) method in class:Utilities
  /external/valgrind/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)
  /cts/apps/CtsVerifier/jni/audio_loopback/
Android.mk 14 audio_utils/roundup.c
  /frameworks/av/media/libnbaio/
Pipe.cpp 24 #include <audio_utils/roundup.h>
30 // TODO fifo now supports non-power-of-2 buffer sizes, so could remove the roundup
31 mMaxFrames(roundup(maxFrames)),
MonoPipe.cpp 27 #include <audio_utils/roundup.h>
34 // TODO fifo now supports non-power-of-2 buffer sizes, so could remove the roundup
35 mMaxFrames(roundup(reqFrames)),
  /frameworks/av/services/audioflinger/
FastThreadDumpState.cpp 17 #include <audio_utils/roundup.h>
44 if (samplingN <= mSamplingN || samplingN > kSamplingN || roundup(samplingN) != samplingN) {
  /bionic/libc/include/sys/
param.h 45 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) macro
  /external/drrickorang/LoopbackApp/app/src/main/jni/
Android.mk 12 audio_utils/roundup.c
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
param.h 66 # define roundup(x, y) (__builtin_constant_p (y) && powerof2 (y) \ macro
70 # define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y)) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
param.h 66 # define roundup(x, y) (__builtin_constant_p (y) && powerof2 (y) \ macro
70 # define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y)) macro
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/wavelib/
PipeShort.java 35 mMaxValues = roundup(maxValues);
125 private static int roundup(int v) method in class:PipeShort
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_simulator_validate.h 45 #define roundup(x, y) align(x, y) macro
54 #define BITS_TO_LONGS(bits) (roundup(bits, BITMAP_WORDBITS) / \
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/route/
address.go 29 return l, roundup(l)
127 return sizeofSockaddrInet, roundup(sizeofSockaddrInet)
151 return sizeofSockaddrInet6, roundup(sizeofSockaddrInet6)
227 if l == 0 || len(b) > roundup(l) {
228 l = roundup(l)
231 l = roundup(l)
282 return l, roundup(l)
369 for i := uint(0); i < sysRTAX_MAX && len(b) >= roundup(0); i++ {
381 l := roundup(int(b[0]))
393 l := roundup(int(b[0])
    [all...]
sys.go 28 func roundup(l int) int { func
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/route/
address.go 29 return l, roundup(l)
127 return sizeofSockaddrInet, roundup(sizeofSockaddrInet)
151 return sizeofSockaddrInet6, roundup(sizeofSockaddrInet6)
227 if l == 0 || len(b) > roundup(l) {
228 l = roundup(l)
231 l = roundup(l)
282 return l, roundup(l)
369 for i := uint(0); i < sysRTAX_MAX && len(b) >= roundup(0); i++ {
381 l := roundup(int(b[0]))
393 l := roundup(int(b[0])
    [all...]
sys.go 28 func roundup(l int) int { func
  /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/ltp/testcases/kernel/mem/mmapstress/
mmapstress09.c 77 #ifdef roundup
78 #undef roundup macro
80 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) macro
219 mappages = roundup(mapsize, pagesize) / pagesize;

Completed in 544 milliseconds

1 2 3