blob: 7b0a7b01a41bfaf35e8f9fd9a1756d6dbaed1d75 [file] [log] [blame]
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
/// @assertion int offsetInBytes
/// Returns the offset in bytes into the underlying byte buffer of this view.
/// @description Checks that the returned offset is correct.
/// @author msyabro
import "dart:typed_data";
import "../../../Utils/expect.dart";
check(List<double> array, int offset, int length) {
var tmp = new Float64List.fromList(array);
var byteBuffer = tmp.buffer;
var l = new Float64List.view(byteBuffer, offset, length);
Expect.equals(offset, l.offsetInBytes);
}
main() {
var elemSize = Float64List.bytesPerElement;
check([], 0, 0);
check([1.0], 0, 1);
check([1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0], 0, 1);
check([1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0], 9 * elemSize, 1);
check([1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0], 5 * elemSize, 5);
}