HomeSort by relevance Sort by last modified time
    Searched defs:HashCode (Results 1 - 25 of 108) sorted by null

1 2 3 4 5

  /external/guava/guava-tests/test/com/google/common/hash/
Murmur3Hash32Test.java 55 private static void assertHash(int expected, HashCode actual) {
56 assertEquals(HashCode.fromInt(expected), actual);
MessageDigestHashFunctionTest.java 100 HashCode.fromBytes(digest.digest(input)),
104 HashCode.fromBytes(Arrays.copyOf(digest.digest(input), bytes)),
HashingTest.java 164 private void checkConsistentHashCorrectness(long hashCode) {
167 int b = Hashing.consistentHash(hashCode, shards);
210 checkSameResult(HashCode.fromLong(1), 1);
211 checkSameResult(HashCode.fromLong(0x9999999999999999L), 0x9999999999999999L);
212 checkSameResult(HashCode.fromInt(0x99999999), 0x0000000099999999L);
215 public void checkSameResult(HashCode hashCode, long equivLong) {
216 assertEquals(Hashing.consistentHash(equivLong, 5555), Hashing.consistentHash(hashCode, 5555));
243 Hashing.combineOrdered(Collections.<HashCode>emptySet());
251 Hashing.combineOrdered(ImmutableList.of(HashCode.fromInt(32), HashCode.fromLong(32L)))
    [all...]
  /external/v8/src/compiler/
value-numbering-reducer.cc 19 size_t HashCode(Node* node) {
20 size_t h = base::hash_combine(node->op()->HashCode(), node->InputCount());
65 const size_t hash = HashCode(node);
200 for (size_t j = HashCode(old_entry) & mask;; j = (j + 1) & mask) {
operator.h 86 // Compute a hashcode to speed up equivalence-set checking.
89 virtual size_t HashCode() const { return base::hash<Opcode>()(opcode()); }
190 size_t HashCode() const final {
  /external/guava/guava/src/com/google/common/hash/
HashCode.java 39 public abstract class HashCode {
40 HashCode() {}
48 * Returns the first four bytes of {@linkplain #asBytes() this hashcode's bytes}, converted to
56 * Returns the first eight bytes of {@linkplain #asBytes() this hashcode's bytes}, converted to
64 * If this hashcode has enough bits, returns {@code asLong()}, otherwise returns a {@code long}
68 * @since 14.0 (since 11.0 as {@code Hashing.padToLong(HashCode)})
74 * changes to it will <i>not</i> be reflected in this {@code HashCode} object or any other arrays
99 * Returns a mutable view of the underlying bytes for the given {@code HashCode} if it is a
100 * byte-based hashcode. Otherwise it returns {@link HashCode#asBytes}. Do <i>not</i> mutate thi
    [all...]
  /art/compiler/optimizing/
gvn.cc 89 size_t hash_code = HashCode(instruction);
102 size_t hash_code = HashCode(instruction);
118 size_t hash_code = HashCode(instruction);
299 size_t HashCode(HInstruction* instruction) const {
  /external/sfntly/cpp/src/sample/chromium/
subsetter_impl.cc 78 int32_t HashCode(int32_t platform_id, int32_t encoding_id, int32_t language_id,
121 int32_t hash_code = HashCode(name_table->PlatformId(i),
  /external/guice/lib/
guava-16.0.1.jar 
  /frameworks/data-binding/prebuilds/1.0-rc0/
databinding-studio-bundle.jar 
  /prebuilts/devtools/tools/lib/
guava-17.0.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0/
compiler-2.1.0.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0-beta1/
compiler-2.1.0-beta1.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0-beta3/
compiler-2.1.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0-rc1/
compiler-2.1.0-rc1.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.2/
compiler-2.1.2.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.3/
compiler-2.1.3.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.2.0/
compiler-2.2.0.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.2.0-alpha1/
compiler-2.2.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.2.0-alpha3/
compiler-2.2.0-alpha3.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.2.0-alpha4/
compiler-2.2.0-alpha4.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.2.0-alpha7/
compiler-2.2.0-alpha7.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.2.0-beta1/
compiler-2.2.0-beta1.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.2.0-beta2/
compiler-2.2.0-beta2.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.2.0-beta3/
compiler-2.2.0-beta3.jar 

Completed in 286 milliseconds

1 2 3 4 5