author | twisti |
Wed, 11 Nov 2015 14:40:38 -1000 | |
changeset 34173 | 01bb07d23a5b |
parent 30830 | 9d3a0827accd |
permissions | -rw-r--r-- |
30830
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
1 |
abuf.byteLength = 4 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
2 |
Little endian? true |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
3 |
view[0] = 42 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
4 |
ba[0] = 42 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
5 |
ba[1] = 0 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
6 |
ba[2] = 0 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
7 |
ba[3] = 0 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
8 |
Little endian? false |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
9 |
view[0] = 42 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
10 |
ba[0] = 0 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
11 |
ba[1] = 0 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
12 |
ba[2] = 0 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
13 |
ba[3] = 42 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
14 |
Little endian? true |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
15 |
view[0] = 127 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
16 |
ba[0] = 127 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
17 |
ba[1] = 0 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
18 |
ba[2] = 0 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
19 |
ba[3] = 0 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
20 |
Little endian? false |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
21 |
view[0] = 127 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
22 |
ba[0] = 0 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
23 |
ba[1] = 0 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
24 |
ba[2] = 0 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
25 |
ba[3] = 127 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
26 |
Little endian? true |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
27 |
view[0] = 32767 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
28 |
ba[0] = -1 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
29 |
ba[1] = 127 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
30 |
ba[2] = 0 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
31 |
ba[3] = 0 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
32 |
Little endian? false |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
33 |
view[0] = 32767 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
34 |
ba[0] = 0 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
35 |
ba[1] = 0 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
36 |
ba[2] = 127 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
37 |
ba[3] = -1 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
38 |
Little endian? true |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
39 |
view[0] = 2147483647 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
40 |
ba[0] = -1 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
41 |
ba[1] = -1 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
42 |
ba[2] = -1 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
43 |
ba[3] = 127 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
44 |
Little endian? false |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
45 |
view[0] = 2147483647 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
46 |
ba[0] = 127 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
47 |
ba[1] = -1 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
48 |
ba[2] = -1 |
9d3a0827accd
8036743: need ArrayBuffer constructor with specified data
sundar
parents:
diff
changeset
|
49 |
ba[3] = -1 |