HomeSort by relevance Sort by last modified time
    Searched refs:Uint8Array (Results 1 - 25 of 98) sorted by null

1 2 3 4

  /external/v8/test/mjsunit/regress/
regress-4665.js 10 FirstBuffer.prototype.__proto__ = Uint8Array.prototype
11 FirstBuffer.__proto__ = Uint8Array
13 var buf = new Uint8Array(10)
22 var arr = new Uint8Array(arg)
26 SecondBuffer.prototype.__proto__ = Uint8Array.prototype
27 SecondBuffer.__proto__ = Uint8Array
regress-447756.js 22 [ Uint8Array, Int8Array, Uint8ClampedArray,
32 var a = new Uint8Array(-0);
39 var a1 = new Uint8Array(ab, -0, -0);
45 %OptimizeFunctionOnNextCall(Uint8Array);
regress-353004.js 9 var array1 = new Uint8Array(buffer1, {valueOf : function() {
19 var array2 = new Uint8Array(buffer2, 0, {valueOf : function() {
59 var array9 = new Uint8Array(buffer9);
68 var array11 = new Uint8Array(buffer11);
regress-357108.js 20 TestArray(Uint8Array);
  /external/v8/test/mjsunit/compiler/
regress-uint8-deopt.js 9 var a = new Uint8Array(heap);
  /external/v8/test/mjsunit/es6/
typedarray-proto.js 11 Uint8Array,
21 let TypedArray = Uint8Array.__proto__;
45 let typedArrayMethods = functionProperties(Uint8Array.prototype);
46 let typedArrayClassMethods = functionProperties(Uint8Array);
classes-maps.js 53 class Derived extends Uint8Array {
56 assertSame(Derived.__proto__, Uint8Array);
typed-array-iterator.js 6 var constructors = [Uint8Array, Int8Array,
12 var TypedArrayPrototype = Uint8Array.prototype.__proto__;
typedarray-from.js 6 Uint8Array,
119 assertEquals(constructor, Uint8Array.from.call(constructor, [1]).constructor);
120 assertEquals(Uint8Array, constructor.from.call(Uint8Array, [1]).constructor);
built-in-accessor-names.js 26 let TypedArray = Uint8Array.__proto__;
classes-experimental.js 214 class ExtendedUint8Array extends Uint8Array {
228 assertEquals("[object Uint8Array]", Object.prototype.toString.call(eua));
326 class ExtendedUint8Array extends Uint8Array { }
336 assertEquals("[object Uint8Array]", Object.prototype.toString.call(eua));
prototype-ordinary-objects.js 45 Uint8Array,
typedarray-fill.js 6 Uint8Array,
typedarray-reverse.js 11 Uint8Array,
  /external/v8/test/mjsunit/asm/
uint8array-outofbounds.js 7 var MEM8 = new stdlib.Uint8Array(heap);
atomics-add.js 12 var MEMU8 = new stdlib.Uint8Array(heap, offset);
65 var ui8 = new Uint8Array(sab);
89 testElementType(Uint8Array, m.addu8, offset);
atomics-and.js 12 var MEMU8 = new stdlib.Uint8Array(heap, offset);
65 var ui8 = new Uint8Array(sab);
90 testElementType(Uint8Array, m.andu8, offset);
atomics-compareexchange.js 12 var MEMU8 = new stdlib.Uint8Array(heap, offset);
71 var ui8 = new Uint8Array(sab);
97 testElementType(Uint8Array, m.compareExchangeu8, 0, offset);
atomics-exchange.js 12 var MEMU8 = new stdlib.Uint8Array(heap, offset);
68 var ui8 = new Uint8Array(sab);
91 testElementType(Uint8Array, m.exchangeu8, offset);
atomics-load.js 12 var MEMU8 = new stdlib.Uint8Array(heap, offset);
59 var ui8 = new Uint8Array(sab);
82 testElementType(Uint8Array, m.loadu8, 0, offset);
atomics-or.js 12 var MEMU8 = new stdlib.Uint8Array(heap, offset);
68 var ui8 = new Uint8Array(sab);
92 testElementType(Uint8Array, m.oru8, offset);
atomics-store.js 12 var MEMU8 = new stdlib.Uint8Array(heap, offset);
65 var ui8 = new Uint8Array(sab);
87 testElementType(Uint8Array, m.storeu8, 0, offset);
atomics-sub.js 12 var MEMU8 = new stdlib.Uint8Array(heap, offset);
65 var ui8 = new Uint8Array(sab);
90 testElementType(Uint8Array, m.subu8, offset);
atomics-xor.js 12 var MEMU8 = new stdlib.Uint8Array(heap, offset);
65 var ui8 = new Uint8Array(sab);
89 testElementType(Uint8Array, m.xoru8, offset);
  /external/v8/test/js-perf-test/Iterators/
forof.js 12 new Benchmark('Uint8Array', false, false, 0,
53 ForOfArraySetupHelper(Uint8Array);

Completed in 690 milliseconds

1 2 3 4