Searched refs:clz32 (Results 1 – 15 of 15) sorted by relevance
/external/chromium_org/v8/test/mjsunit/es6/ |
D | math-clz32.js | 9 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/ |
D | host-utils.h | 59 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/ |
D | regress-347906.js | 8 return Math.clz32(12.34);
|
/external/valgrind/main/VEX/priv/ |
D | guest_generic_x87.c | 566 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/ |
D | cutils.c | 147 return 32 - clz32(i); in qemu_fls()
|
/external/valgrind/main/none/tests/amd64/ |
D | pcmpstr64w.c | 44 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()
|
D | pcmpstr64.c | 42 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/ |
D | Object-getOwnPropertyNames-expected.txt | 84 …os', 'acosh', 'asin', 'asinh', 'atan', 'atan2', 'atanh', 'cbrt', 'ceil', 'clz32', 'cos', 'cosh', '…
|
/external/qemu/hw/intc/ |
D | apic.c | 106 return 31 - clz32(value); in fls_bit()
|
/external/qemu/target-i386/ |
D | ops_sse.h | 2075 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()
|
D | translate.c | 70 # define clztl clz32
|
/external/qemu/target-arm/ |
D | helper.c | 581 return clz32(x); in HELPER()
|
/external/qemu/target-mips/ |
D | op_helper.c | 189 return clz32(arg1); in helper_clz()
|
/external/chromium_org/v8/src/ |
D | objects.h | 6560 V(Math, clz32, MathClz32) \
|
/external/chromium_org/v8/ |
D | ChangeLog | 1550 Fixed constant folding for Math.clz32 (Chromium issue 347906).
|