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

Function add32to64

packages/compiler/src/i18n/digest.ts:346–350  ·  view source on GitHub ↗
(a: number, b: number)

Source from the content-addressed store, hash-verified

344}
345
346function add32to64(a: number, b: number): [number, number] {
347 const low = (a & 0xffff) + (b & 0xffff);
348 const high = (a >>> 16) + (b >>> 16) + (low >>> 16);
349 return [high >>> 16, (high << 16) | (low & 0xffff)];
350}
351
352// Rotate a 32b number left `count` position
353function rol32(a: number, count: number): number {

Callers 1

add32Function · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…