_getShortLE() — netty Function Reference
Architecture documentation for the _getShortLE() function in UnpooledDirectByteBuf.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 10a67030_4d44_4853_a165_8c85f48ab32e["_getShortLE()"] 9d6a7cd0_08a5_9155_3c10_b8a8fd6480e9["UnpooledDirectByteBuf"] 10a67030_4d44_4853_a165_8c85f48ab32e -->|defined in| 9d6a7cd0_08a5_9155_3c10_b8a8fd6480e9 b8c7c291_f7be_2449_6653_04debe084b6f["getShortLE()"] b8c7c291_f7be_2449_6653_04debe084b6f -->|calls| 10a67030_4d44_4853_a165_8c85f48ab32e b8c7c291_f7be_2449_6653_04debe084b6f["getShortLE()"] 10a67030_4d44_4853_a165_8c85f48ab32e -->|calls| b8c7c291_f7be_2449_6653_04debe084b6f 8297e768_4f71_a8cc_2920_32911db49025["getShort()"] 10a67030_4d44_4853_a165_8c85f48ab32e -->|calls| 8297e768_4f71_a8cc_2920_32911db49025 style 10a67030_4d44_4853_a165_8c85f48ab32e fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buffer/src/main/java/io/netty/buffer/UnpooledDirectByteBuf.java lines 268–274
@Override
protected short _getShortLE(int index) {
if (PlatformDependent.hasVarHandle()) {
return VarHandleByteBufferAccess.getShortLE(buffer, index);
}
return ByteBufUtil.swapShort(buffer.getShort(index));
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does _getShortLE() do?
_getShortLE() is a function in the netty codebase, defined in buffer/src/main/java/io/netty/buffer/UnpooledDirectByteBuf.java.
Where is _getShortLE() defined?
_getShortLE() is defined in buffer/src/main/java/io/netty/buffer/UnpooledDirectByteBuf.java at line 268.
What does _getShortLE() call?
_getShortLE() calls 2 function(s): getShort, getShortLE.
What calls _getShortLE()?
_getShortLE() is called by 1 function(s): getShortLE.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free