Home
last modified time | relevance | path

Searched refs:adler (Results 1 – 1 of 1) sorted by relevance

/art/runtime/
Dcheck_jni.cc1384 uLong adler = 0; in Create() local
1386 adler = adler32(adler32(0L, Z_NULL, 0), reinterpret_cast<const Bytef*>(original_buf), len); in Create()
1389 GuardedCopy* copy = new (new_buf) GuardedCopy(original_buf, len, adler); in Create()
1482 GuardedCopy(void* original_buf, size_t len, uLong adler) : in GuardedCopy() argument
1483 magic_(kGuardMagic), adler_(adler), original_ptr_(original_buf), original_length_(len) { in GuardedCopy()