MCPcopy Index your code
hub / github.com/apache/tomcat / getTwoBytes

Method getTwoBytes

java/org/apache/coyote/http2/ByteUtil.java:66–68  ·  view source on GitHub ↗
(byte[] input, int firstByte)

Source from the content-addressed store, hash-verified

64
65
66 static int getTwoBytes(byte[] input, int firstByte) {
67 return ((input[firstByte] & 0xFF) << 8) + (input[firstByte + 1] & 0xFF);
68 }
69
70
71 static int getThreeBytes(byte[] input, int firstByte) {

Callers 2

initMethod · 0.95
readSettingsFrameMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected