setHashAddr static method

void setHashAddr(
  1. ByteBuffer addr,
  2. int hash
)

Set hash address in the address buffer. Modifies the provided ByteBuffer's position and writes the hash value.

@param addr The ByteBuffer representing the address. @param hash The hash address value (integer).

Implementation

static void setHashAddr(ByteBuffer addr, int hash) {
  addr.position(24); // Set position to byte 24
  addr.putInt(hash); // Write the integer value
}