HomeSort by relevance Sort by last modified time
    Searched refs:hashFunction (Results 1 - 25 of 31) sorted by null

1 2

  /external/guava/guava-tests/test/com/google/common/hash/
HashFunctionsTest.java 31 HashFunction hasher = Hashing.goodFastHash(i);
41 private static void assertInvariants(HashFunction hashFunction) {
46 HashCode hashcode1 = hashFunction.newHasher().putObject(o, HashTestUtils.BAD_FUNNEL).hash();
47 HashCode hashcode2 = hashFunction.newHasher().putObject(o, HashTestUtils.BAD_FUNNEL).hash();
49 assertEquals(hashFunction.bits(), hashcode1.bits());
50 assertEquals(hashFunction.bits(), hashcode1.asBytes().length * 8);
55 assertHashBytesThrowsCorrectExceptions(hashFunction);
58 private static void assertHashBytesThrowsCorrectExceptions(HashFunction hashFunction) {
    [all...]
HashTestUtils.java 46 static void verifyHashFunction(HashFn hashFunction, int hashbits, int expected) {
56 byte[] hash = hashFunction.hash(Arrays.copyOf(key, i), seed);
61 byte[] result = hashFunction.hash(hashes, 0);
  /external/chromium_org/third_party/angle_dx11/src/compiler/
OutputESSL.cpp 11 ShHashFunction64 hashFunction,
14 : TOutputGLSLBase(objSink, clampingStrategy, hashFunction, nameMap, symbolTable)
OutputESSL.h 17 ShHashFunction64 hashFunction,
OutputGLSL.h 17 ShHashFunction64 hashFunction,
OutputGLSL.cpp 11 ShHashFunction64 hashFunction,
14 : TOutputGLSLBase(objSink, clampingStrategy, hashFunction, nameMap, symbolTable)
VariableInfo.cpp 81 ShHashFunction64 hashFunction);
88 ShHashFunction64 hashFunction)
95 getUserDefinedVariableInfo(type, lname, lmappedName, infoList, hashFunction);
98 getUserDefinedVariableInfo(type, name, mappedName, infoList, hashFunction);
130 ShHashFunction64 hashFunction)
140 mappedName + "." + TIntermTraverser::hash(fieldName, hashFunction),
142 hashFunction);
158 ShHashFunction64 hashFunction)
161 mHashFunction(hashFunction)
VariableInfo.h 31 ShHashFunction64 hashFunction);
ShHandle.h 75 ShHashFunction64 getHashFunction() const { return hashFunction; }
150 ShHashFunction64 hashFunction;
OutputGLSLBase.h 21 ShHashFunction64 hashFunction,
Compiler.cpp 95 hashFunction = resources.HashFunction;
178 if (success && (compileOptions & SH_MAP_LONG_VARIABLE_NAMES) && hashFunction == NULL)
363 CollectAttribsUniforms collect(attribs, uniforms, hashFunction);
OutputGLSLBase.cpp 44 ShHashFunction64 hashFunction,
51 mHashFunction(hashFunction),
Intermediate.cpp     [all...]
intermediate.h 567 static TString hash(const TString& name, ShHashFunction64 hashFunction);
  /external/srec/portable/include/
phashtable.h 111 PHashFunction hashFunction;
  /external/srec/portable/src/
phashtable.c 93 tmp->args.hashFunction = PHASH_TABLE_DEFAULT_HASH_FUNCTION;
100 if (tmp->args.hashFunction == PHASH_TABLE_DEFAULT_HASH_FUNCTION)
101 tmp->args.hashFunction = hashString;
217 hashCode = table->args.hashFunction(key);
264 hashCode = table->args.hashFunction(key);
348 hashCode = table->args.hashFunction(key);
437 hashCode = table->args.hashFunction(key);
  /external/chromium_org/third_party/sqlite/src/ext/fts1/
ft_hash.c 149 ** The name of the function is "hashFunction". The function takes a
150 ** single parameter "keyClass". The return value of hashFunction()
152 ** of hashFunction() is a pointer to a function that takes two parameters
155 static int (*hashFunction(int keyClass))(const void*,int){
242 xHash = hashFunction(pH->keyClass);
326 xHash = hashFunction(pH->keyClass);
357 xHash = hashFunction(pH->keyClass);
fts1_hash.c 129 ** The name of the function is "hashFunction". The function takes a
130 ** single parameter "keyClass". The return value of hashFunction()
132 ** of hashFunction() is a pointer to a function that takes two parameters
135 static int (*hashFunction(int keyClass))(const void*,int){
200 xHash = hashFunction(pH->keyClass);
284 xHash = hashFunction(pH->keyClass);
320 xHash = hashFunction(pH->keyClass);
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2_hash.c 134 ** The name of the function is "hashFunction". The function takes a
135 ** single parameter "keyClass". The return value of hashFunction()
137 ** of hashFunction() is a pointer to a function that takes two parameters
140 static int (*hashFunction(int keyClass))(const void*,int){
205 xHash = hashFunction(pH->keyClass);
289 xHash = hashFunction(pH->keyClass);
325 xHash = hashFunction(pH->keyClass);
  /external/srec/shared/src/
HashMapImpl.c 74 hashArgs.hashFunction = PHASH_TABLE_DEFAULT_HASH_FUNCTION;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
BuildHelper.java 45 import com.google.common.hash.HashFunction;
    [all...]
  /prebuilts/devtools/tools/lib/
ant-tasks.jar 
  /prebuilts/tools/common/gradle-plugins/repository/com/android/tools/internal/internal-plugins/1.0/
internal-plugins-1.0.jar 
  /external/srec/seti/sltsEngine/src/
run_seq_lts.c 150 hashArgs.hashFunction = HashGetCode; // PHASH_TABLE_DEFAULT_HASH_FUNCTION;
    [all...]
  /external/srec/srec/crec/
srec_context.c 354 hashArgs.hashFunction = HashGetCode; // PHASH_TABLE_DEFAULT_HASH_FUNCTION;
    [all...]

Completed in 2085 milliseconds

1 2