Home
last modified time | relevance | path

Searched refs:Float64Array (Results 1 – 25 of 27) 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.ts3 let res:Float64Array = new Float64Array([0,0,0])
9 let arr2:Float64Array = new Float64Array([0,0,0])
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DtypedArrays.ts75 typedArrays[7] = Float64Array;
76 AssertType(typedArrays[7] = Float64Array, "Float64ArrayConstructor");
80 AssertType(Float64Array, "Float64ArrayConstructor");
161 typedArrays[7] = new Float64Array(obj);
162 AssertType(typedArrays[7] = new Float64Array(obj), "Float64Array");
166 AssertType(new Float64Array(obj), "Float64Array");
167 AssertType(Float64Array, "Float64ArrayConstructor");
251 typedArrays[7] = new Float64Array(obj);
252 AssertType(typedArrays[7] = new Float64Array(obj), "Float64Array");
256 AssertType(new Float64Array(obj), "Float64Array");
[all …]
DtypedArrays-es6.ts32 const float64Array = new Float64Array(1);
34 AssertType(new Float64Array(1), "Float64Array");
35 AssertType(Float64Array, "Float64ArrayConstructor");
DtypedArraysSubarray.ts206 let arr = new Float64Array(10);
208 AssertType(new Float64Array(10), "Float64Array");
209 AssertType(Float64Array, "Float64ArrayConstructor");
/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/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/typedarraynan/
Dtypedarraynan.js47 var array2 = new Float64Array(buffer);
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_lazy_callback.h36 V(Float64Array) \
69 static JSTaggedValue Float64Array(JSThread *thread, const JSHandle<JSObject> &obj);
/arkcompiler/ets_runtime/test/moduletest/typedarraywith/
Dtypedarraywith.js24 Float64Array,
Dexpect_output.txt14 Float64Array test success !!!
/arkcompiler/ets_runtime/test/moduletest/typearray/
Dtypearray.js23 Float64Array,
209 const a9 = new Float64Array(a8);
Dexpect_output.txt14 Float64Array test success !!!
/arkcompiler/ets_runtime/test/moduletest/typedarraytosorted/
Dtypedarraytosorted.js24 Float64Array,
Dexpect_output.txt14 Float64Array test success !!!
/arkcompiler/ets_runtime/test/moduletest/typedarrayat/
Dexpect_output.txt14 Float64Array test success !!!
Dtypedarrayat.js23 Float64Array,
/arkcompiler/ets_runtime/test/moduletest/typedarrayfindlast/
Dexpect_output.txt14 Float64Array test success !!!
Dtypedarrayfindlast.js24 Float64Array,
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi_helper.h55 V(Float64Array) \
/arkcompiler/toolchain/tooling/test/testcases/js/
Dvariable_second.js81 var typedarray8 = new Float64Array();
/arkcompiler/ets_frontend/ts2panda/src/base/
DtypeSystem.ts79 Float64Array, enumerator
/arkcompiler/ets_runtime/ecmascript/
Dglobal_env_constants.h250 …V(JSTaggedValue, Float64ArrayString, FLOAT64_ARRAY_STRING_INDEX, Float64Array) …
/arkcompiler/ets_runtime/ecmascript/napi/test/
Djsnapi_tests.cpp667 HWTEST_F_L0(JSNApiTests, Float64Array) in HWTEST_F_L0() argument
/arkcompiler/ets_frontend/test262/
Des2015_tests.txt5654 built-ins/TypedArrayConstructors/Float64Array/BYTES_PER_ELEMENT.js
5655 built-ins/TypedArrayConstructors/Float64Array/constructor.js
5656 built-ins/TypedArrayConstructors/Float64Array/is-a-constructor.js
5657 built-ins/TypedArrayConstructors/Float64Array/length.js
5658 built-ins/TypedArrayConstructors/Float64Array/name.js
5659 built-ins/TypedArrayConstructors/Float64Array/proto.js
5660 built-ins/TypedArrayConstructors/Float64Array/prototype.js
5661 built-ins/TypedArrayConstructors/Float64Array/prototype/BYTES_PER_ELEMENT.js
5662 built-ins/TypedArrayConstructors/Float64Array/prototype/constructor.js
5663 built-ins/TypedArrayConstructors/Float64Array/prototype/not-typedarray-object.js
[all …]

12