Function
add64
([ah, al]: [number, number], [bh, bl]: [number, number])
Source from the content-addressed store, hash-verified
| 67 | } |
| 68 | |
| 69 | function add64([ah, al]: [number, number], [bh, bl]: [number, number]): [number, number] { |
| 70 | const [carry, l] = add32to64(al, bl); |
| 71 | const h = add32(add32(ah, bh), carry); |
| 72 | return [h, l]; |
| 73 | } |
| 74 | |
| 75 | function sub32(a: number, b: number): number { |
| 76 | const low = (a & 0xffff) - (b & 0xffff); |
Callers
nothing calls this directly
Tested by
no test coverage detected
Used in the wild real call sites across dependent graphs
searching dependent graphs…