compareUintBigEndianA() — netty Function Reference
Architecture documentation for the compareUintBigEndianA() function in ByteBufUtil.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD f13bbdbc_c746_d1d7_3f31_437bb0661349["compareUintBigEndianA()"] 920454f6_25f6_4a9b_3d32_9684c3e11f6c["ByteBufUtil"] f13bbdbc_c746_d1d7_3f31_437bb0661349 -->|defined in| 920454f6_25f6_4a9b_3d32_9684c3e11f6c 6be7b2df_f943_8703_84b5_3a297dd217a5["compare()"] 6be7b2df_f943_8703_84b5_3a297dd217a5 -->|calls| f13bbdbc_c746_d1d7_3f31_437bb0661349 c28e03ff_2139_d020_2c20_9858eaa2b257["uintFromLE()"] f13bbdbc_c746_d1d7_3f31_437bb0661349 -->|calls| c28e03ff_2139_d020_2c20_9858eaa2b257 style f13bbdbc_c746_d1d7_3f31_437bb0661349 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buffer/src/main/java/io/netty/buffer/ByteBufUtil.java lines 494–505
private static long compareUintBigEndianA(
ByteBuf bufferA, ByteBuf bufferB, int aIndex, int bIndex, int uintCountIncrement) {
for (int aEnd = aIndex + uintCountIncrement; aIndex < aEnd; aIndex += 4, bIndex += 4) {
long a = bufferA.getUnsignedInt(aIndex);
long b = uintFromLE(bufferB.getUnsignedIntLE(bIndex));
long comp = a - b;
if (comp != 0) {
return comp;
}
}
return 0;
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does compareUintBigEndianA() do?
compareUintBigEndianA() is a function in the netty codebase, defined in buffer/src/main/java/io/netty/buffer/ByteBufUtil.java.
Where is compareUintBigEndianA() defined?
compareUintBigEndianA() is defined in buffer/src/main/java/io/netty/buffer/ByteBufUtil.java at line 494.
What does compareUintBigEndianA() call?
compareUintBigEndianA() calls 1 function(s): uintFromLE.
What calls compareUintBigEndianA()?
compareUintBigEndianA() is called by 1 function(s): compare.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free