Searched refs:BigInt64Array (Results 1 – 25 of 40) sorted by relevance
12
| /arkcompiler/ets_runtime/test/moduletest/typedarrayslice/ |
| D | typearrayslice.js | 47 var sample = new BigInt64Array([40n, 41n, 42n, 43n]); 49 Object.defineProperty(BigInt64Array.prototype, "constructor", {
|
| /arkcompiler/ets_runtime/ecmascript/ts_types/ |
| D | lib_ark_builtins.d.ts | 1523 declare class BigInt64Array extends Object { 1534 prototype: BigInt64Array; 1536 constructor(length?: number): BigInt64Array; 1538 constructor(array: Iterable<bigint>): BigInt64Array; 1540 constructor(buffer: ArrayBufferLike, byteOffset?: number, length?: number): BigInt64Array; 1542 static of(...items: bigint[]): BigInt64Array; 1544 static from(arrayLike: ArrayLike<bigint>): BigInt64Array; 1546 …from<U>(arrayLike: ArrayLike<U>, mapfn: (v: U, k: number) => bigint, thisArg?: any): BigInt64Array; 1548 copyWithin(target: number, start: number, end?: number): BigInt64Array; 1552 …every(predicate: (value: bigint, index: number, array: BigInt64Array) => boolean, thisArg?: any): … [all …]
|
| /arkcompiler/ets_runtime/test/moduletest/typedarrayjoin/ |
| D | typedarrayjoin.js | 25 [BigInt64Array, [0n, 1n]], 54 [BigInt64Array, [0n, 1n]],
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/ |
| D | Atomics.ets | 286 …* Note: This method also wakes up threads suspended by the BigInt64Array Atomics.wait(t64, offset6… 314 // BigInt64Array 316 public static add(typedArray: BigInt64Array, index: int, value: long): long { 320 public static and(typedArray: BigInt64Array, index: int, value: long): long { 324 …public static compareExchange(typedArray: BigInt64Array, index: int, expectedValue: long, replacem… 328 public static exchange(typedArray: BigInt64Array, index: int, value: long): long { 332 public static load(typedArray: BigInt64Array, index: int): long { 336 public static or(typedArray: BigInt64Array, index: int, value: long): long { 340 public static store(typedArray: BigInt64Array, index: int, value: long): long { 344 public static sub(typedArray: BigInt64Array, index: int, value: long): long { [all …]
|
| D | TypedArrays.ets | 5771 * JS BigInt64Array API-compatible class 5773 export final class BigInt64Array { 5777 * Creates an empty BigInt64Array. 5784 * Creates an BigInt64Array with respect to data, byteOffset and length. 5790 * @param length size of elements of type long in newly created BigInt64Array 5797 * Creates an BigInt64Array with respect to data, byteOffset and length. 5803 * @param length size of elements of type long in newly created BigInt64Array 5806 if (buf.getByteLength() % BigInt64Array.BYTES_PER_ELEMENT as int != 0) { 5807 …throw new RangeError("ArrayBuffer.byteLength should be multiple of 8 as BigInt64Array.BYTES_PER_EL… 5809 if (byteOffset % BigInt64Array.BYTES_PER_ELEMENT as int != 0) { [all …]
|
| /arkcompiler/ets_runtime/test/moduletest/typearray/ |
| D | typearray.js | 44 BigInt64Array, 212 const a6 = new BigInt64Array(10); 218 const a7 = new BigInt64Array(4); 278 const v22 = new BigInt64Array(v21);
|
| D | expect_output.txt | 23 BigInt64Array test success !!!
|
| /arkcompiler/ets_runtime/test/aottest/tryldglobalbyname_global_object/ |
| D | tryldglobalbyname_global_object.ts | 427 print(BigInt64Array); 428 globalThis.BigInt64Array = "BigInt64Array"; 429 print(BigInt64Array); 430 delete globalThis.BigInt64Array; 432 print(BigInt64Array);
|
| D | expect_output.txt | 116 function BigInt64Array() { [native code] } 117 BigInt64Array 118 ReferenceError: BigInt64Array is not defined
|
| /arkcompiler/ets_runtime/ecmascript/builtins/ |
| D | builtins_lazy_callback.h | 37 V(BigInt64Array) \ 70 static JSTaggedValue BigInt64Array(JSThread *thread, const JSHandle<JSObject> &obj);
|
| D | builtins_typedarray.h | 31 V(BigInt64Array) \ 46 V(BigInt64Array, BIGINT64_ARRAY, 8) \
|
| /arkcompiler/ets_frontend/ets2panda/linter/test/ |
| D | function_spread_arg.ts | 52 let a15 = new BigInt64Array(10)
|
| D | for_stmts.ts | 109 const a15 = new BigInt64Array(10); 204 class MyBigInt64Array extends BigInt64Array {}
|
| /arkcompiler/ets_frontend/ets2panda/linter-4.2/test/ |
| D | function_spread_arg.ts | 52 let a15 = new BigInt64Array(10)
|
| D | for_stmts.ts | 109 const a15 = new BigInt64Array(10); 204 class MyBigInt64Array extends BigInt64Array {}
|
| D | types.ts | 167 let a15 = new BigInt64Array(10)
|
| /arkcompiler/ets_runtime/test/moduletest/typedarraywith/ |
| D | typedarraywith.js | 42 BigInt64Array,
|
| D | expect_output.txt | 23 BigInt64Array test success !!!
|
| /arkcompiler/ets_runtime/test/moduletest/typedarraytosorted/ |
| D | expect_output.txt | 23 BigInt64Array test success !!!
|
| D | typedarraytosorted.js | 42 BigInt64Array,
|
| /arkcompiler/ets_runtime/test/moduletest/typedarrayfindlast/ |
| D | expect_output.txt | 23 BigInt64Array test success !!!
|
| D | typedarrayfindlast.js | 42 BigInt64Array,
|
| /arkcompiler/ets_runtime/test/moduletest/typedarrayat/ |
| D | expect_output.txt | 23 BigInt64Array test success !!!
|
| D | typedarrayat.js | 41 BigInt64Array,
|
| /arkcompiler/ets_runtime/test/moduletest/bigint/ |
| D | bigint.js | 53 atom.and(new BigInt64Array(3807), atom, atom);
|
12