void check()

in LibTest/typed_data/ByteBuffer/asFloat32x4List_A02_t01.dart [22:92]


void check(ByteBuffer buffer) {
  int bufSizeInBytes = buffer.lengthInBytes;
  // Float32List view of a byte buffer
  Float32x4List res = buffer.asFloat32x4List(0);
  int viewSizeInBytes = res.lengthInBytes;
  int viewLength = res.length;
  int shift = (Float32x4List.bytesPerElement == 16) ? 4 : 0;
  int offset1 = 16;
  int length1 = (viewSizeInBytes - offset1) >> shift;
  int offset2 = 32;

  // Float32List view of a byte buffer with offset1 and length1
  var res1 = buffer.asFloat32x4List(offset1, length1);
  int view1Length = res1.length;

  // Float32List view of a byte buffer with offset2
  var res2 = buffer.asFloat32x4List(offset2);
  int view2Length = res2.length;

  Expect.isTrue(res1 is Float32x4List);
  Expect.isTrue(res2 is Float32x4List);
  Expect.runtimeIsType<Float32x4List>(res1);
  Expect.runtimeIsType<Float32x4List>(res2);
  Expect.equals(length1, view1Length);
  Expect.equals((viewSizeInBytes - offset2) >> shift, view2Length);

  if (viewSizeInBytes != 0) {
    Float32x4 v1 = new Float32x4(2.0, 2.1, 2.2, 2.3);
    // set value to the first element of res1
    res1[0] = v1;
    Expect.equals(v1.x, res[offset1 >> shift].x);
    Expect.equals(v1.y, res[offset1 >> shift].y);
    Expect.equals(v1.z, res[offset1 >> shift].z);
    Expect.equals(v1.w, res[offset1 >> shift].w);

    Float32x4 v2 = new Float32x4(4.0, 4.1, 4.2, 4.3);
    //set value to the last element if res1
    res1[view1Length - 1] = v2;
    Expect.equals(v2.x, res[(offset1 >> shift) + view1Length - 1].x);
    Expect.equals(v2.y, res[(offset1 >> shift) + view1Length - 1].y);
    Expect.equals(v2.z, res[(offset1 >> shift) + view1Length - 1].z);
    Expect.equals(v2.w, res[(offset1 >> shift) + view1Length - 1].w);

    Float32x4 v3 = new Float32x4(3.0, 3.1, 3.2, 3.3);
    // set value to the first element of res2
    res2[0] = v3;
    Expect.equals(v3.x, res[offset2 >> shift].x);
    Expect.equals(v3.y, res[offset2 >> shift].y);
    Expect.equals(v3.z, res[offset2 >> shift].z);
    Expect.equals(v3.w, res[offset2 >> shift].w);

    Float32x4 v4 = new Float32x4(5.0, 5.1, 5.2, 5.3);
    // set value to the last element of res2
    res2[view2Length - 1] = v4;
    Expect.equals(v4.x, res[viewLength - 1].x);
    Expect.equals(v4.y, res[viewLength - 1].y);
    Expect.equals(v4.z, res[viewLength - 1].z);
    Expect.equals(v4.w, res[viewLength - 1].w);

    if (bufSizeInBytes != viewSizeInBytes) {
      ByteData resb = buffer.asByteData(0);
      int cv = 0;
      // checks that last 'bufSizeInBytes - viewSizeInBytes' bytes contain 0
      for (int i = viewSizeInBytes; i < bufSizeInBytes; i++) {
        int v = resb.getInt8(i);
        cv |= v;
      }
      Expect.equals(0, cv);
    }
  }
}