MCPcopy Index your code
hub / github.com/clojure/clojure / readLong

Method readLong

src/jvm/clojure/asm/ClassReader.java:3353–3357  ·  view source on GitHub ↗

Reads a signed long value in #b. This method is intended for Attribute sub classes, and is normally not needed by class generators or adapters. @param offset the start offset of the value to be read in #b. @return the read value.

(final int offset)

Source from the content-addressed store, hash-verified

3351 * @return the read value.
3352 */
3353 public long readLong(final int offset) {
3354 long l1 = readInt(offset);
3355 long l0 = readInt(offset + 4) & 0xFFFFFFFFL;
3356 return (l1 << 32) | l0;
3357 }
3358
3359 /**
3360 * Reads a CONSTANT_Utf8 constant pool entry in {@link #b}. <i>This method is intended for {@link

Callers 3

readElementValueMethod · 0.95
readConstMethod · 0.95
SymbolTableMethod · 0.80

Calls 1

readIntMethod · 0.95

Tested by

no test coverage detected