Home
last modified time | relevance | path

Searched refs:TestTypedArray (Results 1 – 2 of 2) sorted by relevance

/external/v8/test/mjsunit/harmony/
Dsharedarraybuffer.js90 function TestTypedArray(constr, elementSize, typicalElement) { class
215 TestTypedArray(Uint8Array, 1, 0xFF);
216 TestTypedArray(Int8Array, 1, -0x7F);
217 TestTypedArray(Uint16Array, 2, 0xFFFF);
218 TestTypedArray(Int16Array, 2, -0x7FFF);
219 TestTypedArray(Uint32Array, 4, 0xFFFFFFFF);
220 TestTypedArray(Int32Array, 4, -0x7FFFFFFF);
221 TestTypedArray(Float32Array, 4, 0.5);
222 TestTypedArray(Float64Array, 8, 0.5);
223 TestTypedArray(Uint8ClampedArray, 1, 0xFF);
/external/v8/test/mjsunit/es6/
Dtypedarray.js124 function TestTypedArray(constr, elementSize, typicalElement) { class
318 TestTypedArray(Uint8Array, 1, 0xFF);
319 TestTypedArray(Int8Array, 1, -0x7F);
320 TestTypedArray(Uint16Array, 2, 0xFFFF);
321 TestTypedArray(Int16Array, 2, -0x7FFF);
322 TestTypedArray(Uint32Array, 4, 0xFFFFFFFF);
323 TestTypedArray(Int32Array, 4, -0x7FFFFFFF);
324 TestTypedArray(Float32Array, 4, 0.5);
325 TestTypedArray(Float64Array, 8, 0.5);
326 TestTypedArray(Uint8ClampedArray, 1, 0xFF);