Searched refs:toHash (Results 1 – 5 of 5) sorted by relevance
/external/lz4/ossfuzz/ |
D | fuzz_helpers.h | 65 size_t const toHash = MIN(FUZZ_RNG_SEED_SIZE, *size); in FUZZ_seed() local 66 *size -= toHash; in FUZZ_seed() 67 *src += toHash; in FUZZ_seed() 68 return XXH32(data, toHash, 0); in FUZZ_seed()
|
/external/okio/okio/src/jvmMain/kotlin/okio/ |
D | HashingSink.kt | 75 val toHash = minOf(byteCount - hashedCount, s.limit - s.pos).toInt() in write() constant 77 messageDigest.update(s.data, s.pos, toHash) in write() 79 mac!!.update(s.data, s.pos, toHash) in write() 81 hashedCount += toHash in write()
|
/external/okio/okio/src/nonJvmMain/kotlin/okio/ |
D | HashingSink.kt | 37 val toHash = minOf(byteCount - hashedCount, s.limit - s.pos).toInt() in write() constant 38 hashFunction.update(s.data, s.pos, toHash) in write() 39 hashedCount += toHash in write()
|
/external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/ |
D | RubyMap.java | 193 return toHash(context).op_equal(context, _other); in eq() 217 return toHash(getRuntime().getCurrentContext()).inspect(); in inspect() 342 public RubyHash toHash(ThreadContext context) { in toHash() method in RubyMap
|
D | RubyMessage.java | 348 return Helpers.invoke(context, message.toHash(context), "to_json"); in encodeJson() 372 public IRubyObject toHash(ThreadContext context) { in toHash() method in RubyMessage
|