HomeSort by relevance Sort by last modified time
    Searched refs:clz32 (Results 1 - 8 of 8) sorted by null

  /external/v8/test/mjsunit/es6/
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/v8/test/mjsunit/regress/
regress-347906.js 8 return Math.clz32(12.34);
  /external/valgrind/VEX/priv/
guest_generic_x87.c 566 static UInt clz32 ( UInt x ) function
592 return 32 - clz32((~x) & (x-1));
667 newECX = intRes2 == 0 ? 16 : (31 - clz32(intRes2));
735 newECX = intRes2 == 0 ? 8 : (31 - clz32(intRes2));
    [all...]
  /external/valgrind/none/tests/amd64/
pcmpstr64w.c 44 UInt clz32 ( UInt x ) function
70 return 32 - clz32((~x) & (x-1));
151 newECX = intRes2 == 0 ? 8 : (31 - clz32(intRes2));
    [all...]
pcmpstr64.c 42 UInt clz32 ( UInt x ) function
68 return 32 - clz32((~x) & (x-1));
149 newECX = intRes2 == 0 ? 16 : (31 - clz32(intRes2));
    [all...]
  /external/v8/src/
math.js 374 "clz32", MathClz32,
objects.h     [all...]
  /external/v8/test/webkit/fast/js/
Object-getOwnPropertyNames.js 92 "Math": "['E', 'LN10', 'LN2', 'LOG10E', 'LOG2E', 'PI', 'SQRT1_2', 'SQRT2', 'abs', 'acos', 'acosh', 'asin', 'asinh', 'atan', 'atan2', 'atanh', 'cbrt', 'ceil', 'clz32', 'cos', 'cosh', 'exp', 'expm1', 'floor', 'fround', 'hypot', 'imul', 'log', 'log10', 'log1p', 'log2', 'max', 'min', 'pow', 'random', 'round', 'sign', 'sin', 'sinh', 'sqrt', 'tan', 'tanh', 'trunc']",

Completed in 1487 milliseconds