| /arkcompiler/ets_runtime/test/aottest/typedarray_load_store/ |
| D | typedarray_load_store.ts | 29 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/ |
| D | MayAccessOneMemory.ts | 18 let res:Float64Array = new Float64Array([0,0,0]) 24 let arr2:Float64Array = new Float64Array([0,0,0])
|
| /arkcompiler/ets_runtime/test/moduletest/regressbufferdetach/ |
| D | regressbufferdetach.js | 15 delete Float64Array.prototype.__proto__[Symbol.iterator]; 16 let a = new Float64Array(9); 24 print(Float64Array.from(a).length);
|
| /arkcompiler/ets_runtime/test/moduletest/typearray/ |
| D | expect_output.txt | 14 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 …]
|
| D | typearray.js | 24 …Float64Array, 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/ |
| D | float64Array.ts | 18 let typedArray : Float64Array = new Float64Array([1.5, 2.5, 3, 4.5, 5.5, 6, 7]);
|
| /arkcompiler/ets_runtime/test/aottest/pgo_on_heap/ |
| D | pgo_on_heap.ts | 26 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/ |
| D | lib_ark_builtins.d.ts | 1435 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/ |
| D | TypedArrayConstructorNumbersInts.sts | 83 (new Float64Array(nums)).toString(), 85 "Float64Array(number[])") 88 (new Float64Array(ints)).toString(), 90 "Float64Array(int[])"
|
| /arkcompiler/ets_runtime/test/moduletest/typedarraytosorted/ |
| D | typedarraytosorted.js | 23 …Float64Array, Float32Array, Int32Array, Int16Array, Int8Array, Uint32Array, Uint16Array, Uint8Arra… 68 var arr = new Float64Array(["aaa", 10, 20, 30]);
|
| /arkcompiler/ets_runtime/test/moduletest/setobjectwithproto/ |
| D | setobjectwithproto.js | 39 Float64Array.__proto__ = Float32Array 40 new Float64Array();
|
| /arkcompiler/ets_runtime/test/moduletest/getvaluefrombuffer/ |
| D | getvaluefrombuffer.js | 29 let v2 = new Float64Array(v0);
|
| /arkcompiler/ets_runtime/test/aottest/typedarraymap/ |
| D | typedarraymap.ts | 16 class C extends Float64Array {
|
| /arkcompiler/ets_runtime/test/aottest/tryldglobalbyname_global_object/ |
| D | tryldglobalbyname_global_object.ts | 415 print(Float64Array); 416 globalThis.Float64Array = "Float64Array"; 417 print(Float64Array); 418 delete globalThis.Float64Array; 420 print(Float64Array);
|
| /arkcompiler/ets_runtime/test/moduletest/typedarrayset/ |
| D | typedarrayset.js | 17 Float64Array,
|
| /arkcompiler/ets_runtime/test/moduletest/typedarraynan/ |
| D | typedarraynan.js | 47 var array2 = new Float64Array(buffer);
|
| /arkcompiler/ets_runtime/test/moduletest/typedarraysubarray/ |
| D | typedarraysubarray.js | 17 …Float64Array, Float32Array, Int32Array, Int16Array, Int8Array, Uint32Array, Uint16Array, Uint8Arra…
|
| /arkcompiler/ets_runtime/test/moduletest/typedarrayjoin/ |
| D | typedarrayjoin.js | 23 [Float64Array, [0, 1]],
|
| /arkcompiler/ets_runtime/ecmascript/builtins/ |
| D | builtins_lazy_callback.h | 36 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/ |
| D | inline_type_info_accessor_test.ts | 25 const v15 = new Float64Array(4);
|
| /arkcompiler/ets_runtime/test/moduletest/typedarraysort/ |
| D | typedarraysort.js | 42 let arr4 = new Float64Array([5, 2, 7, 3, 8, 1, 0, 4, 9]);
|
| /arkcompiler/ets_runtime/test/moduletest/typedarraywith/ |
| D | typedarraywith.js | 23 …Float64Array, Float32Array, Int32Array, Int16Array, Int8Array, Uint32Array, Uint16Array, Uint8Arra…
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/ |
| D | TypedArrays.sts | 12819 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/ |
| D | typearrayslice.js | 17 …Float64Array, Float32Array, Int32Array, Int16Array, Int8Array, Uint32Array, Uint16Array, Uint8Arra…
|
| /arkcompiler/ets_frontend/ets2panda/test/parser/ets/ |
| D | union_generic_field_access.sts | 21 | Float64Array
|