Lines Matching defs:jbytes
272 jint jbytes, jchars, ints;
276 jbytes = murmur3_32(TWO_BYTE, 2);
278 assert (jbytes == jchars,
279 err_msg("Hashes did not match. b:%08x != c:%08x\n", jbytes, jchars));
281 jbytes = murmur3_32(FOUR_BYTE, 4);
284 assert ((jbytes == jchars) && (jbytes == ints),
285 err_msg("Hashes did not match. b:%08x != c:%08x != i:%08x\n", jbytes, jchars, ints));
287 jbytes = murmur3_32(SIX_BYTE, 6);
289 assert (jbytes == jchars,
290 err_msg("Hashes did not match. b:%08x != c:%08x\n", jbytes, jchars));
292 jbytes = murmur3_32(EIGHT_BYTE, 8);
295 assert ((jbytes == jchars) && (jbytes == ints),
296 err_msg("Hashes did not match. b:%08x != c:%08x != i:%08x\n", jbytes, jchars, ints));