HomeSort by relevance Sort by last modified time
    Searched full:powerof2 (Results 1 - 25 of 57) sorted by null

1 2 3

  /frameworks/av/media/libstagefright/webm/
EbmlUtil.cpp 49 uint64_t powerOf2 = highestOneBit(u);
50 return powerOf2 ? powerOf2 : 1;
76 uint64_t powerOf2 = _powerOf2(u);
77 if (u + 1 == powerOf2 << 1)
78 powerOf2 <<= 1;
79 int shiftWidth = (7 + numberOfTrailingZeros(powerOf2)) / 7 * 7;
95 uint64_t powerOf2 = _powerOf2(u);
96 int unsignedLength = numberOfTrailingZeros(powerOf2) / 8 + 1;
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/Include/
Common.h 233 template <class T> bool IsPow2(T powerOf2)
235 if (powerOf2 <= 0)
238 return (powerOf2 & (powerOf2 - 1)) == 0;
241 // Round number up to a multiple of the given powerOf2, which is not
243 template <class T> void RoundToPow2(T& number, int powerOf2)
245 assert(IsPow2(powerOf2));
246 number = (number + powerOf2 - 1) & ~(powerOf2 - 1);
249 template <class T> bool IsMultipleOfPow2(T number, int powerOf2)
    [all...]
  /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) \
71 #define powerof2(x) ((((x) - 1) & (x)) == 0) macro
  /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) \
72 #define powerof2(x) ((((x) - 1) & (x)) == 0) 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) \
72 #define powerof2(x) ((((x) - 1) & (x)) == 0) macro
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
getdelim.c 91 #define powerof2(x) ((((x)-1)&(x))==0) macro
92 if (!powerof2(newlen)) {
  /bionic/libc/include/sys/
param.h 46 #define powerof2(x) ((((x)-1)&(x))==0) macro
  /development/ndk/platforms/android-21/include/sys/
param.h 42 #define powerof2(x) ((((x)-1)&(x))==0) macro
  /prebuilts/ndk/r10/platforms/android-21/arch-arm/usr/include/sys/
param.h 42 #define powerof2(x) ((((x)-1)&(x))==0) macro
  /prebuilts/ndk/r10/platforms/android-21/arch-arm64/usr/include/sys/
param.h 42 #define powerof2(x) ((((x)-1)&(x))==0) macro
  /prebuilts/ndk/r10/platforms/android-21/arch-mips/usr/include/sys/
param.h 42 #define powerof2(x) ((((x)-1)&(x))==0) macro
  /prebuilts/ndk/r10/platforms/android-21/arch-mips64/usr/include/sys/
param.h 42 #define powerof2(x) ((((x)-1)&(x))==0) macro
  /prebuilts/ndk/r10/platforms/android-21/arch-x86/usr/include/sys/
param.h 42 #define powerof2(x) ((((x)-1)&(x))==0) macro
  /prebuilts/ndk/r10/platforms/android-21/arch-x86_64/usr/include/sys/
param.h 42 #define powerof2(x) ((((x)-1)&(x))==0) macro
  /prebuilts/ndk/r10/platforms/android-23/arch-arm/usr/include/sys/
param.h 42 #define powerof2(x) ((((x)-1)&(x))==0) macro
  /prebuilts/ndk/r10/platforms/android-23/arch-arm64/usr/include/sys/
param.h 42 #define powerof2(x) ((((x)-1)&(x))==0) macro
  /prebuilts/ndk/r10/platforms/android-23/arch-mips/usr/include/sys/
param.h 42 #define powerof2(x) ((((x)-1)&(x))==0) macro
  /prebuilts/ndk/r10/platforms/android-23/arch-mips64/usr/include/sys/
param.h 42 #define powerof2(x) ((((x)-1)&(x))==0) macro
  /prebuilts/ndk/r10/platforms/android-23/arch-x86/usr/include/sys/
param.h 42 #define powerof2(x) ((((x)-1)&(x))==0) macro
  /prebuilts/ndk/r10/platforms/android-23/arch-x86_64/usr/include/sys/
param.h 42 #define powerof2(x) ((((x)-1)&(x))==0) macro
  /prebuilts/ndk/r11/platforms/android-21/arch-arm/usr/include/sys/
param.h 42 #define powerof2(x) ((((x)-1)&(x))==0) macro
  /prebuilts/ndk/r11/platforms/android-21/arch-arm64/usr/include/sys/
param.h 42 #define powerof2(x) ((((x)-1)&(x))==0) macro
  /prebuilts/ndk/r11/platforms/android-21/arch-mips/usr/include/sys/
param.h 42 #define powerof2(x) ((((x)-1)&(x))==0) macro
  /prebuilts/ndk/r11/platforms/android-21/arch-mips64/usr/include/sys/
param.h 42 #define powerof2(x) ((((x)-1)&(x))==0) macro
  /prebuilts/ndk/r11/platforms/android-21/arch-x86/usr/include/sys/
param.h 42 #define powerof2(x) ((((x)-1)&(x))==0) macro

Completed in 1140 milliseconds

1 2 3