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

Method getUInt

ij/src/main/java/ij/plugin/DICOM.java:385–394  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

383 }
384
385 long getUInt() throws IOException {
386 long b0 = getByte();
387 long b1 = getByte();
388 long b2 = getByte();
389 long b3 = getByte();
390 if (littleEndian)
391 return ((b3<<24) + (b2<<16) + (b1<<8) + b0);
392 else
393 return ((b0<<24) + (b1<<16) + (b2<<8) + b3);
394 }
395
396 double getDouble() throws IOException {
397 int b0 = getByte();

Callers 1

getHeaderInfoMethod · 0.95

Calls 1

getByteMethod · 0.95

Tested by

no test coverage detected