Lines Matching refs:lanes

25 function isValidSimdString(string, value, type, lanes) {  argument
36 if (laneStrings.length !== lanes)
38 for (var i = 0; i < lanes; i++) {
67 function TestConstructor(type, lanes) { argument
82 function TestType(type, lanes) { argument
95 function TestPrototype(type, lanes) { argument
105 function TestValueOf(type, lanes) { argument
116 function TestGet(type, lanes) { argument
127 function TestToBoolean(type, lanes) { argument
146 function TestToString(type, lanes) { argument
151 assertTrue(isValidSimdString(instance.toString(), instance, type, lanes))
153 isValidSimdString(Object(instance).toString(), instance, type, lanes))
155 simdFn.prototype.toString.call(instance), instance, type, lanes))
159 function TestToNumber(type, lanes) { argument
170 function TestCoercions(type, lanes) { argument
175 for (var i = 0; i < lanes; i++) {
328 function TestEquality(type, lanes) { argument
367 for (var i = 0; i < lanes; i++) {
406 function TestSameValue(type, lanes) { argument
421 for (var i = 0; i < lanes; i++) {
460 function TestComparison(type, lanes) { argument
492 function TestCall(type, lanes) { argument
502 function TestAsSetKey(type, lanes, set) { argument
526 function TestAsMapKey(type, lanes, map) { argument
584 lanes = lanesForType(type);
585 TestConstructor(type, lanes);
586 TestType(type, lanes);
587 TestPrototype(type, lanes);
588 TestValueOf(type, lanes);
589 TestGet(type, lanes);
590 TestToBoolean(type, lanes);
591 TestToString(type, lanes);
592 TestToNumber(type, lanes);
593 TestCoercions(type, lanes);
594 TestEquality(type, lanes);
595 TestSameValue(type, lanes);
596 TestComparison(type, lanes);
597 TestCall(type, lanes);
598 TestAsSetKey(type, lanes, new Set);
599 TestAsSetKey(type, lanes, new WeakSet);
600 TestAsMapKey(type, lanes, new Map);
601 TestAsMapKey(type, lanes, new WeakMap);