Searched refs:bigInt (Results 1 – 9 of 9) sorted by relevance
/third_party/typescript/tests/baselines/reference/ |
D | numberVsBigIntOperations.js | 3 let bigInt = 1n, num = 2; variable 4 bigInt = 1n; bigInt = 2; num = 1n; num = 2; 5 bigInt += 1n; bigInt += 2; num += 1n; num += 2; 6 bigInt -= 1n; bigInt -= 2; num -= 1n; num -= 2; 7 bigInt *= 1n; bigInt *= 2; num *= 1n; num *= 2; 8 bigInt /= 1n; bigInt /= 2; num /= 1n; num /= 2; 9 bigInt %= 1n; bigInt %= 2; num %= 1n; num %= 2; 10 bigInt **= 1n; bigInt **= 2; num **= 1n; num **= 2; 11 bigInt <<= 1n; bigInt <<= 2; num <<= 1n; num <<= 2; 12 bigInt >>= 1n; bigInt >>= 2; num >>= 1n; num >>= 2; [all …]
|
D | numberVsBigIntOperations.types | 3 let bigInt = 1n, num = 2; 4 >bigInt : bigint 9 bigInt = 1n; bigInt = 2; num = 1n; num = 2; 10 >bigInt = 1n : 1n 11 >bigInt : bigint 13 >bigInt = 2 : 2 14 >bigInt : bigint 23 bigInt += 1n; bigInt += 2; num += 1n; num += 2; 24 >bigInt += 1n : bigint 25 >bigInt : bigint [all …]
|
D | numberVsBigIntOperations.symbols | 3 let bigInt = 1n, num = 2; 4 >bigInt : Symbol(bigInt, Decl(numberVsBigIntOperations.ts, 1, 3)) 7 bigInt = 1n; bigInt = 2; num = 1n; num = 2; 8 >bigInt : Symbol(bigInt, Decl(numberVsBigIntOperations.ts, 1, 3)) 9 >bigInt : Symbol(bigInt, Decl(numberVsBigIntOperations.ts, 1, 3)) 13 bigInt += 1n; bigInt += 2; num += 1n; num += 2; 14 >bigInt : Symbol(bigInt, Decl(numberVsBigIntOperations.ts, 1, 3)) 15 >bigInt : Symbol(bigInt, Decl(numberVsBigIntOperations.ts, 1, 3)) 19 bigInt -= 1n; bigInt -= 2; num -= 1n; num -= 2; 20 >bigInt : Symbol(bigInt, Decl(numberVsBigIntOperations.ts, 1, 3)) [all …]
|
D | numberVsBigIntOperations.errors.txt | 69 let bigInt = 1n, num = 2; 70 bigInt = 1n; bigInt = 2; num = 1n; num = 2; 75 bigInt += 1n; bigInt += 2; num += 1n; num += 2; 80 bigInt -= 1n; bigInt -= 2; num -= 1n; num -= 2; 85 bigInt *= 1n; bigInt *= 2; num *= 1n; num *= 2; 90 bigInt /= 1n; bigInt /= 2; num /= 1n; num /= 2; 95 bigInt %= 1n; bigInt %= 2; num %= 1n; num %= 2; 100 bigInt **= 1n; bigInt **= 2; num **= 1n; num **= 2; 105 bigInt <<= 1n; bigInt <<= 2; num <<= 1n; num <<= 2; 110 bigInt >>= 1n; bigInt >>= 2; num >>= 1n; num >>= 2; [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | numberVsBigIntOperations.ts | 4 let bigInt = 1n, num = 2; variable 5 bigInt = 1n; bigInt = 2; num = 1n; num = 2; 6 bigInt += 1n; bigInt += 2; num += 1n; num += 2; 7 bigInt -= 1n; bigInt -= 2; num -= 1n; num -= 2; 8 bigInt *= 1n; bigInt *= 2; num *= 1n; num *= 2; 9 bigInt /= 1n; bigInt /= 2; num /= 1n; num /= 2; 10 bigInt %= 1n; bigInt %= 2; num %= 1n; num %= 2; 11 bigInt **= 1n; bigInt **= 2; num **= 1n; num **= 2; 12 bigInt <<= 1n; bigInt <<= 2; num <<= 1n; num <<= 2; 13 bigInt >>= 1n; bigInt >>= 2; num >>= 1n; num >>= 2; [all …]
|
/third_party/node/deps/npm/node_modules/sshpk/lib/ |
D | utils.js | 260 var bigInt = require('jsbn').BigInteger; 265 g = new bigInt(g); 266 p = new bigInt(p); 267 x = new bigInt(x); 297 var bigInt = require('jsbn').BigInteger; 303 var d = new bigInt(key.part.d.data); 307 var p = new bigInt(key.part.p.data); 315 var q = new bigInt(key.part.q.data);
|
/third_party/flutter/skia/third_party/externals/wuffs/lib/interval/ |
D | radial_test.go | 112 func (x radialOutput) bigInt() *big.Int { func 439 return IntRange{result[0].bigInt(), result[1].bigInt()}, true
|
/third_party/node/test/parallel/ |
D | test-child-process-advanced-serialization.js | 33 { bigInt: 1337n }, property
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/tessellation/ |
D | vktTessellationUtil.hpp | 432 const int bigInt = ~0u/2; in elemsStr() local 435 const int wrapLength = wrapLengthParam > 0 ? wrapLengthParam : bigInt; in elemsStr()
|