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

  /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
  /bionic/libc/include/sys/
param.h 40 #define powerof2(x) ((((x)-1)&(x))==0) macro
  /external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/
TextureUtil.java 83 * @param powerOf2
85 public static void uploadTextureBitmap(final int target, Bitmap bitmap, boolean generateMips, boolean powerOf2)
87 if (!powerOf2)
120 boolean powerOf2){
125 uploadTextureBitmap(target, imageInfo.getBitmap(), generateMips, powerOf2);
OGLESShaderRenderer.java 102 private boolean powerOf2 = false;
354 powerOf2 = true;
    [all...]
  /bionic/libc/upstream-netbsd/libc/stdio/
getdelim.c 103 if (!powerof2(newlen)) {
  /external/elfutils/libasm/
asm_align.c 49 if (unlikely (! powerof2 (value)))
  /external/elfutils/libelf/
elf32_updatenull.c 294 if (unlikely (! powerof2 (data->d_align)))
347 if (unlikely (! powerof2 (shdr->sh_addralign))
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 36 Value *A = 0, *B = 0, *PowerOf2 = 0;
37 if (match(V, m_LShr(m_OneUse(m_Shl(m_Value(PowerOf2), m_Value(A))),
40 isKnownToBeAPowerOfTwo(PowerOf2)) {
42 return IC.Builder->CreateShl(PowerOf2, A);
    [all...]
  /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))
  /external/elfutils/src/
elflint.c     [all...]
ldgeneric.c     [all...]

Completed in 1571 milliseconds