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

  /bionic/libc/include/sys/
param.h 40 #define powerof2(x) ((((x)-1)&(x))==0) macro
  /external/elfutils/bionic-fixup/
AndroidFixup.h 35 #ifndef powerof2
36 #define powerof2(x) (((x - 1) & (x)) == 0) macro
  /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) \
61 #define powerof2(x) ((((x) - 1) & (x)) == 0) 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) \
61 #define powerof2(x) ((((x) - 1) & (x)) == 0) 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) \
61 #define powerof2(x) ((((x) - 1) & (x)) == 0) macro
  /system/core/toolbox/
newfs_msdos.c 238 #define powerof2(x) ((((x) - 1) & (x)) == 0) macro
441 if (!powerof2(bpb.bps))
459 if (!powerof2(opt_b))
470 if (!powerof2(opt_c))

Completed in 5016 milliseconds