Home
last modified time | relevance | path

Searched refs:Int16Array (Results 1 – 25 of 46) sorted by relevance

12

/arkcompiler/ets_runtime/test/moduletest/typearray/
Dtypearray.js26 Int16Array,
213 Int16Array.apply(null, a6);
245 const v17 = new Int16Array(5);
246 const v20 = new Int16Array(5);
253 const v17 = new Int16Array(5);
254 const v20 = new Int16Array(5);
279 Atomics.or(v22, Int16Array, false);
303 const v5 = new Int16Array(true);
/arkcompiler/ets_runtime/ecmascript/ts_types/
Dlib_ark_builtins.d.ts1171 declare class Int16Array extends Object {
1182 prototype: Int16Array;
1184 constructor(length: number): Int16Array;
1186 constructor(array: ArrayLike<number> | ArrayBufferLike): Int16Array;
1188 constructor(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Int16Array;
1190 constructor(elements: Iterable<number>): Int16Array;
1192 constructor(): Int16Array;
1194 static of(...items: number[]): Int16Array;
1196 static from(arrayLike: ArrayLike<number>): Int16Array;
1198 …ic from<T>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => number, thisArg?: any): Int16Array;
[all …]
/arkcompiler/ets_runtime/test/aottest/aot_type_test/int16Array/
Dint16Array.ts18 let typedArray : Int16Array = new Int16Array([1, 2, 32760, -32760, 7, 8, 8, 9]);
/arkcompiler/ets_runtime/test/moduletest/typedarrayjoin/
Dtypedarrayjoin.js19 [Int16Array, [0, 1]],
48 [Int16Array, [0, 1]],
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/
DTypedArrays.ets1937 * JS Int16Array API-compatible class
1939 export final class Int16Array {
1943 * Creates an empty Int16Array.
1950 * Creates an Int16Array with respect to data, byteOffset and length.
1956 * @param length size of elements of type short in newly created Int16Array
1963 * Creates an Int16Array with respect to data, byteOffset and length.
1969 * @param length size of elements of type short in newly created Int16Array
1972 if (buf.getByteLength() % Int16Array.BYTES_PER_ELEMENT as int != 0) {
1973 …throw new RangeError("ArrayBuffer.byteLength should be multiple of 2 as Int16Array.BYTES_PER_ELEME…
1975 if (byteOffset % Int16Array.BYTES_PER_ELEMENT as int != 0) {
[all …]
DAtomics.ets181 // Int16Array
183 public static add(typedArray: Int16Array, index: int, value: short): short {
187 public static and(typedArray: Int16Array, index: int, value: short): short {
191 …public static compareExchange(typedArray: Int16Array, index: int, expectedValue: short, replacemen…
195 public static exchange(typedArray: Int16Array, index: int, value: short): short {
199 public static load(typedArray: Int16Array, index: int): short {
203 public static or(typedArray: Int16Array, index: int, value: short): short {
207 public static store(typedArray: Int16Array, index: int, value: short): short {
211 public static sub(typedArray: Int16Array, index: int, value: short): short {
215 public static xor(typedArray: Int16Array, index: int, value: short): short {
/arkcompiler/ets_runtime/test/aottest/ldobjbyname_typed_path/
Dexpect_output.txt43 Testing Int16Array:
45 - Int16Array.prototype.indexOf: 2
46 - Int16Array.prototype.join: 1 - 2 - 3
/arkcompiler/ets_runtime/test/aottest/tryldglobalbyname_global_object/
Dtryldglobalbyname_global_object.ts379 print(Int16Array);
380 globalThis.Int16Array = "Int16Array";
381 print(Int16Array);
382 delete globalThis.Int16Array;
384 print(Int16Array);
Dexpect_output.txt104 function Int16Array() { [native code] }
105 Int16Array
106 ReferenceError: Int16Array is not defined
/arkcompiler/ets_runtime/test/moduletest/typedarraysubarray/
Dtypedarraysubarray.js20 Int16Array,
/arkcompiler/ets_runtime/test/moduletest/getpropertybyindex/
Dgetpropertybyindex.js22 const v2 = new Int16Array(11);
/arkcompiler/ets_runtime/test/moduletest/typedarrayslice/
Dtypearrayslice.js20 Int16Array,
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_lazy_callback.h31 V(Int16Array) \
64 static JSTaggedValue Int16Array(JSThread *thread, const JSHandle<JSObject> &obj);
/arkcompiler/ets_frontend/ets2panda/linter/test/
Dfunction_spread_arg.ts46 let a9 = new Int16Array(10)
Dfor_stmts.ts103 const a9 = new Int16Array(10);
198 class MyInt16Array extends Int16Array {}
/arkcompiler/ets_frontend/ets2panda/linter-4.2/test/
Dfunction_spread_arg.ts46 let a9 = new Int16Array(10)
Dfor_stmts.ts103 const a9 = new Int16Array(10);
198 class MyInt16Array extends Int16Array {}
/arkcompiler/ets_runtime/test/moduletest/typedarraywith/
Dtypedarraywith.js27 Int16Array,
Dexpect_output.txt17 Int16Array test success !!!
/arkcompiler/ets_runtime/test/moduletest/forin/
Dforin.js94 var view = new Int16Array(3);
/arkcompiler/ets_runtime/test/moduletest/typedarraytosorted/
Dexpect_output.txt17 Int16Array test success !!!
Dtypedarraytosorted.js27 Int16Array,
/arkcompiler/ets_runtime/test/moduletest/typedarrayfindlast/
Dexpect_output.txt17 Int16Array test success !!!
/arkcompiler/ets_runtime/test/moduletest/typedarrayat/
Dexpect_output.txt17 Int16Array test success !!!
Dtypedarrayat.js26 Int16Array,

12