Home
last modified time | relevance | path

Searched refs:asIntN (Results 1 – 13 of 13) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DbigintWithoutLib.js8 bigintVal = BigInt.asIntN(8, 0xFFFFn);
66 bigintVal = BigInt.asIntN(8, 0xffffn);
DbigintWithoutLib.types23 bigintVal = BigInt.asIntN(8, 0xFFFFn);
24 >bigintVal = BigInt.asIntN(8, 0xFFFFn) : any
26 >BigInt.asIntN(8, 0xFFFFn) : any
27 >BigInt.asIntN : any
29 >asIntN : any
DbigintWithLib.js6 bigintVal = BigInt.asIntN(8, 0xFFFFn);
69 bigintVal = BigInt.asIntN(8, 0xffffn);
DbigintWithLib.types21 bigintVal = BigInt.asIntN(8, 0xFFFFn);
22 >bigintVal = BigInt.asIntN(8, 0xFFFFn) : bigint
24 >BigInt.asIntN(8, 0xFFFFn) : bigint
25 >BigInt.asIntN : (bits: number, int: bigint) => bigint
27 >asIntN : (bits: number, int: bigint) => bigint
DbigintWithLib.symbols14 bigintVal = BigInt.asIntN(8, 0xFFFFn);
16 >BigInt.asIntN : Symbol(BigIntConstructor.asIntN, Decl(lib.es2020.bigint.d.ts, --, --))
18 >asIntN : Symbol(BigIntConstructor.asIntN, Decl(lib.es2020.bigint.d.ts, --, --))
DbigintWithLib.errors.txt36 bigintVal = BigInt.asIntN(8, 0xFFFFn);
DbigintWithoutLib.symbols12 bigintVal = BigInt.asIntN(8, 0xFFFFn);
DbigintWithoutLib.errors.txt67 bigintVal = BigInt.asIntN(8, 0xFFFFn);
/third_party/typescript/tests/cases/compiler/
DbigintWithoutLib.ts9 bigintVal = BigInt.asIntN(8, 0xFFFFn);
DbigintWithLib.ts8 bigintVal = BigInt.asIntN(8, 0xFFFFn);
/third_party/typescript/src/lib/
Des2020.bigint.d.ts113 asIntN(bits: number, int: bigint): bigint; method
/third_party/typescript/lib/
Dlib.es2020.bigint.d.ts133 asIntN(bits: number, int: bigint): bigint; method
/third_party/quickjs/
Dquickjs.c49219 int argc, JSValueConst *argv, int asIntN) in js_bigint_asUintN() argument
49243 if (asIntN && bits != 0) { in js_bigint_asUintN()