_getLongLE() — netty Function Reference
Architecture documentation for the _getLongLE() function in FixedCompositeByteBuf.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 9c55f5e7_e82d_a428_7ca5_c2561d1815ef["_getLongLE()"] c3651b69_631a_1f76_b70c_086b089609c2["FixedCompositeByteBuf"] 9c55f5e7_e82d_a428_7ca5_c2561d1815ef -->|defined in| c3651b69_631a_1f76_b70c_086b089609c2 0f282262_e4c6_551b_7b21_82add0674e4b["_getIntLE()"] 9c55f5e7_e82d_a428_7ca5_c2561d1815ef -->|calls| 0f282262_e4c6_551b_7b21_82add0674e4b style 9c55f5e7_e82d_a428_7ca5_c2561d1815ef fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buffer/src/main/java/io/netty/buffer/FixedCompositeByteBuf.java lines 355–365
@Override
protected long _getLongLE(int index) {
Component c = findComponent(index);
if (index + 8 <= c.endOffset) {
return c.buf.getLongLE(index - c.offset);
} else if (order() == ByteOrder.BIG_ENDIAN) {
return _getIntLE(index) & 0xffffffffL | (_getIntLE(index + 4) & 0xffffffffL) << 32;
} else {
return (_getIntLE(index) & 0xffffffffL) << 32 | _getIntLE(index + 4) & 0xffffffffL;
}
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does _getLongLE() do?
_getLongLE() is a function in the netty codebase, defined in buffer/src/main/java/io/netty/buffer/FixedCompositeByteBuf.java.
Where is _getLongLE() defined?
_getLongLE() is defined in buffer/src/main/java/io/netty/buffer/FixedCompositeByteBuf.java at line 355.
What does _getLongLE() call?
_getLongLE() calls 1 function(s): _getIntLE.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free