Home / Function/ getLongLE0() — netty Function Reference

getLongLE0() — netty Function Reference

Architecture documentation for the getLongLE0() function in HeapByteBufUtil.java from the netty codebase.

Function java Buffer Search called by 1

Entity Profile

Dependency Diagram

graph TD
  89613014_743e_0fc7_7da1_1aedd6db2aef["getLongLE0()"]
  96900c63_c206_9fee_a447_dc63a822832b["HeapByteBufUtil"]
  89613014_743e_0fc7_7da1_1aedd6db2aef -->|defined in| 96900c63_c206_9fee_a447_dc63a822832b
  1e87124c_1877_438c_75b2_fe6b52c36456["getLongLE()"]
  1e87124c_1877_438c_75b2_fe6b52c36456 -->|calls| 89613014_743e_0fc7_7da1_1aedd6db2aef
  style 89613014_743e_0fc7_7da1_1aedd6db2aef fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

buffer/src/main/java/io/netty/buffer/HeapByteBufUtil.java lines 112–121

    private static long getLongLE0(byte[] memory, int index) {
        return ((long) memory[index] & 0xFF) |
               ((long) memory[index + 1] & 0xFF) << 8 |
               ((long) memory[index + 2] & 0xFF) << 16 |
               ((long) memory[index + 3] & 0xFF) << 24 |
               ((long) memory[index + 4] & 0xFF) << 32 |
               ((long) memory[index + 5] & 0xFF) << 40 |
               ((long) memory[index + 6] & 0xFF) << 48 |
               ((long) memory[index + 7] & 0xFF) << 56;
    }

Domain

Subdomains

Called By

Frequently Asked Questions

What does getLongLE0() do?
getLongLE0() is a function in the netty codebase, defined in buffer/src/main/java/io/netty/buffer/HeapByteBufUtil.java.
Where is getLongLE0() defined?
getLongLE0() is defined in buffer/src/main/java/io/netty/buffer/HeapByteBufUtil.java at line 112.
What calls getLongLE0()?
getLongLE0() is called by 1 function(s): getLongLE.

Analyze Your Own Codebase

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

Try Supermodel Free