Searched refs:key2 (Results 1 - 10 of 10) sorted by relevance

/fuchsia/zircon/system/ulib/fuzz-utils/include/fuzz-utils/
H A Dstring-map.h62 static bool LessThan(const char* key1, const char* key2) { return strcmp(key1, key2) < 0; } argument
63 static bool EqualTo(const char* key1, const char* key2) { return strcmp(key1, key2) == 0; } argument
/fuchsia/zircon/system/ulib/fs/include/fs/
H A Dpseudo-dir.h96 static bool LessThan(uint64_t key1, uint64_t key2) { return key1 < key2; } argument
97 static bool EqualTo(uint64_t key1, uint64_t key2) { return key1 == key2; } argument
104 static bool LessThan(const fbl::String& key1, const fbl::String& key2) { argument
105 return key1 < key2;
107 static bool EqualTo(const fbl::String& key1, const fbl::String& key2) { argument
108 return key1 == key2;
/fuchsia/zircon/system/ulib/fbl/include/fbl/
H A Dintrusive_container_utils.h22 // LessThan : A static method which takes two keys (key1 and key2) and returns
23 // true if-and-only-if key1 is considered to be less than key2 for
25 // EqualTo : A static method which takes two keys (key1 and key2) and returns
26 // true if-and-only-if key1 is considered to be equal to key2.
48 static bool LessThan(const KeyType& key1, const KeyType& key2) { return key1 < key2; } argument
49 static bool EqualTo (const KeyType& key1, const KeyType& key2) { return key1 == key2; } argument
/fuchsia/zircon/third_party/ulib/uboringssl/decrepit/xts/
H A Dxts.c60 void *key1, *key2; member in struct:xts128_context
78 (*ctx->block2)(tweak.c, tweak.c, ctx->key2);
202 xctx->xts.key2 = &xctx->ks2;
213 !xctx->xts.key2 ||
234 if (xctx->xts.key2) {
235 if (xctx->xts.key2 != &xctx->ks2) {
238 xctx_out->xts.key2 = &xctx_out->ks2;
244 // key1 and key2 are used as an indicator both key and IV are set
246 xctx->xts.key2 = NULL;
/fuchsia/zircon/system/ulib/trace-provider/
H A Dhandler_impl.h83 static bool EqualTo(const CString& key1, const CString& key2) { argument
84 return strcmp(key1, key2) == 0;
/fuchsia/zircon/system/utest/fbl/
H A Dintrusive_hash_table_sll_tests.cpp35 static bool LessThan(const OtherKeyType& key1, const OtherKeyType& key2) { argument
36 return key1 < key2;
39 static bool EqualTo(const OtherKeyType& key1, const OtherKeyType& key2) { argument
40 return key1 == key2;
H A Dintrusive_hash_table_dll_tests.cpp35 static bool LessThan(const OtherKeyType& key1, const OtherKeyType& key2) { argument
36 return key1 < key2;
39 static bool EqualTo(const OtherKeyType& key1, const OtherKeyType& key2) { argument
40 return key1 == key2;
H A Dintrusive_wavl_tree_tests.cpp32 static bool LessThan(const KeyType& key1, const KeyType& key2) { return key1 < key2; } argument
33 static bool EqualTo (const KeyType& key1, const KeyType& key2) { return key1 == key2; } argument
/fuchsia/zircon/system/utest/crypto/
H A Dhkdf.cpp59 Secret ikm, key1, key2, key3; local
74 EXPECT_OK(hkdf.Derive("same", md_size, &key2));
75 EXPECT_EQ(key1.len(), key2.len());
76 EXPECT_EQ(memcmp(key1.get(), key2.get(), key1.len()), 0);
/fuchsia/zircon/third_party/ulib/uboringssl/crypto/fipsmodule/aes/asm/
H A Daesni-x86_64.pl1750 # const AES_KEY *key1, const AES_KEY *key2
1756 my ($key2,$ivp,$len_)=("%r8","%r9","%r9");
1788 mov 240(%r8),$rounds # key2->rounds
1792 &aesni_generate1("enc",$key2,$rounds,$inout0);
2271 mov 240($key2),$rounds # key2->rounds
2275 &aesni_generate1("enc",$key2,$rounds,$inout0);

Completed in 106 milliseconds