Home
last modified time | relevance | path

Searched refs:Float64Array (Results 1 – 25 of 62) sorted by relevance

123

/arkcompiler/ets_runtime/test/aottest/typedarray_load_store/
Dtypedarray_load_store.ts29 function GenerateFakeRandomFloat(): Float64Array {
30 …let resource: Float64Array = new Float64Array([12.2, 43.5, 56.2, 76.6, 89.7, 54.9, 45.2, 32.5, 35.…
86 function FloatArray(res: Float64Array) {
88 let resources: Float64Array = GenerateFakeRandomFloat();
107 let arr1 = new Float64Array(buffer, 16, 4);
112 let arr2 = new Float64Array(buffer, 24, 5);
117 let arr3 = new Float64Array(buffer, 0, 5);
122 let arr4 = new Float64Array(arr2);
127 let arr5 = new Float64Array(arr4);
/arkcompiler/ets_runtime/test/aottest/early_elimination/
DMayAccessOneMemory.ts18 let res:Float64Array = new Float64Array([0,0,0])
24 let arr2:Float64Array = new Float64Array([0,0,0])
/arkcompiler/ets_runtime/test/moduletest/regressbufferdetach/
Dregressbufferdetach.js15 delete Float64Array.prototype.__proto__[Symbol.iterator];
16 let a = new Float64Array(9);
24 print(Float64Array.from(a).length);
/arkcompiler/ets_runtime/test/moduletest/typearray/
Dexpect_output.txt14 Float64Array test success !!!
50 Float64Array test success !!!
75 Float64Array test success !!!
91 Float64Array test success !!!
100 Float64Array test success !!!
112 Float64Array test success !!!
171 Float64Array test success !!!
182 Float64Array test fail !!!
191 Float64Array test success !!!
200 Float64Array test success !!!
[all …]
Dtypearray.js24Float64Array, Float32Array, Int32Array, Int16Array, Int8Array, Uint32Array, Uint16Array, Uint8Arra…
208 const a9 = new Float64Array(a8);
311 Float64Array,
385 Float64Array,
437 Float64Array,
462 Float64Array,
508 Float64Array,
622 Float64Array,
668 Float64Array,
708 Float64Array,
[all …]
/arkcompiler/ets_runtime/test/aottest/aot_type_test/float64Array/
Dfloat64Array.ts18 let typedArray : Float64Array = new Float64Array([1.5, 2.5, 3, 4.5, 5.5, 6, 7]);
/arkcompiler/ets_runtime/test/aottest/pgo_on_heap/
Dpgo_on_heap.ts26 let ta1 = new Float64Array(NOT_ON_HEAP_LENGTH);
42 function bar(ta: Float64Array) {
53 function baz(ta: Uint32Array | Float64Array) {
/arkcompiler/ets_runtime/ecmascript/ts_types/
Dlib_ark_builtins.d.ts1435 declare class Float64Array extends Object {
1446 prototype: Float64Array;
1448 constructor(length: number): Float64Array;
1450 constructor(array: ArrayLike<number> | ArrayBufferLike): Float64Array;
1452 constructor(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Float64Array;
1454 constructor(elements: Iterable<number>): Float64Array;
1456 constructor(): Float64Array;
1458 static of(...items: number[]): Float64Array;
1460 static from(arrayLike: ArrayLike<number>): Float64Array;
1462 … from<T>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => number, thisArg?: any): Float64Array;
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/std/core/
DTypedArrayConstructorNumbersInts.sts83 (new Float64Array(nums)).toString(),
85 "Float64Array(number[])")
88 (new Float64Array(ints)).toString(),
90 "Float64Array(int[])"
/arkcompiler/ets_runtime/test/moduletest/typedarraytosorted/
Dtypedarraytosorted.js23Float64Array, Float32Array, Int32Array, Int16Array, Int8Array, Uint32Array, Uint16Array, Uint8Arra…
68 var arr = new Float64Array(["aaa", 10, 20, 30]);
/arkcompiler/ets_runtime/test/moduletest/setobjectwithproto/
Dsetobjectwithproto.js39 Float64Array.__proto__ = Float32Array
40 new Float64Array();
/arkcompiler/ets_runtime/test/moduletest/getvaluefrombuffer/
Dgetvaluefrombuffer.js29 let v2 = new Float64Array(v0);
/arkcompiler/ets_runtime/test/aottest/typedarraymap/
Dtypedarraymap.ts16 class C extends Float64Array {
/arkcompiler/ets_runtime/test/aottest/tryldglobalbyname_global_object/
Dtryldglobalbyname_global_object.ts415 print(Float64Array);
416 globalThis.Float64Array = "Float64Array";
417 print(Float64Array);
418 delete globalThis.Float64Array;
420 print(Float64Array);
/arkcompiler/ets_runtime/test/moduletest/typedarrayset/
Dtypedarrayset.js17 Float64Array,
/arkcompiler/ets_runtime/test/moduletest/typedarraynan/
Dtypedarraynan.js47 var array2 = new Float64Array(buffer);
/arkcompiler/ets_runtime/test/moduletest/typedarraysubarray/
Dtypedarraysubarray.js17Float64Array, Float32Array, Int32Array, Int16Array, Int8Array, Uint32Array, Uint16Array, Uint8Arra…
/arkcompiler/ets_runtime/test/moduletest/typedarrayjoin/
Dtypedarrayjoin.js23 [Float64Array, [0, 1]],
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_lazy_callback.h36 V(Float64Array) \
71 static JSTaggedValue Float64Array(JSThread *thread, const JSHandle<JSObject> &obj);
/arkcompiler/ets_runtime/test/jittest/pgo_roottype_test/inline_type_info_accessor_test/
Dinline_type_info_accessor_test.ts25 const v15 = new Float64Array(4);
/arkcompiler/ets_runtime/test/moduletest/typedarraysort/
Dtypedarraysort.js42 let arr4 = new Float64Array([5, 2, 7, 3, 8, 1, 0, 4, 9]);
/arkcompiler/ets_runtime/test/moduletest/typedarraywith/
Dtypedarraywith.js23Float64Array, Float32Array, Int32Array, Int16Array, Int8Array, Uint32Array, Uint16Array, Uint8Arra…
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/
DTypedArrays.sts12819 constructor(parent: Float64Array) {
12836 private parent: Float64Array
12839 constructor(parent: Float64Array) {
12856 private parent: Float64Array
12859 constructor(parent: Float64Array) {
12879 * JS Float64Array API-compatible class
12881 export final class Float64Array implements Iterable<Number>, ArrayLike<Number> {
12886 * Creates an empty Float64Array.
12893 * Creates an Float64Array with respect to data accessed via Iterable<Number> interface
12899 this.byteLength = arr.length * Float64Array.BYTES_PER_ELEMENT as int
[all …]
/arkcompiler/ets_runtime/test/moduletest/typedarrayslice/
Dtypearrayslice.js17Float64Array, Float32Array, Int32Array, Int16Array, Int8Array, Uint32Array, Uint16Array, Uint8Arra…
/arkcompiler/ets_frontend/ets2panda/test/parser/ets/
Dunion_generic_field_access.sts21 | Float64Array

123