Home
last modified time | relevance | path

Searched refs:clz32 (Results 1 – 15 of 15) sorted by relevance

/external/chromium_org/v8/test/mjsunit/es6/
Dmath-clz32.js9 assertEquals(32, Math.clz32(x));
25 assertEquals(testclz(x), Math.clz32(x));
26 assertEquals(testclz(-x), Math.clz32(-x));
27 assertEquals(testclz(x), Math.clz32({ valueOf: function() { return x; } }));
29 Math.clz32({ toString: function() { return -x; } }));
/external/qemu/include/qemu/
Dhost-utils.h59 static inline int clz32(uint32_t val) in clz32() function
102 return clz32(~val); in clo32()
125 return cnt + clz32(val); in clz64()
307 # define clzl clz32
/external/chromium_org/v8/test/mjsunit/regress/
Dregress-347906.js8 return Math.clz32(12.34);
/external/valgrind/main/VEX/priv/
Dguest_generic_x87.c566 static UInt clz32 ( UInt x ) in clz32() function
592 return 32 - clz32((~x) & (x-1)); in ctz32()
667 newECX = intRes2 == 0 ? 16 : (31 - clz32(intRes2)); in compute_PCMPxSTRx_gen_output()
735 newECX = intRes2 == 0 ? 8 : (31 - clz32(intRes2)); in compute_PCMPxSTRx_gen_output_wide()
/external/qemu/util/
Dcutils.c147 return 32 - clz32(i); in qemu_fls()
/external/valgrind/main/none/tests/amd64/
Dpcmpstr64w.c44 UInt clz32 ( UInt x ) in clz32() function
70 return 32 - clz32((~x) & (x-1)); in ctz32()
151 newECX = intRes2 == 0 ? 8 : (31 - clz32(intRes2)); in PCMPxSTRx_WRK_gen_output_fmt_I_wide()
Dpcmpstr64.c42 UInt clz32 ( UInt x ) in clz32() function
68 return 32 - clz32((~x) & (x-1)); in ctz32()
149 newECX = intRes2 == 0 ? 16 : (31 - clz32(intRes2)); in pcmpXstrX_WRK_gen_output_fmt_I()
/external/chromium_org/v8/test/webkit/fast/js/
DObject-getOwnPropertyNames-expected.txt84 …os', 'acosh', 'asin', 'asinh', 'atan', 'atan2', 'atanh', 'cbrt', 'ceil', 'clz32', 'cos', 'cosh', '…
/external/qemu/hw/intc/
Dapic.c106 return 31 - clz32(value); in fls_bit()
/external/qemu/target-i386/
Dops_sse.h2075 env->regs[R_ECX] = (ctrl & (1 << 6)) ? 31 - clz32(res) : ctz32(res); in glue()
2113 env->regs[R_ECX] = (ctrl & (1 << 6)) ? 31 - clz32(res) : ctz32(res); in glue()
Dtranslate.c70 # define clztl clz32
/external/qemu/target-arm/
Dhelper.c581 return clz32(x); in HELPER()
/external/qemu/target-mips/
Dop_helper.c189 return clz32(arg1); in helper_clz()
/external/chromium_org/v8/src/
Dobjects.h6560 V(Math, clz32, MathClz32) \
/external/chromium_org/v8/
DChangeLog1550 Fixed constant folding for Math.clz32 (Chromium issue 347906).