Home / Function/ linearToUpperCase() — netty Function Reference

linearToUpperCase() — netty Function Reference

Architecture documentation for the linearToUpperCase() function in AsciiStringUtil.java from the netty codebase.

Function java CommonUtil Logging calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  3cc61e9d_c193_86a8_9877_a788263a1913["linearToUpperCase()"]
  84873396_ba4c_3002_b5f9_9b7743d03751["AsciiStringUtil"]
  3cc61e9d_c193_86a8_9877_a788263a1913 -->|defined in| 84873396_ba4c_3002_b5f9_9b7743d03751
  4145ce36_ee3b_ee17_ea11_7e3ee9de39d1["toUpperCase()"]
  4145ce36_ee3b_ee17_ea11_7e3ee9de39d1 -->|calls| 3cc61e9d_c193_86a8_9877_a788263a1913
  4145ce36_ee3b_ee17_ea11_7e3ee9de39d1["toUpperCase()"]
  3cc61e9d_c193_86a8_9877_a788263a1913 -->|calls| 4145ce36_ee3b_ee17_ea11_7e3ee9de39d1
  style 3cc61e9d_c193_86a8_9877_a788263a1913 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

common/src/main/java/io/netty/util/AsciiStringUtil.java lines 226–230

    private static void linearToUpperCase(final byte[] src, final int srcOffset, final byte[] dst) {
        for (int i = 0; i < dst.length; ++i) {
            dst[i] = toUpperCase(src[srcOffset + i]);
        }
    }

Domain

Subdomains

Called By

Frequently Asked Questions

What does linearToUpperCase() do?
linearToUpperCase() is a function in the netty codebase, defined in common/src/main/java/io/netty/util/AsciiStringUtil.java.
Where is linearToUpperCase() defined?
linearToUpperCase() is defined in common/src/main/java/io/netty/util/AsciiStringUtil.java at line 226.
What does linearToUpperCase() call?
linearToUpperCase() calls 1 function(s): toUpperCase.
What calls linearToUpperCase()?
linearToUpperCase() is called by 1 function(s): toUpperCase.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free