Searched refs:key1 (Results 26 - 50 of 167) sorted by relevance

1234567

/external/v8/src/
H A Dtransitions-inl.h121 int TransitionArray::CompareKeys(Name* key1, uint32_t hash1, PropertyKind kind1, argument
125 int cmp = CompareNames(key1, hash1, key2, hash2);
132 int TransitionArray::CompareNames(Name* key1, uint32_t hash1, Name* key2, argument
134 if (key1 != key2) {
135 // In case of hash collisions key1 is always "less" than key2.
/external/mesa3d/src/mesa/program/
H A Dhash_table.h50 typedef int (*hash_compare_func_t)(const void *key1, const void *key2);
182 hash_table_pointer_compare(const void *key1, const void *key2);
H A Dhash_table.c232 hash_table_pointer_compare(const void *key1, const void *key2) argument
234 return key1 == key2 ? 0 : 1;
/external/pdfium/core/fpdfapi/parser/
H A Dcpdf_crypto_handler.cpp30 uint8_t key1[32]; local
31 PopulateKey(objnum, gennum, key1);
34 FXSYS_memcpy(key1 + m_KeyLen + 5, "sAlT", 4);
37 key1, m_Cipher == FXCIPHER_AES ? m_KeyLen + 9 : m_KeyLen + 5, realkey);
103 uint8_t key1[48]; local
104 PopulateKey(objnum, gennum, key1);
107 FXSYS_memcpy(key1 + m_KeyLen + 5, "sAlT", 4);
111 key1, m_Cipher == FXCIPHER_AES ? m_KeyLen + 9 : m_KeyLen + 5, realkey);
/external/selinux/libsepol/cil/src/
H A Dcil_strpool.c63 static int cil_strpool_compare(hashtab_t h __attribute__ ((unused)), const_hashtab_key_t key1, const_hashtab_key_t key2) argument
65 const char *keyp1 = (const char*)key1;
H A Dcil_symtab.h50 intptr_t key1; member in struct:cil_complex_symtab_key
/external/selinux/libsepol/include/sepol/policydb/
H A Dhashtab.h42 int (*keycmp) (struct hashtab_val * h, const_hashtab_key_t key1, const_hashtab_key_t key2); /* key comparison function */
57 const_hashtab_key_t key1,
/external/selinux/policycoreutils/newrole/
H A Dhashtab.h38 int (*keycmp) (struct hashtab_val * h, const_hashtab_key_t key1, const_hashtab_key_t key2); /* key comparison function */
59 const_hashtab_key_t key1,
/external/v8/src/compiler/
H A Dstate-values-utils.cc20 bool StateValuesCache::AreKeysEqual(void* key1, void* key2) { argument
21 NodeKey* node_key1 = reinterpret_cast<NodeKey*>(key1);
26 return AreValueKeysEqual(reinterpret_cast<StateValuesKey*>(key1),
29 return IsKeysEqualToNode(reinterpret_cast<StateValuesKey*>(key1),
60 bool StateValuesCache::AreValueKeysEqual(StateValuesKey* key1, argument
62 if (key1->count != key2->count) {
65 for (size_t i = 0; i < key1->count; i++) {
66 if (key1->values[i] != key2->values[i]) {
H A Dstate-values-utils.h44 static bool AreKeysEqual(void* key1, void* key2);
46 static bool AreValueKeysEqual(StateValuesKey* key1, StateValuesKey* key2);
/external/icu/icu4c/source/test/intltest/
H A Duvectest.cpp72 UVectorTest_compareInt32(UElement key1, UElement key2) { argument
73 if (key1.integer > key2.integer) {
76 else if (key1.integer < key2.integer) {
84 UVectorTest_compareCstrings(const UElement key1, const UElement key2) { argument
85 return !strcmp((const char *)key1.pointer, (const char *)key2.pointer);
166 static UBool U_CALLCONV neverTRUE(const UElement /*key1*/, const UElement /*key2*/) {
H A Dunifiedcachetest.cpp385 LocaleCacheKey<UCTItem> key1("en_US");
389 assertTrue("", key1.hashCode() == key2.hashCode());
390 assertTrue("", key1.hashCode() != diffKey1.hashCode());
391 assertTrue("", key1.hashCode() != diffKey2.hashCode());
393 assertTrue("", key1 == key2);
394 assertTrue("", key1 != diffKey1);
395 assertTrue("", key1 != diffKey2);
/external/guava/guava-tests/test/com/google/common/hash/
H A DHashTestUtils.java258 int key1 = rand.nextInt();
260 int key2 = key1 ^ (1 << i);
262 int hash1 = function.hashInt(key1).asInt();
297 int key1 = rand.nextInt();
299 int key2 = key1 ^ (1 << i);
301 int hash1 = function.hashInt(key1).asInt();
342 int key1 = rand.nextInt();
344 int key2 = key1 ^ delta;
347 int hash1 = function.hashInt(key1).asInt();
387 int key1
[all...]
/external/libvncserver/libvncserver/
H A Dwebsockets.c169 void webSocketsGenMd5(char * target, char *key1, char *key2, char *key3);
255 char *key1 = NULL, *key2 = NULL, *key3 = NULL; local
293 if (key1 && key2) {
327 } else if ((strncasecmp("sec-websocket-key1: ", line, min(llen,20))) == 0) {
328 key1 = line+20;
330 /* rfbLog("Got key1: %s\n", key1); */
397 if (!(key1 && key2 && key3)) {
404 webSocketsGenMd5(trailer, key1, key2, key3);
438 webSocketsGenMd5(char * target, char *key1, cha argument
[all...]
/external/icu/icu4c/source/common/
H A Dunistr_case.cpp171 uhash_compareCaselessUnicodeString(const UElement key1, const UElement key2) { argument
173 const UnicodeString *str1 = (const UnicodeString*) key1.pointer;
H A Duhash.h588 * @param key1 The string for comparison
590 * @return true if key1 and key2 are equal, return false otherwise.
593 uhash_compareUChars(const UHashTok key1, const UHashTok key2);
598 * @param key1 The string for comparison
600 * @return true if key1 and key2 are equal, return false otherwise.
603 uhash_compareChars(const UHashTok key1, const UHashTok key2);
608 * @param key1 The string for comparison
610 * @return true if key1 and key2 are equal, return false otherwise.
613 uhash_compareIChars(const UHashTok key1, const UHashTok key2);
650 * @param key1 Th
[all...]
/external/clang/test/CodeGen/
H A D2008-03-24-BitField-And-Alloca.c60 unsigned int key1; member in struct:_Key::__anon2047
/external/curl/lib/
H A Dhash.h39 typedef size_t (*comp_function) (void* key1,
/external/icu/icu4c/source/i18n/
H A Dscriptset.h76 uhash_compareScriptSet(const UElement key1, const UElement key2);
/external/libdrm/amdgpu/
H A Damdgpu_device.c59 static int handle_compare(void *key1, void *key2) argument
61 return PTR_TO_UINT(key1) != PTR_TO_UINT(key2);
82 static int fd_compare(void *key1, void *key2) argument
84 int fd1 = PTR_TO_UINT(key1);
H A Dutil_hash_table.c59 int (*compare)(void *key1, void *key2);
77 int (*compare)(void *key1, void *key2))
76 util_hash_table_create(unsigned (*hash)(void *key), int (*compare)(void *key1, void *key2)) argument
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
H A DBreakIteratorRegTest.java41 Object key1 = BreakIterator.registerInstance(sbi, Locale.US, BreakIterator.KIND_WORD);
83 assertTrue(BreakIterator.unregister(key1), "unregister us word (us sentence)");
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_hash_table.c58 int (*compare)(void *key1, void *key2);
80 int (*compare)(void *key1, void *key2))
79 util_hash_table_create(unsigned (*hash)(void *key), int (*compare)(void *key1, void *key2)) argument
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/command/
H A DAbstractCommandHandlerTestCase.java106 * @param key1 - the expected key1
111 protected void verifyTwoDataElements(InvocationRecord invocationRecord, String key1, Object value1, argument
116 assertEqualsAllTypes("value1:" + value1, value1, invocationRecord.getObject(key1));
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/
H A DAbstractCommandHandlerTest.java113 * @param key1 - the expected key1
118 protected void verifyTwoDataElements(InvocationRecord invocationRecord, String key1, Object value1, argument
123 assertEqualsAllTypes("value1:" + value1, value1, invocationRecord.getObject(key1));

Completed in 668 milliseconds

1234567