Home
last modified time | relevance | path

Searched refs:Int8Array (Results 1 – 25 of 82) sorted by relevance

1234

/arkcompiler/ets_runtime/test/moduletest/typedarrayslice/
Dtypearrayslice.js17 …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/
Dtypedarrayfrom.js22 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/
Dexpect_output.txt18 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 …]
Dtypearray.js24 …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/
Dlib_ark_builtins.d.ts907 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/
Dint8Array.ts18 let typedArray : Int8Array = new Int8Array([1, 2, 100, -100, 27, 28, 28, 29]);
/arkcompiler/ets_frontend/ets2panda/test/runtime/ets/
Dunion_wide_property_access.sts24 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/
Dconcurrent_compare_exchange.sts20 let arr: Int8Array;
26 arr = new Int8Array(buf, 0, 1);
34 L.log("Finished for Int8Array")
Dnonconcurrent_compare_exchange.sts18 let arr: Int8Array;
24 arr = new Int8Array(buf, 0, 1);
Dconcurrent_increment.sts19 let arr: Int8Array
25 arr = new Int8Array(buf, 0, 1);
Dconcurrent_wait_store_notify.sts22 let bytearr: Int8Array;
29 bytearr = new Int8Array(buf, 0, 4)
/arkcompiler/ets_runtime/test/moduletest/typedarraysort/
Dtypedarraysort.js23 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/
DTypedArrayConstructorNumbersInts.sts38 (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/
Dtypedarray_length.js25 itemMap.set(i, new Int8Array(i * 6));
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/scenarios/ets_to_js/js_suites/
Dtest_function_arg_type_conflict_arraybuffer.js25 const view = new Int8Array(result);
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/escompat/array_buffer_js_suites/
Dtest_is_view.js33 ASSERT_TRUE(ArrayBuffer.isView(new Int8Array(arr)));
/arkcompiler/ets_runtime/test/moduletest/forin_special_object/
Dforin_special_object.js27 let parent = new Int8Array(arr);
/arkcompiler/ets_runtime/test/aottest/forin_special_object/
Dforin_special_object.ts29 let parent = new Int8Array(arr);
/arkcompiler/ets_runtime/test/aottest/tryldglobalbyname_global_object/
Dtryldglobalbyname_global_object.ts343 print(Int8Array);
344 globalThis.Int8Array = "Int8Array";
345 print(Int8Array);
346 delete globalThis.Int8Array;
348 print(Int8Array);
/arkcompiler/ets_runtime/test/moduletest/functionapply/
Dfunctionapply.js27 const v4 = Int8Array.from(v1, v5 => v5.charCodeAt(0));
75 const v3 = [100, Int8Array];
/arkcompiler/ets_runtime/test/moduletest/getpropertybyindex/
Dgetpropertybyindex.js39 let obj = new Int8Array(arr);
/arkcompiler/ets_runtime/test/moduletest/typedarrayset/
Dtypedarrayset.js21 Int8Array,
/arkcompiler/ets_runtime/test/aottest/mono_builtin/
Dmono_builtin.ts37 const typedArray = new Int8Array(8);
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/
DAtomics.sts59 …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/
Dpgo_builtins.js52 let int8Array = new Int8Array(1);

1234