_getIntLE() — netty Function Reference
Architecture documentation for the _getIntLE() function in CompositeByteBuf.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 6e691bb1_7026_aa01_b194_50da474f4630["_getIntLE()"] 6b8e4d93_5aed_4ff7_ccdd_9c021b0fe7d6["CompositeByteBuf"] 6e691bb1_7026_aa01_b194_50da474f4630 -->|defined in| 6b8e4d93_5aed_4ff7_ccdd_9c021b0fe7d6 7f47fb34_715f_b7f8_6f12_1757176c8137["_getLongLE()"] 7f47fb34_715f_b7f8_6f12_1757176c8137 -->|calls| 6e691bb1_7026_aa01_b194_50da474f4630 d3be0b0f_c8ba_dc16_970f_8a5302e005af["idx()"] 6e691bb1_7026_aa01_b194_50da474f4630 -->|calls| d3be0b0f_c8ba_dc16_970f_8a5302e005af 5d389519_3ef7_6e68_9f2b_581c587a5a88["_getShortLE()"] 6e691bb1_7026_aa01_b194_50da474f4630 -->|calls| 5d389519_3ef7_6e68_9f2b_581c587a5a88 style 6e691bb1_7026_aa01_b194_50da474f4630 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buffer/src/main/java/io/netty/buffer/CompositeByteBuf.java lines 1024–1034
@Override
protected int _getIntLE(int index) {
Component c = findComponent0(index);
if (index + 4 <= c.endOffset) {
return c.buf.getIntLE(c.idx(index));
} 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
Calls
Called By
Source
Frequently Asked Questions
What does _getIntLE() do?
_getIntLE() is a function in the netty codebase, defined in buffer/src/main/java/io/netty/buffer/CompositeByteBuf.java.
Where is _getIntLE() defined?
_getIntLE() is defined in buffer/src/main/java/io/netty/buffer/CompositeByteBuf.java at line 1024.
What does _getIntLE() call?
_getIntLE() calls 2 function(s): _getShortLE, idx.
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