_setIntLE() — netty Function Reference
Architecture documentation for the _setIntLE() function in CompositeByteBuf.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD ebba26d6_d925_80a4_0e04_fdb113896835["_setIntLE()"] 6b8e4d93_5aed_4ff7_ccdd_9c021b0fe7d6["CompositeByteBuf"] ebba26d6_d925_80a4_0e04_fdb113896835 -->|defined in| 6b8e4d93_5aed_4ff7_ccdd_9c021b0fe7d6 544f4eb1_6e50_ecf0_1470_2628cd3b765f["_setLongLE()"] 544f4eb1_6e50_ecf0_1470_2628cd3b765f -->|calls| ebba26d6_d925_80a4_0e04_fdb113896835 d3be0b0f_c8ba_dc16_970f_8a5302e005af["idx()"] ebba26d6_d925_80a4_0e04_fdb113896835 -->|calls| d3be0b0f_c8ba_dc16_970f_8a5302e005af 3cda37ff_705d_4cc3_5c4a_f7f7d54bb5e4["_setShortLE()"] ebba26d6_d925_80a4_0e04_fdb113896835 -->|calls| 3cda37ff_705d_4cc3_5c4a_f7f7d54bb5e4 style ebba26d6_d925_80a4_0e04_fdb113896835 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buffer/src/main/java/io/netty/buffer/CompositeByteBuf.java lines 1284–1296
@Override
protected void _setIntLE(int index, int value) {
Component c = findComponent0(index);
if (index + 4 <= c.endOffset) {
c.buf.setIntLE(c.idx(index), value);
} else if (order() == ByteOrder.BIG_ENDIAN) {
_setShortLE(index, (short) value);
_setShortLE(index + 2, (short) (value >>> 16));
} else {
_setShortLE(index, (short) (value >>> 16));
_setShortLE(index + 2, (short) value);
}
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does _setIntLE() do?
_setIntLE() is a function in the netty codebase, defined in buffer/src/main/java/io/netty/buffer/CompositeByteBuf.java.
Where is _setIntLE() defined?
_setIntLE() is defined in buffer/src/main/java/io/netty/buffer/CompositeByteBuf.java at line 1284.
What does _setIntLE() call?
_setIntLE() calls 2 function(s): _setShortLE, idx.
What calls _setIntLE()?
_setIntLE() is called by 1 function(s): _setLongLE.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free