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

Method putInt

ij/src/main/java/ij/io/RoiEncoder.java:495–500  ·  view source on GitHub ↗
(int base, int i)

Source from the content-addressed store, hash-verified

493 }
494
495 void putInt(int base, int i) {
496 data[base] = (byte)(i>>24);
497 data[base+1] = (byte)(i>>16);
498 data[base+2] = (byte)(i>>8);
499 data[base+3] = (byte)i;
500 }
501
502
503}

Callers 9

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

Calls

no outgoing calls

Tested by

no test coverage detected