Searched refs:Int16Array (Results 1 – 25 of 46) sorted by relevance
12
| /arkcompiler/ets_runtime/test/moduletest/typearray/ |
| D | typearray.js | 26 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/ |
| D | lib_ark_builtins.d.ts | 1171 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/ |
| D | int16Array.ts | 18 let typedArray : Int16Array = new Int16Array([1, 2, 32760, -32760, 7, 8, 8, 9]);
|
| /arkcompiler/ets_runtime/test/moduletest/typedarrayjoin/ |
| D | typedarrayjoin.js | 19 [Int16Array, [0, 1]], 48 [Int16Array, [0, 1]],
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/ |
| D | TypedArrays.ets | 1937 * 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 …]
|
| D | Atomics.ets | 181 // 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/ |
| D | expect_output.txt | 43 Testing Int16Array: 45 - Int16Array.prototype.indexOf: 2 46 - Int16Array.prototype.join: 1 - 2 - 3
|
| /arkcompiler/ets_runtime/test/aottest/tryldglobalbyname_global_object/ |
| D | tryldglobalbyname_global_object.ts | 379 print(Int16Array); 380 globalThis.Int16Array = "Int16Array"; 381 print(Int16Array); 382 delete globalThis.Int16Array; 384 print(Int16Array);
|
| D | expect_output.txt | 104 function Int16Array() { [native code] } 105 Int16Array 106 ReferenceError: Int16Array is not defined
|
| /arkcompiler/ets_runtime/test/moduletest/typedarraysubarray/ |
| D | typedarraysubarray.js | 20 Int16Array,
|
| /arkcompiler/ets_runtime/test/moduletest/getpropertybyindex/ |
| D | getpropertybyindex.js | 22 const v2 = new Int16Array(11);
|
| /arkcompiler/ets_runtime/test/moduletest/typedarrayslice/ |
| D | typearrayslice.js | 20 Int16Array,
|
| /arkcompiler/ets_runtime/ecmascript/builtins/ |
| D | builtins_lazy_callback.h | 31 V(Int16Array) \ 64 static JSTaggedValue Int16Array(JSThread *thread, const JSHandle<JSObject> &obj);
|
| /arkcompiler/ets_frontend/ets2panda/linter/test/ |
| D | function_spread_arg.ts | 46 let a9 = new Int16Array(10)
|
| D | for_stmts.ts | 103 const a9 = new Int16Array(10); 198 class MyInt16Array extends Int16Array {}
|
| /arkcompiler/ets_frontend/ets2panda/linter-4.2/test/ |
| D | function_spread_arg.ts | 46 let a9 = new Int16Array(10)
|
| D | for_stmts.ts | 103 const a9 = new Int16Array(10); 198 class MyInt16Array extends Int16Array {}
|
| /arkcompiler/ets_runtime/test/moduletest/typedarraywith/ |
| D | typedarraywith.js | 27 Int16Array,
|
| D | expect_output.txt | 17 Int16Array test success !!!
|
| /arkcompiler/ets_runtime/test/moduletest/forin/ |
| D | forin.js | 94 var view = new Int16Array(3);
|
| /arkcompiler/ets_runtime/test/moduletest/typedarraytosorted/ |
| D | expect_output.txt | 17 Int16Array test success !!!
|
| D | typedarraytosorted.js | 27 Int16Array,
|
| /arkcompiler/ets_runtime/test/moduletest/typedarrayfindlast/ |
| D | expect_output.txt | 17 Int16Array test success !!!
|
| /arkcompiler/ets_runtime/test/moduletest/typedarrayat/ |
| D | expect_output.txt | 17 Int16Array test success !!!
|
| D | typedarrayat.js | 26 Int16Array,
|
12