| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // Library tag to be able to run in html test framework. | 5 // Library tag to be able to run in html test framework. |
| 6 library float32x4_test; | 6 library float32x4_test; |
| 7 | 7 |
| 8 import 'dart:scalarlist'; | 8 import 'dart:typeddata'; |
| 9 | 9 |
| 10 testAdd() { | 10 testAdd() { |
| 11 var m = new Float32x4(-1.0, -2.0, -3.0, -4.0); | 11 var m = new Float32x4(-1.0, -2.0, -3.0, -4.0); |
| 12 var n = new Float32x4(1.0, 2.0, 3.0, 4.0); | 12 var n = new Float32x4(1.0, 2.0, 3.0, 4.0); |
| 13 var o = m + n; | 13 var o = m + n; |
| 14 Expect.equals(0.0, o.x); | 14 Expect.equals(0.0, o.x); |
| 15 Expect.equals(0.0, o.y); | 15 Expect.equals(0.0, o.y); |
| 16 Expect.equals(0.0, o.z); | 16 Expect.equals(0.0, o.z); |
| 17 Expect.equals(0.0, o.w); | 17 Expect.equals(0.0, o.w); |
| 18 } | 18 } |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 Expect.equals(4.0, f.w); | 344 Expect.equals(4.0, f.w); |
| 345 var m = new Uint32x4.bool(false, true, true, false); | 345 var m = new Uint32x4.bool(false, true, true, false); |
| 346 Expect.equals(false, m.flagX); | 346 Expect.equals(false, m.flagX); |
| 347 Expect.equals(true, m.flagY); | 347 Expect.equals(true, m.flagY); |
| 348 Expect.equals(true, m.flagZ); | 348 Expect.equals(true, m.flagZ); |
| 349 Expect.equals(false, m.flagW); | 349 Expect.equals(false, m.flagW); |
| 350 } | 350 } |
| 351 | 351 |
| 352 main() { | 352 main() { |
| 353 for (int i = 0; i < 3000; i++) { | 353 for (int i = 0; i < 3000; i++) { |
| 354 testAdd(); |
| 354 testGetters(); | 355 testGetters(); |
| 355 testSetters(); | 356 testSetters(); |
| 356 testBitOperators(); | 357 testBitOperators(); |
| 357 testConversions(); | 358 testConversions(); |
| 358 testSelect(); | 359 testSelect(); |
| 359 testShuffle(); | 360 testShuffle(); |
| 360 testAdd(); | |
| 361 testSub(); | 361 testSub(); |
| 362 testNegate(); | 362 testNegate(); |
| 363 testMul(); | 363 testMul(); |
| 364 testDiv(); | 364 testDiv(); |
| 365 testComparison(); | 365 testComparison(); |
| 366 testScale(); | 366 testScale(); |
| 367 testClamp(); | 367 testClamp(); |
| 368 testAbs(); | 368 testAbs(); |
| 369 testMin(); | 369 testMin(); |
| 370 testMax(); | 370 testMax(); |
| 371 testSqrt(); | 371 testSqrt(); |
| 372 testReciprocal(); | 372 testReciprocal(); |
| 373 testReciprocalSqrt(); | 373 testReciprocalSqrt(); |
| 374 } | 374 } |
| 375 } | 375 } |
| OLD | NEW |