Searched refs:Int8Array (Results 1 – 25 of 82) sorted by relevance
1234
| /arkcompiler/ets_runtime/test/moduletest/typedarrayslice/ |
| D | typearrayslice.js | 17 …Float64Array, Float32Array, Int32Array, Int16Array, Int8Array, Uint32Array, Uint16Array, Uint8Arra… 34 class Array1 extends Int8Array { 36 return Int8Array; 58 TestTypedArraySlice(Int8Array); 61 TestTypedArraySlice(Int8Array); 64 TestTypedArraySlice(Int8Array); 67 TestTypedArraySlice(Int8Array); 70 TestTypedArraySlice(Int8Array); 73 TestTypedArraySlice(Int8Array);
|
| /arkcompiler/ets_runtime/test/moduletest/typedarrayfrom/ |
| D | typedarrayfrom.js | 22 let int8Arr = new Int8Array(); 28 let newInt8Arr = Int8Array.from(int8Arr); 32 let int8Arr = new Int8Array(); 35 let newInt8Arr = Int8Array.from(int8Arr); 41 int8Arr = new Int8Array(); 47 newInt8Arr = Int8Array.from(int8Arr); 59 newInt8Arr = Int8Array.from(int8Arr); 68 let newArr = Int8Array.from(arr);
|
| /arkcompiler/ets_runtime/test/moduletest/typearray/ |
| D | expect_output.txt | 18 Int8Array test success !!! 54 Int8Array test success !!! 79 Int8Array test success !!! 95 Int8Array test success !!! 104 Int8Array test success !!! 116 Int8Array test success !!! 175 Int8Array test success !!! 186 Int8Array test success !!! 195 Int8Array test success !!! 204 Int8Array test success !!! [all …]
|
| D | typearray.js | 24 …Float64Array, Float32Array, Int32Array, Int16Array, Int8Array, Uint32Array, Uint16Array, Uint8Arra… 207 const a8 = new Int8Array(new ArrayBuffer(0x40004141, {"maxByteLength": 0x40004141})); 295 TestTypedArrayFilter(Int8Array); 299 Object.defineProperty(Int8Array.prototype, "constructor", { 305 TestTypedArrayFilter(Int8Array); 315 Int8Array, 389 Int8Array, 441 Int8Array, 466 Int8Array, 512 Int8Array, [all …]
|
| /arkcompiler/ets_runtime/ecmascript/ts_types/ |
| D | lib_ark_builtins.d.ts | 907 declare class Int8Array extends Object { 918 prototype: Int8Array; 920 constructor(length: number): Int8Array; 922 constructor(array: ArrayLike<number> | ArrayBufferLike): Int8Array; 924 constructor(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Int8Array; 926 constructor(elements: Iterable<number>): Int8Array; 928 constructor(): Int8Array; 930 static of(...items: number[]): Int8Array; 932 static from(arrayLike: ArrayLike<number>): Int8Array; 934 …tic from<T>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => number, thisArg?: any): Int8Array; [all …]
|
| /arkcompiler/ets_runtime/test/aottest/aot_type_test/int8Array/ |
| D | int8Array.ts | 18 let typedArray : Int8Array = new Int8Array([1, 2, 100, -100, 27, 28, 28, 29]);
|
| /arkcompiler/ets_frontend/ets2panda/test/runtime/ets/ |
| D | union_wide_property_access.sts | 24 function foo(arr: Int8Array | Int16Array): void { 31 let byteArr: Int8Array= new Int8Array(buffer)
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_test_suite/atomics/ |
| D | concurrent_compare_exchange.sts | 20 let arr: Int8Array; 26 arr = new Int8Array(buf, 0, 1); 34 L.log("Finished for Int8Array")
|
| D | nonconcurrent_compare_exchange.sts | 18 let arr: Int8Array; 24 arr = new Int8Array(buf, 0, 1);
|
| D | concurrent_increment.sts | 19 let arr: Int8Array 25 arr = new Int8Array(buf, 0, 1);
|
| D | concurrent_wait_store_notify.sts | 22 let bytearr: Int8Array; 29 bytearr = new Int8Array(buf, 0, 4)
|
| /arkcompiler/ets_runtime/test/moduletest/typedarraysort/ |
| D | typedarraysort.js | 23 Int8Array 46 let arr6 = new Int8Array([5, 2, 7, 3, 8, 1, 0, 4, 9]);
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/std/core/ |
| D | TypedArrayConstructorNumbersInts.sts | 38 (new Int8Array(nums)).toString(), 40 "Int8Array(number[])", 44 (new Int8Array(ints)).toString(), 46 "Int8Array(int[])"
|
| /arkcompiler/ets_runtime/ecmascript/pgo_profiler/tests/pgo_test_case/ |
| D | typedarray_length.js | 25 itemMap.set(i, new Int8Array(i * 6));
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/scenarios/ets_to_js/js_suites/ |
| D | test_function_arg_type_conflict_arraybuffer.js | 25 const view = new Int8Array(result);
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/escompat/array_buffer_js_suites/ |
| D | test_is_view.js | 33 ASSERT_TRUE(ArrayBuffer.isView(new Int8Array(arr)));
|
| /arkcompiler/ets_runtime/test/moduletest/forin_special_object/ |
| D | forin_special_object.js | 27 let parent = new Int8Array(arr);
|
| /arkcompiler/ets_runtime/test/aottest/forin_special_object/ |
| D | forin_special_object.ts | 29 let parent = new Int8Array(arr);
|
| /arkcompiler/ets_runtime/test/aottest/tryldglobalbyname_global_object/ |
| D | tryldglobalbyname_global_object.ts | 343 print(Int8Array); 344 globalThis.Int8Array = "Int8Array"; 345 print(Int8Array); 346 delete globalThis.Int8Array; 348 print(Int8Array);
|
| /arkcompiler/ets_runtime/test/moduletest/functionapply/ |
| D | functionapply.js | 27 const v4 = Int8Array.from(v1, v5 => v5.charCodeAt(0)); 75 const v3 = [100, Int8Array];
|
| /arkcompiler/ets_runtime/test/moduletest/getpropertybyindex/ |
| D | getpropertybyindex.js | 39 let obj = new Int8Array(arr);
|
| /arkcompiler/ets_runtime/test/moduletest/typedarrayset/ |
| D | typedarrayset.js | 21 Int8Array,
|
| /arkcompiler/ets_runtime/test/aottest/mono_builtin/ |
| D | mono_builtin.ts | 37 const typedArray = new Int8Array(8);
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/ |
| D | Atomics.sts | 59 …public static add(typedArray: Int8Array | Int16Array | Int32Array | BigInt64Array | Uint8Array | U… 60 if (typedArray instanceof Int8Array) { 61 …edPosition = Atomics.validateAtomicAccess(typedArray.byteOffset as int, Int8Array.BYTES_PER_ELEMEN… 161 …public static and(typedArray: Int8Array | Int16Array | Int32Array | BigInt64Array | Uint8Array | U… 162 if (typedArray instanceof Int8Array) { 163 …edPosition = Atomics.validateAtomicAccess(typedArray.byteOffset as int, Int8Array.BYTES_PER_ELEMEN… 263 …public static compareExchange(typedArray: Int8Array | Int16Array | Int32Array | BigInt64Array | Ui… 264 if (typedArray instanceof Int8Array) { 265 …edPosition = Atomics.validateAtomicAccess(typedArray.byteOffset as int, Int8Array.BYTES_PER_ELEMEN… 373 …public static exchange(typedArray: Int8Array | Int16Array | Int32Array | BigInt64Array | Uint8Arra… [all …]
|
| /arkcompiler/ets_runtime/test/aottest/pgo_builtins/ |
| D | pgo_builtins.js | 52 let int8Array = new Int8Array(1);
|
1234