Home / Function/ _getIntLE() — netty Function Reference

_getIntLE() — netty Function Reference

Architecture documentation for the _getIntLE() function in FixedCompositeByteBuf.java from the netty codebase.

Function java Buffer Search calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  0f282262_e4c6_551b_7b21_82add0674e4b["_getIntLE()"]
  c3651b69_631a_1f76_b70c_086b089609c2["FixedCompositeByteBuf"]
  0f282262_e4c6_551b_7b21_82add0674e4b -->|defined in| c3651b69_631a_1f76_b70c_086b089609c2
  9c55f5e7_e82d_a428_7ca5_c2561d1815ef["_getLongLE()"]
  9c55f5e7_e82d_a428_7ca5_c2561d1815ef -->|calls| 0f282262_e4c6_551b_7b21_82add0674e4b
  d95dc6a7_daac_22c7_e689_068f5b949632["_getShortLE()"]
  0f282262_e4c6_551b_7b21_82add0674e4b -->|calls| d95dc6a7_daac_22c7_e689_068f5b949632
  style 0f282262_e4c6_551b_7b21_82add0674e4b fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

buffer/src/main/java/io/netty/buffer/FixedCompositeByteBuf.java lines 331–341

    @Override
    protected int _getIntLE(int index) {
        Component c = findComponent(index);
        if (index + 4 <= c.endOffset) {
            return c.buf.getIntLE(index - c.offset);
        } else if (order() == ByteOrder.BIG_ENDIAN) {
            return _getShortLE(index) & 0xFFFF | (_getShortLE(index + 2) & 0xFFFF) << 16;
        } else {
            return (_getShortLE(index) & 0xffff) << 16 | _getShortLE(index + 2) & 0xffff;
        }
    }

Domain

Subdomains

Called By

Frequently Asked Questions

What does _getIntLE() do?
_getIntLE() is a function in the netty codebase, defined in buffer/src/main/java/io/netty/buffer/FixedCompositeByteBuf.java.
Where is _getIntLE() defined?
_getIntLE() is defined in buffer/src/main/java/io/netty/buffer/FixedCompositeByteBuf.java at line 331.
What does _getIntLE() call?
_getIntLE() calls 1 function(s): _getShortLE.
What calls _getIntLE()?
_getIntLE() 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