Home / Function/ mix64() — netty Function Reference

mix64() — netty Function Reference

Architecture documentation for the mix64() function in ThreadLocalRandom.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  efad75ac_7fa6_954c_2061_59407a23884a["mix64()"]
  cad32658_3724_a99b_a2c9_78d6688e22b6["ThreadLocalRandom"]
  efad75ac_7fa6_954c_2061_59407a23884a -->|defined in| cad32658_3724_a99b_a2c9_78d6688e22b6
  style efad75ac_7fa6_954c_2061_59407a23884a fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

common/src/main/java/io/netty/util/internal/ThreadLocalRandom.java lines 225–229

    private static long mix64(long z) {
        z = (z ^ (z >>> 33)) * 0xff51afd7ed558ccdL;
        z = (z ^ (z >>> 33)) * 0xc4ceb9fe1a85ec53L;
        return z ^ (z >>> 33);
    }

Domain

Subdomains

Frequently Asked Questions

What does mix64() do?
mix64() is a function in the netty codebase, defined in common/src/main/java/io/netty/util/internal/ThreadLocalRandom.java.
Where is mix64() defined?
mix64() is defined in common/src/main/java/io/netty/util/internal/ThreadLocalRandom.java at line 225.

Analyze Your Own Codebase

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

Try Supermodel Free