Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(151)

Unified Diff: runtime/lib/typed_data.dart

Issue 270743004: Refactor and improve code for pow. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/lib/typed_data.dart
===================================================================
--- runtime/lib/typed_data.dart (revision 35919)
+++ runtime/lib/typed_data.dart (working copy)
@@ -2329,12 +2329,10 @@
return _abs();
}
Float32x4 _abs() native "Float32x4_abs";
- Float32x4 clamp(Float32x4 lowerLimit,
- Float32x4 upperLimit) {
+ Float32x4 clamp(Float32x4 lowerLimit, Float32x4 upperLimit) {
return _clamp(lowerLimit, upperLimit);
}
- Float32x4 _clamp(Float32x4 lowerLimit,
- Float32x4 upperLimit)
+ Float32x4 _clamp(Float32x4 lowerLimit, Float32x4 upperLimit)
native "Float32x4_clamp";
double get x native "Float32x4_getX";
double get y native "Float32x4_getY";

Powered by Google App Engine
This is Rietveld 408576698