| /arkcompiler/ets_runtime/test/aottest/typedarray_load_store/ |
| D | typedarray_load_store.ts | 24 function GenerateFakeRandomInteger(): Int32Array { 25 …let resource: Int32Array = new Int32Array([12, 43, 56, 76, 89, 54, 45, 32, 35, 47, 46, 44, 21, 37,… 34 function GenerateFakeRandomIndex(): Int32Array { 35 …let resource: Int32Array = new Int32Array([3, 14, 44, 25, 91, 38, 82, 88, 64, 81, 70, 90, 33, 63, … 40 function IntegerArray(res: Int32Array) { 42 let integerIndexes: Int32Array = GenerateFakeRandomIndex(); 43 let resources: Int32Array = GenerateFakeRandomInteger(); 60 let arr1 = new Int32Array(buffer, 20, 4); 65 let arr2 = new Int32Array(buffer, 28, 5); 70 let arr3 = new Int32Array(buffer, 0, 5); [all …]
|
| /arkcompiler/ets_runtime/test/aottest/range_guard/ |
| D | range_guard.ts | 18 let testArray: Int32Array = new Int32Array([1, 2, 3]); 26 let testArray: Int32Array = new Int32Array([1, 2, 3]); 34 let testArray: Int32Array = new Int32Array([1, 2, 3]); 44 let testArray: Int32Array = new Int32Array([1, 2, 3]);
|
| /arkcompiler/ets_runtime/test/moduletest/typedarrayset/ |
| D | typedarrayset.js | 19 Int32Array, 36 var typedArray1 = new Int32Array([1,1,1,1,1,1,1,1]); 41 var typedArray2 = new Int32Array([1,1,1,1,1,1,1,1]); 45 var typedArray3 = new Int32Array([1,1,1,1,1,1,1,1]); 49 var typedArray4 = new Int32Array([1,1,1,1,1,1,1,1]);
|
| /arkcompiler/ets_runtime/test/aottest/array_bounds_check_elimination/ |
| D | array_bounds_check_elimination.ts | 36 function clear2(b: Int32Array[], x: number) { 55 let b: Int32Array[] = [1, 2, 3]; 73 let arr: Int32Array = new Int32Array(1000); 74 let arr2: Int32Array = new Int32Array(1000);
|
| /arkcompiler/ets_runtime/test/aottest/ts_multi_inline_deopt/ |
| D | ts_multi_inline_deopt.ts | 18 function GenerateArray(): Int32Array { 19 …let resource: Int32Array = new Int32Array([12, 43, 56, 76, 89, 54, 45, 32, 35, 47, 46, 44, 21, 37,… 43 function RunNormalCall(resources: Int32Array):number { 54 let resources : Int32Array = GenerateArray();
|
| /arkcompiler/ets_runtime/test/aottest/loop_peeling/ |
| D | loop_peeling.ts | 25 let arr = new Int32Array([1, 2, 3, 4]); 26 function foo2(u : Int32Array) { 37 let arr2 = new Int32Array([0, 0, 0, 0]); 38 function foo3(u : Int32Array, v : Int32Array) {
|
| /arkcompiler/ets_runtime/test/aottest/ts_inline_deopt_loop/ |
| D | ts_inline_deopt_loop.ts | 18 function GenerateArray(): Int32Array { 19 …let resource: Int32Array = new Int32Array([12, 43, 56, 76, 89, 54, 45, 32, 35, 47, 46, 44, 21, 37,… 44 let resources : Int32Array = GenerateArray();
|
| /arkcompiler/ets_runtime/test/moduletest/typearray/ |
| D | expect_output.txt | 16 Int32Array test success !!! 52 Int32Array test success !!! 77 Int32Array test success !!! 93 Int32Array test success !!! 102 Int32Array test success !!! 114 Int32Array test success !!! 173 Int32Array test success !!! 184 Int32Array test success !!! 193 Int32Array test success !!! 202 Int32Array test success !!! [all …]
|
| D | typearray.js | 24 …Float64Array, Float32Array, Int32Array, Int16Array, Int8Array, Uint32Array, Uint16Array, Uint8Arra… 313 Int32Array, 387 Int32Array, 439 Int32Array, 464 Int32Array, 510 Int32Array, 624 Int32Array, 670 Int32Array, 710 Int32Array, 748 Int32Array, [all …]
|
| /arkcompiler/ets_runtime/ecmascript/ts_types/ |
| D | lib_ark_builtins.d.ts | 1259 declare class Int32Array extends Object { 1270 prototype: Int32Array; 1272 constructor(length: number): Int32Array; 1274 constructor(array: ArrayLike<number> | ArrayBufferLike): Int32Array; 1276 constructor(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Int32Array; 1278 constructor(elements: Iterable<number>): Int32Array; 1280 constructor(): Int32Array; 1282 static of(...items: number[]): Int32Array; 1284 static from(arrayLike: ArrayLike<number>): Int32Array; 1286 …ic from<T>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => number, thisArg?: any): Int32Array; [all …]
|
| /arkcompiler/ets_runtime/test/moduletest/flatten/ |
| D | flatten.js | 25 const v17 = new Int32Array(); 28 Int32Array();
|
| /arkcompiler/ets_runtime/test/aottest/aot_type_test/int32Array/ |
| D | int32Array.ts | 18 let typedArray : Int32Array = new Int32Array([1, 2, 2147483640, -2147483640, 7, 8, 8, 9]);
|
| /arkcompiler/ets_runtime/test/aottest/frame_states/ |
| D | frame_states.ts | 17 let perm1: Int32Array = new Int32Array(n);
|
| /arkcompiler/ets_runtime/test/aottest/pgo_ldobjbyvalue_string/ |
| D | pgo_ldobjbyvalue_string.ts | 67 let arr = new Int32Array(5).fill(x); 85 let arrr = new Int32Array(5).fill(xx); 103 let arrrr = new Int32Array(5).fill(xxx);
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_test_suite/atomics/ |
| D | concurrent_compare_exchange.sts | 21 let arr_2: Int32Array; 27 arr_2 = new Int32Array(buf_2, 0, 1); 41 L.log("Finished for Int32Array")
|
| D | skipped_wait_timeout.sts | 18 let arr: Int32Array; 22 arr = new Int32Array(buf, 0, 1);
|
| D | skipped_exchange_nonconcurrent.sts | 17 let arr: Int32Array; 22 arr = new Int32Array(buf, 0, 1);
|
| D | nonconcurrent_waitasync_store_notify.sts | 17 let arr: Int32Array; 23 arr = new Int32Array(buf, 0, 1);
|
| D | concurrent_increment.sts | 20 let arr_u32: Int32Array 26 arr_u32 = new Int32Array(buf_2, 0, 1);
|
| D | concurrent_wait_store_notify.sts | 21 let arr: Int32Array; 28 arr = new Int32Array(buf, 0, 1);
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/std/core/ |
| D | TypedArrayConstructorNumbersInts.sts | 61 (new Int32Array(nums)).toString(), 63 "Int32Array(number[])" 66 (new Int32Array(ints)).toString(), 68 "Int32Array(int[])"
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/ |
| D | Atomics.sts | 59 …public static add(typedArray: Int8Array | Int16Array | Int32Array | BigInt64Array | Uint8Array | U… 84 } else if (typedArray instanceof Int32Array) { 85 …dPosition = Atomics.validateAtomicAccess(typedArray.byteOffset as int, Int32Array.BYTES_PER_ELEMEN… 161 …public static and(typedArray: Int8Array | Int16Array | Int32Array | BigInt64Array | Uint8Array | U… 186 } else if (typedArray instanceof Int32Array) { 187 …dPosition = Atomics.validateAtomicAccess(typedArray.byteOffset as int, Int32Array.BYTES_PER_ELEMEN… 263 …public static compareExchange(typedArray: Int8Array | Int16Array | Int32Array | BigInt64Array | Ui… 290 } else if (typedArray instanceof Int32Array) { 291 …dPosition = Atomics.validateAtomicAccess(typedArray.byteOffset as int, Int32Array.BYTES_PER_ELEMEN… 373 …public static exchange(typedArray: Int8Array | Int16Array | Int32Array | BigInt64Array | Uint8Arra… [all …]
|
| /arkcompiler/ets_runtime/test/moduletest/typedarrayfill/ |
| D | typedarrayfill.js | 24 let arr = new Int32Array(buff);
|
| /arkcompiler/ets_runtime/test/moduletest/getvaluefrombuffer/ |
| D | getvaluefrombuffer.js | 26 let v1 = new Int32Array(v0);
|
| /arkcompiler/ets_runtime/test/moduletest/objectcloneproperties/ |
| D | objectcloneproperties.js | 25 var obj2 = new Int32Array(2);
|