Home / Function/ murmurhash3_32_gc() — react Function Reference

murmurhash3_32_gc() — react Function Reference

Architecture documentation for the murmurhash3_32_gc() function in createFastHashJS.js from the react codebase.

Entity Profile

Dependency Diagram

graph TD
  1f165fb3_05ac_b31e_d95c_bbadc7e4fe6a["murmurhash3_32_gc()"]
  ccc11969_70f4_c9b0_c82c_be0400fb74e0["createFastHashJS.js"]
  1f165fb3_05ac_b31e_d95c_bbadc7e4fe6a -->|defined in| ccc11969_70f4_c9b0_c82c_be0400fb74e0
  cab8a73a_281d_634b_70bc_8e31fd1c1c78["createFastHashJS()"]
  cab8a73a_281d_634b_70bc_8e31fd1c1c78 -->|calls| 1f165fb3_05ac_b31e_d95c_bbadc7e4fe6a
  style 1f165fb3_05ac_b31e_d95c_bbadc7e4fe6a fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

packages/react-server/src/createFastHashJS.js lines 56–122

function murmurhash3_32_gc(key: string, seed: number): number {
  let remainder, bytes, h1, h1b, c1, c2, k1, i;

  remainder = key.length & 3; // key.length % 4
  bytes = key.length - remainder;
  h1 = seed;
  c1 = 0xcc9e2d51;
  c2 = 0x1b873593;
  i = 0;

  while (i < bytes) {
    k1 =
      (key.charCodeAt(i) & 0xff) |
      ((key.charCodeAt(++i) & 0xff) << 8) |
      ((key.charCodeAt(++i) & 0xff) << 16) |
      ((key.charCodeAt(++i) & 0xff) << 24);
    ++i;

    k1 =
      ((k1 & 0xffff) * c1 + ((((k1 >>> 16) * c1) & 0xffff) << 16)) & 0xffffffff;
    k1 = (k1 << 15) | (k1 >>> 17);
    k1 =
      ((k1 & 0xffff) * c2 + ((((k1 >>> 16) * c2) & 0xffff) << 16)) & 0xffffffff;

    h1 ^= k1;
    h1 = (h1 << 13) | (h1 >>> 19);
    h1b =
      ((h1 & 0xffff) * 5 + ((((h1 >>> 16) * 5) & 0xffff) << 16)) & 0xffffffff;
    h1 = (h1b & 0xffff) + 0x6b64 + ((((h1b >>> 16) + 0xe654) & 0xffff) << 16);
  }

  k1 = 0;

  switch (remainder) {
    case 3:
      k1 ^= (key.charCodeAt(i + 2) & 0xff) << 16;
    case 2:
      k1 ^= (key.charCodeAt(i + 1) & 0xff) << 8;
    case 1:
      k1 ^= key.charCodeAt(i) & 0xff;

      k1 =
        ((k1 & 0xffff) * c1 + ((((k1 >>> 16) * c1) & 0xffff) << 16)) &
        0xffffffff;
      k1 = (k1 << 15) | (k1 >>> 17);
      k1 =
        ((k1 & 0xffff) * c2 + ((((k1 >>> 16) * c2) & 0xffff) << 16)) &
        0xffffffff;
      h1 ^= k1;
  }

  h1 ^= key.length;

  h1 ^= h1 >>> 16;
  h1 =
    ((h1 & 0xffff) * 0x85ebca6b +
      ((((h1 >>> 16) * 0x85ebca6b) & 0xffff) << 16)) &
    0xffffffff;
  h1 ^= h1 >>> 13;
  h1 =
    ((h1 & 0xffff) * 0xc2b2ae35 +
      ((((h1 >>> 16) * 0xc2b2ae35) & 0xffff) << 16)) &
    0xffffffff;
  h1 ^= h1 >>> 16;

  return h1 >>> 0;
}

Domain

Subdomains

Called By

Frequently Asked Questions

What does murmurhash3_32_gc() do?
murmurhash3_32_gc() is a function in the react codebase, defined in packages/react-server/src/createFastHashJS.js.
Where is murmurhash3_32_gc() defined?
murmurhash3_32_gc() is defined in packages/react-server/src/createFastHashJS.js at line 56.
What calls murmurhash3_32_gc()?
murmurhash3_32_gc() is called by 1 function(s): createFastHashJS.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free