MCPcopy Index your code
hub / github.com/angular/angular / add64

Function add64

packages/service-worker/cli/sha1.ts:69–73  ·  view source on GitHub ↗
([ah, al]: [number, number], [bh, bl]: [number, number])

Source from the content-addressed store, hash-verified

67}
68
69function 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
75function sub32(a: number, b: number): number {
76 const low = (a & 0xffff) - (b & 0xffff);

Callers

nothing calls this directly

Calls 2

add32to64Function · 0.70
add32Function · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…