MCPcopy Create free account
hub / github.com/apache/tomcat / writeU2

Method writeU2

java/org/apache/jasper/compiler/SmapUtil.java:336–339  ·  view source on GitHub ↗
(int val)

Source from the content-addressed store, hash-verified

334 }
335
336 void writeU2(int val) {
337 writeU1(val >> 8);
338 writeU1(val & 0xFF);
339 }
340
341 void writeU4(int val) {
342 writeU2(val >> 16);

Callers 8

addSDEMethod · 0.95
copyMembersMethod · 0.95
copyAttrsMethod · 0.95
writeAttrForSDEMethod · 0.95
randomAccessWriteU2Method · 0.95
writeU4Method · 0.95
copyConstantPoolMethod · 0.95
writeUtf8ForSDEMethod · 0.95

Calls 1

writeU1Method · 0.95

Tested by

no test coverage detected