MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / putShort

Method putShort

ij/src/main/java/ij/io/RoiEncoder.java:482–485  ·  view source on GitHub ↗
(int base, int v)

Source from the content-addressed store, hash-verified

480 }
481
482 void putShort(int base, int v) {
483 data[base] = (byte)(v>>>8);
484 data[base+1] = (byte)v;
485 }
486
487 void putFloat(int base, float v) {
488 int tmp = Float.floatToIntBits(v);

Callers 9

writeMethod · 0.95
saveShapeRoiMethod · 0.95
saveOverlayOptionsMethod · 0.95
saveTextRoiMethod · 0.95
saveImageRoiMethod · 0.95
putHeader2Method · 0.95
putNameMethod · 0.95
putPropsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected