blob: b77b656853a241092dfa21c32d9d334193127ec9 [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 getInt16(int byteOffset, [Endianness endian = Endianness.BIG_ENDIAN])
* Returns the (possibly negative) integer represented by the two bytes at
* the specified [byteOffset] in this object, in two's complement binary
* form. The return value will be between 2<sup>15</sup> and 2<sup>15</sup> - 1,
* inclusive.
* @description Checks that the correct value is returned.
* @author msyabro
*/
import "dart:typed_data";
import "../../../Utils/expect.dart";
main() {
var i16 = new Int16List.fromList([0, -1, 32767, -32768, 12, 54, 100, -23, 98, 23, 43, -15, -3]);
var u32 = new Uint32List.fromList([0x62e7a17b, 0xf7ec7100, 0xe7180101, 0x1f83ccbb]);
var byteDataFromI16 = new ByteData.view(i16.buffer);
for(int i = 0; i < byteDataFromI16.lengthInBytes / Int16List.BYTES_PER_ELEMENT; ++i) {
Expect.equals(i16[i], byteDataFromI16.getInt16(i*Int16List.BYTES_PER_ELEMENT, Endianness.LITTLE_ENDIAN));
}
var byteDataFromU32 = new ByteData.view(u32.buffer);
var expectedBigEndian = [31649, -6302, 113, -4873, 257, 6375, -17460, -31969];
var expectedLittleEndian = [-24197, 25319, 28928, -2068, 257, -6376, -13125, 8067];
for(int i = 0; i < byteDataFromU32.lengthInBytes / Int16List.BYTES_PER_ELEMENT; ++i) {
Expect.equals(expectedBigEndian[i], byteDataFromU32.getInt16(i*Int16List.BYTES_PER_ELEMENT, Endianness.BIG_ENDIAN));
Expect.equals(expectedLittleEndian[i], byteDataFromU32.getInt16(i*Int16List.BYTES_PER_ELEMENT, Endianness.LITTLE_ENDIAN));
}
}