Home
last modified time | relevance | path

Searched refs:BigInt64Array (Results 1 – 25 of 40) sorted by relevance

12

/arkcompiler/ets_runtime/test/moduletest/typedarrayslice/
Dtypearrayslice.js47 var sample = new BigInt64Array([40n, 41n, 42n, 43n]);
49 Object.defineProperty(BigInt64Array.prototype, "constructor", {
/arkcompiler/ets_runtime/ecmascript/ts_types/
Dlib_ark_builtins.d.ts1523 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/
Dtypedarrayjoin.js25 [BigInt64Array, [0n, 1n]],
54 [BigInt64Array, [0n, 1n]],
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/
DAtomics.ets286 …* 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 …]
DTypedArrays.ets5771 * 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/
Dtypearray.js44 BigInt64Array,
212 const a6 = new BigInt64Array(10);
218 const a7 = new BigInt64Array(4);
278 const v22 = new BigInt64Array(v21);
Dexpect_output.txt23 BigInt64Array test success !!!
/arkcompiler/ets_runtime/test/aottest/tryldglobalbyname_global_object/
Dtryldglobalbyname_global_object.ts427 print(BigInt64Array);
428 globalThis.BigInt64Array = "BigInt64Array";
429 print(BigInt64Array);
430 delete globalThis.BigInt64Array;
432 print(BigInt64Array);
Dexpect_output.txt116 function BigInt64Array() { [native code] }
117 BigInt64Array
118 ReferenceError: BigInt64Array is not defined
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_lazy_callback.h37 V(BigInt64Array) \
70 static JSTaggedValue BigInt64Array(JSThread *thread, const JSHandle<JSObject> &obj);
Dbuiltins_typedarray.h31 V(BigInt64Array) \
46 V(BigInt64Array, BIGINT64_ARRAY, 8) \
/arkcompiler/ets_frontend/ets2panda/linter/test/
Dfunction_spread_arg.ts52 let a15 = new BigInt64Array(10)
Dfor_stmts.ts109 const a15 = new BigInt64Array(10);
204 class MyBigInt64Array extends BigInt64Array {}
/arkcompiler/ets_frontend/ets2panda/linter-4.2/test/
Dfunction_spread_arg.ts52 let a15 = new BigInt64Array(10)
Dfor_stmts.ts109 const a15 = new BigInt64Array(10);
204 class MyBigInt64Array extends BigInt64Array {}
Dtypes.ts167 let a15 = new BigInt64Array(10)
/arkcompiler/ets_runtime/test/moduletest/typedarraywith/
Dtypedarraywith.js42 BigInt64Array,
Dexpect_output.txt23 BigInt64Array test success !!!
/arkcompiler/ets_runtime/test/moduletest/typedarraytosorted/
Dexpect_output.txt23 BigInt64Array test success !!!
Dtypedarraytosorted.js42 BigInt64Array,
/arkcompiler/ets_runtime/test/moduletest/typedarrayfindlast/
Dexpect_output.txt23 BigInt64Array test success !!!
Dtypedarrayfindlast.js42 BigInt64Array,
/arkcompiler/ets_runtime/test/moduletest/typedarrayat/
Dexpect_output.txt23 BigInt64Array test success !!!
Dtypedarrayat.js41 BigInt64Array,
/arkcompiler/ets_runtime/test/moduletest/bigint/
Dbigint.js53 atom.and(new BigInt64Array(3807), atom, atom);

12