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

  /external/v8/test/cctest/
test-simd.cc 21 CHECK(a->SameValueZero(*b)); \
28 CHECK(a->SameValueZero(*b)); \
33 CHECK(a->SameValueZero(*b)); \
37 CHECK(!a->SameValueZero(*b)); \
43 CHECK(a->SameValueZero(*b)); \
54 CHECK(a->SameValueZero(*b)); \
61 CHECK(!a->SameValueZero(*b)); \
66 CHECK(a->SameValueZero(*b)); \
71 CHECK(!a->SameValueZero(*b)); \
76 CHECK(a->SameValueZero(*b));
    [all...]
  /external/v8/test/mjsunit/
samevalue.js 30 // Test the SameValue and SameValueZero internal methods.
36 var sameValueZero = natives.ImportNow("SameValueZero");
38 // Calls SameValue and SameValueZero and checks that their results match.
41 assertTrue(result === sameValueZero(a, b));
45 // Calls SameValue and SameValueZero and checks that their results don't match.
47 var result = sameValueZero(a, b);
117 // SameValue considers -0 and +0 to be different; SameValueZero considers
  /external/v8/src/js/
runtime.js 70 function SameValueZero(x, y) {
178 to.SameValueZero = SameValueZero;
collection.js 152 // Even though we use SameValueZero as the comparison for the keys we don't
327 // Even though we use SameValueZero as the comparison for the keys we don't
prologue.js 192 "SameValueZero",
array.js 31 var SameValueZero;
47 SameValueZero = from.SameValueZero;
    [all...]
  /external/v8/test/mjsunit/es7/
typed-array-includes.js 187 // %TypedArray%.prototype.includes should use the SameValueZero algorithm to
array-includes.js 632 // Array.prototype.includes should use the SameValueZero algorithm to compare
  /external/v8/test/mjsunit/harmony/
simd.js 410 var sameValueZero = natives.ImportNow("SameValueZero");
415 assertFalse(sameValueZero(instance, other));
419 // sameValueZero, at every lane.
425 assertSame(sameValueZero(a, b), sameValueZero(aval, bval));
  /external/v8/src/runtime/
runtime-simd.cc 197 result = Float32x4::cast(*a)->SameValueZero(Float32x4::cast(b));
    [all...]
  /external/v8/src/
objects.h     [all...]
objects.cc     [all...]

Completed in 136 milliseconds