Searched refs:Float32Array (Results 1 – 25 of 61) sorted by relevance
123
| /arkcompiler/ets_runtime/test/aottest/pgo_float32array_construct/ |
| D | pgo_float32array_construct.ts | 20 let array1 = new Float32Array(len1); 21 let array2 = new Float32Array(len2); 31 let float32 = new Float32Array([20, 30, 40]); 32 let x = new Float32Array([20, 30, 40]); 33 let y = new Float32Array(x);
|
| /arkcompiler/ets_runtime/test/moduletest/typearray/ |
| D | expect_output.txt | 15 Float32Array test success !!! 51 Float32Array test success !!! 76 Float32Array test success !!! 92 Float32Array test success !!! 101 Float32Array test success !!! 113 Float32Array test success !!! 172 Float32Array test success !!! 183 Float32Array test fail !!! 192 Float32Array test success !!! 201 Float32Array test success !!! [all …]
|
| D | typearray.js | 24 …Float64Array, Float32Array, Int32Array, Int16Array, Int8Array, Uint32Array, Uint16Array, Uint8Arra… 275 const v4 = new Float32Array(); 312 Float32Array, 386 Float32Array, 438 Float32Array, 463 Float32Array, 509 Float32Array, 623 Float32Array, 669 Float32Array, 709 Float32Array, [all …]
|
| /arkcompiler/ets_runtime/test/aottest/aot_type_test/float32Array/ |
| D | float32Array.ts | 18 let typedArray : Float32Array = new Float32Array(1);
|
| /arkcompiler/ets_runtime/ecmascript/ts_types/ |
| D | lib_ark_builtins.d.ts | 1347 declare class Float32Array extends Object { 1358 prototype: Float32Array; 1360 constructor(length: number): Float32Array; 1362 constructor(array: ArrayLike<number> | ArrayBufferLike): Float32Array; 1364 constructor(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Float32Array; 1366 constructor(elements: Iterable<number>): Float32Array; 1368 constructor(): Float32Array; 1370 static of(...items: number[]): Float32Array; 1372 static from(arrayLike: ArrayLike<number>): Float32Array; 1374 … from<T>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => number, thisArg?: any): Float32Array; [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/std/core/ |
| D | TypedArrayConstructorNumbersInts.sts | 72 (new Float32Array(nums)).toString(), 74 "Float32Array(number[])" 77 (new Float32Array(ints)).toString(), 79 "Float32Array(int[])"
|
| /arkcompiler/ets_runtime/test/moduletest/arrayjoin/ |
| D | arrayjoin.js | 94 const v5 = new Float32Array(1); 98 const v6 = new Float32Array(1); 103 const v7 = new Float32Array(2);
|
| /arkcompiler/ets_frontend/ets2panda/test/runtime/ets/ |
| D | nullishTypeCodesamples.sts | 99 constructor() { this.arr = new Float32Array(8) } 100 constructor(arr: Float32Array) { this.arr = arr } 101 private arr: Float32Array | null = null; 107 let newarr = new Float32Array(8)
|
| /arkcompiler/ets_runtime/test/moduletest/typedarrayrelease/ |
| D | typedarrayrelease.js | 42 let float32Array = new Float32Array([12.3333, 1.777]);
|
| /arkcompiler/ets_runtime/test/aottest/typedarray/ |
| D | typedarray.ts | 42 const arr = new Float32Array(20);
|
| /arkcompiler/ets_runtime/test/aottest/tryldglobalbyname_global_object/ |
| D | tryldglobalbyname_global_object.ts | 403 print(Float32Array); 404 globalThis.Float32Array = "Float32Array"; 405 print(Float32Array); 406 delete globalThis.Float32Array; 408 print(Float32Array);
|
| /arkcompiler/ets_runtime/test/moduletest/typedarrayset/ |
| D | typedarrayset.js | 18 Float32Array,
|
| /arkcompiler/ets_runtime/test/moduletest/typedarraynan/ |
| D | typedarraynan.js | 33 const v20 = new Float32Array(v18);
|
| /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 | 22 [Float32Array, [0, 1]],
|
| /arkcompiler/ets_runtime/ecmascript/builtins/ |
| D | builtins_lazy_callback.h | 35 V(Float32Array) \ 70 static JSTaggedValue Float32Array(JSThread *thread, const JSHandle<JSObject> &obj);
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/ |
| D | TypedArrays.sts | 10254 constructor(parent: Float32Array) { 10271 private parent: Float32Array 10274 constructor(parent: Float32Array) { 10291 private parent: Float32Array 10294 constructor(parent: Float32Array) { 10314 * JS Float32Array API-compatible class 10316 export final class Float32Array implements Iterable<Number>, ArrayLike<Number> { 10321 * Creates an empty Float32Array. 10328 * Creates an Float32Array with respect to data accessed via Iterable<Number> interface 10334 this.byteLength = arr.length * Float32Array.BYTES_PER_ELEMENT as int [all …]
|
| /arkcompiler/ets_runtime/test/moduletest/typedarraysort/ |
| D | typedarraysort.js | 40 let arr3 = new Float32Array([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/ets_runtime/test/moduletest/typedarraytosorted/ |
| D | typedarraytosorted.js | 23 …Float64Array, Float32Array, Int32Array, Int16Array, Int8Array, Uint32Array, Uint16Array, Uint8Arra…
|
| /arkcompiler/ets_runtime/test/moduletest/bindfunction/ |
| D | expect_output.txt | 21 function bound Float32Array() { [native code] }
|
| /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 | 20 | Float32Array
|
| /arkcompiler/ets_runtime/test/moduletest/setobjectwithproto/ |
| D | setobjectwithproto.js | 39 Float64Array.__proto__ = Float32Array
|
| /arkcompiler/ets_runtime/test/aottest/builtin_inlining/ArrayBuffer/IsView/ |
| D | builtinArrayBufferIsView.ts | 28 print(ArrayBuffer.isView(new Float32Array())) //: true
|
123