Searched refs:__builtin_clz (Results 26 - 50 of 56) sorted by relevance

123

/external/libhevc/common/x86/
H A Dihevc_platform_macros.h77 return (__builtin_clz(u4_word));
/external/webp/src/utils/
H A Dutils.h85 return 31 ^ __builtin_clz(n);
/external/compiler-rt/lib/builtins/
H A Dfp_lib.h50 return __builtin_clz(a);
74 return __builtin_clz(a >> 32);
76 return 32 + __builtin_clz(a & REP_C(0xffffffff));
/external/chromium_org/ui/events/gesture_detection/
H A Dbitset_32.h107 static inline uint32_t clz(uint32_t v) { return __builtin_clz(v); }
/external/chromium_org/v8/src/base/
H A Dbits.h40 return value ? __builtin_clz(value) : 32;
/external/clang/lib/Headers/
H A Darm_acle.h41 return __builtin_clz(t);
/external/libhevc/common/arm/
H A Dihevc_platform_macros.h122 return (__builtin_clz(u4_word));
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dimports.h457 * undefined result from __builtin_clz. Undefined
467 return (1 + y) << ((__builtin_clz(x - y) ^ 31) );
512 return (31 - __builtin_clz(n | 1));
601 return n == 0 ? 0 : 32 - __builtin_clz(n);
/external/mesa3d/src/mesa/main/
H A Dimports.h455 * undefined result from __builtin_clz. Undefined
465 return (1 + y) << ((__builtin_clz(x - y) ^ 31) );
510 return (31 - __builtin_clz(n | 1));
599 return n == 0 ? 0 : 32 - __builtin_clz(n);
/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dfast_log.h30 return n == 0 ? -1 : 31 ^ __builtin_clz(n);
/external/chromium_org/third_party/skia/include/core/
H A DSkMath.h89 // __builtin_clz(0) is undefined, so we have to detect that case.
90 return mask ? __builtin_clz(mask) : 32;
/external/jemalloc/include/jemalloc/internal/
H A Dutil.h177 return (((8 << LG_SIZEOF_PTR) - 1) - __builtin_clz(x));
/external/libcxx/include/support/win32/
H A Dsupport.h197 _LIBCPP_ALWAYS_INLINE int __builtin_clz(unsigned int x) function
/external/qemu/include/qemu/
H A Dhost-utils.h62 return val ? __builtin_clz(val) : 32;
/external/skia/include/core/
H A DSkMath.h89 // __builtin_clz(0) is undefined, so we have to detect that case.
90 return mask ? __builtin_clz(mask) : 32;
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_math.h554 return ((sizeof(unsigned) * 8 - 1) - __builtin_clz(n | 1));
577 return (1 << ((sizeof(unsigned) * 8) - __builtin_clz(x - 1)));
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_math.h575 return ((sizeof(unsigned) * 8 - 1) - __builtin_clz(n | 1));
598 return (1 << ((sizeof(unsigned) * 8) - __builtin_clz(x - 1)));
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
H A Dnouveau_mm.c78 int s = __builtin_clz(size) ^ 31;
/external/chromium_org/v8/include/
H A Dv8config.h178 // V8_HAS_BUILTIN_CLZ - __builtin_clz() supported
214 # define V8_HAS_BUILTIN_CLZ (__has_builtin(__builtin_clz))
/external/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_mm.c78 int s = __builtin_clz(size) ^ 31;
/external/llvm/include/llvm/Support/
H A DMathExtras.h150 #if __has_builtin(__builtin_clz) || __GNUC_PREREQ(4, 0)
151 return __builtin_clz(Val);
214 // in the __builtin_clz intrinsic on x86.
/external/deqp/framework/delibs/debase/
H A DdeInt32.h276 return __builtin_clz((unsigned int)a);
/external/qemu/fpu/
H A Dsoftfloat-macros.h632 return __builtin_clz(a);
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-private.hh282 return likely (number) ? (sizeof (unsigned int) * 8 - __builtin_clz (number)) : 0;
/external/chromium_org/third_party/libjpeg_turbo/
H A Djchuff.c47 #define JPEG_NBITS_NONZERO(x) (32 - __builtin_clz(x))

Completed in 687 milliseconds

123