Home
last modified time | relevance | path

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

12

/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/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/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/moduletest/setobjectwithproto/
Dsetobjectwithproto.js39 Float64Array.__proto__ = Float32Array
40 new Float64Array();
Dexpect_output.txt19 test new Float64Array Suc
/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/ets_runtime/test/moduletest/typedarrayjoin/
Dtypedarrayjoin.js23 [Float64Array, [0, 1]],
52 [Float64Array, [0, 1]],
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/
DTypedArrays.ets9465 * 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/
Dtryldglobalbyname_global_object.ts415 print(Float64Array);
416 globalThis.Float64Array = "Float64Array";
417 print(Float64Array);
418 delete globalThis.Float64Array;
420 print(Float64Array);
Dexpect_output.txt113 function Float64Array() { [native code] }
114 Float64Array
115 ReferenceError: Float64Array is not defined
/arkcompiler/ets_runtime/test/moduletest/typedarraysubarray/
Dtypedarraysubarray.js17 Float64Array,
/arkcompiler/ets_runtime/test/moduletest/typedarraynan/
Dtypedarraynan.js47 var array2 = new Float64Array(buffer);
/arkcompiler/ets_runtime/test/moduletest/typedarrayslice/
Dtypearrayslice.js17 Float64Array,
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_lazy_callback.h36 V(Float64Array) \
69 static JSTaggedValue Float64Array(JSThread *thread, const JSHandle<JSObject> &obj);
/arkcompiler/ets_frontend/ets2panda/linter/test/
Dfunction_spread_arg.ts51 let a14 = new Float64Array(10)
Dfor_stmts.ts108 const a14 = new Float64Array(10);
203 class MyFloat64Array extends Float64Array {}
/arkcompiler/ets_frontend/ets2panda/linter-4.2/test/
Dfunction_spread_arg.ts51 let a14 = new Float64Array(10)
Dfor_stmts.ts108 const a14 = new Float64Array(10);
203 class MyFloat64Array extends Float64Array {}
/arkcompiler/ets_runtime/test/moduletest/typedarraywith/
Dtypedarraywith.js24 Float64Array,
Dexpect_output.txt14 Float64Array test success !!!
/arkcompiler/ets_runtime/test/moduletest/typedarraytosorted/
Dexpect_output.txt14 Float64Array test success !!!
/arkcompiler/ets_runtime/test/moduletest/typedarrayfindlast/
Dexpect_output.txt14 Float64Array test success !!!
/arkcompiler/ets_runtime/test/moduletest/typedarrayat/
Dexpect_output.txt14 Float64Array test success !!!

12