Searched refs:Float64Array (Results 1 – 25 of 48) sorted by relevance
12
| /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/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/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/moduletest/setobjectwithproto/ |
| D | setobjectwithproto.js | 39 Float64Array.__proto__ = Float32Array 40 new Float64Array();
|
| D | expect_output.txt | 19 test new Float64Array Suc
|
| /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/ets_runtime/test/moduletest/typedarrayjoin/ |
| D | typedarrayjoin.js | 23 [Float64Array, [0, 1]], 52 [Float64Array, [0, 1]],
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/ |
| D | TypedArrays.ets | 9465 * JS Float64Array API-compatible class 9467 export final class Float64Array { 9471 * Creates an empty Float64Array. 9478 * Creates an Float64Array with respect to data, byteOffset and length. 9484 * @param length size of elements of type double in newly created Float64Array 9491 * Creates an Float64Array with respect to data, byteOffset and length. 9497 * @param length size of elements of type double in newly created Float64Array 9500 if (buf.getByteLength() % Float64Array.BYTES_PER_ELEMENT as int != 0) { 9501 …throw new RangeError("ArrayBuffer.byteLength should be multiple of 8 as Float64Array.BYTES_PER_ELE… 9503 if (byteOffset % Float64Array.BYTES_PER_ELEMENT as int != 0) { [all …]
|
| /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);
|
| D | expect_output.txt | 113 function Float64Array() { [native code] } 114 Float64Array 115 ReferenceError: Float64Array is not defined
|
| /arkcompiler/ets_runtime/test/moduletest/typedarraysubarray/ |
| D | typedarraysubarray.js | 17 Float64Array,
|
| /arkcompiler/ets_runtime/test/moduletest/typedarraynan/ |
| D | typedarraynan.js | 47 var array2 = new Float64Array(buffer);
|
| /arkcompiler/ets_runtime/test/moduletest/typedarrayslice/ |
| D | typearrayslice.js | 17 Float64Array,
|
| /arkcompiler/ets_runtime/ecmascript/builtins/ |
| D | builtins_lazy_callback.h | 36 V(Float64Array) \ 69 static JSTaggedValue Float64Array(JSThread *thread, const JSHandle<JSObject> &obj);
|
| /arkcompiler/ets_frontend/ets2panda/linter/test/ |
| D | function_spread_arg.ts | 51 let a14 = new Float64Array(10)
|
| D | for_stmts.ts | 108 const a14 = new Float64Array(10); 203 class MyFloat64Array extends Float64Array {}
|
| /arkcompiler/ets_frontend/ets2panda/linter-4.2/test/ |
| D | function_spread_arg.ts | 51 let a14 = new Float64Array(10)
|
| D | for_stmts.ts | 108 const a14 = new Float64Array(10); 203 class MyFloat64Array extends Float64Array {}
|
| /arkcompiler/ets_runtime/test/moduletest/typedarraywith/ |
| D | typedarraywith.js | 24 Float64Array,
|
| D | expect_output.txt | 14 Float64Array test success !!!
|
| /arkcompiler/ets_runtime/test/moduletest/typedarraytosorted/ |
| D | expect_output.txt | 14 Float64Array test success !!!
|
| /arkcompiler/ets_runtime/test/moduletest/typedarrayfindlast/ |
| D | expect_output.txt | 14 Float64Array test success !!!
|
| /arkcompiler/ets_runtime/test/moduletest/typedarrayat/ |
| D | expect_output.txt | 14 Float64Array test success !!!
|
12