Home
last modified time | relevance | path

Searched defs:Key (Results 1 – 25 of 559) sorted by relevance

12345678910>>...23

/external/rust/crates/log/src/kv/
Dkey.rs11 fn to_key(&self) -> Key; in to_key()
18 fn to_key(&self) -> Key { in to_key()
23 impl<'k> ToKey for Key<'k> { implementation
24 fn to_key(&self) -> Key { in to_key()
30 fn to_key(&self) -> Key { in to_key()
37 pub struct Key<'k> { struct
41 impl<'k> Key<'k> { implementation
53 impl<'k> fmt::Debug for Key<'k> { implementation
59 impl<'k> fmt::Display for Key<'k> { implementation
65 impl<'k> hash::Hash for Key<'k> { implementation
[all …]
/external/skia/src/text/gpu/
DTextBlob.h64 struct Key { struct
87 bool operator==(const Key& other) const; argument
/external/skia/src/pdf/
DSkPDFGradientShader.h26 struct Key { struct
38 uint32_t operator()(const Key& k) const { return k.fHash; } in operator() argument
/external/pigweed/pw_kvs/
Dkey_test.cc33 TEST(Key, ConstructorEmpty) { in TEST() argument
42 TEST(Key, ConstructorString) { in TEST() argument
52 TEST(Key, ConstructorStringView) { in TEST() argument
61 TEST(Key, ConstructorNullTermString) { in TEST() argument
70 TEST(Key, ConstructorCharPtrLength) { in TEST() argument
79 TEST(Key, ConstructorCopy) { in TEST() argument
89 TEST(Key, Access) { in TEST() argument
97 TEST(Key, Iterator) { in TEST() argument
104 TEST(Key, Same) { in TEST() argument
110 TEST(Key, Different) { in TEST() argument
[all …]
/external/skia/src/gpu/ganesh/vk/
DGrVkSamplerYcbcrConversion.h26 struct Key { struct
27 Key() : fVkFormat(VK_FORMAT_UNDEFINED), fExternalFormat(0), fConversionKey(0) {} in Key() argument
28 Key(VkFormat vkFormat, uint64_t externalFormat, uint8_t conversionKey) { in Key() function
37 uint8_t fConversionKey; argument
39 bool operator==(const Key& that) const { argument
DGrVkSampler.h29 struct Key { struct
30 Key(uint32_t samplerKey, const GrVkSamplerYcbcrConversion::Key& ycbcrKey) { in Key() function
37 GrVkSamplerYcbcrConversion::Key fYcbcrKey; argument
38 uint32_t fSamplerKey; argument
/external/skia/src/core/
DSkResourceCache.h31 struct Key { struct
51 bool operator==(const Key& other) const { argument
75 typedef SkResourceCache::Key Key; argument
DSkVMBlitter.h45 struct Key { struct
59 bool operator==(const Key& that) const; argument
/external/cronet/net/ssl/
Dssl_client_session_cache.h41 struct NET_EXPORT Key { struct
46 Key& operator=(const Key& other); argument
47 Key& operator=(Key&& other); argument
54 NetworkAnonymizationKey network_anonymization_key; argument
73 bssl::UniquePtr<SSL_SESSION> Lookup(const Key& cache_key); argument
/external/rust/beto-rust/nearby/crypto/crypto_provider/src/aes/
Dctr.rs26 type Key: AesKey; typedef
29 fn new(key: &Self::Key, iv: [u8; 16]) -> Self; in new()
48 pub fn aes_128_ctr_test_encrypt<A: AesCtr<Key = Aes128Key>>(_marker: marker::PhantomData<A>) { in aes_128_ctr_test_encrypt()
77 pub fn aes_128_ctr_test_decrypt<A: AesCtr<Key = Aes128Key>>(_marker: marker::PhantomData<A>) { in aes_128_ctr_test_decrypt()
106 pub fn aes_256_ctr_test_encrypt<A: AesCtr<Key = Aes256Key>>(_marker: marker::PhantomData<A>) { in aes_256_ctr_test_encrypt()
136 pub fn aes_256_ctr_test_decrypt<A: AesCtr<Key = Aes256Key>>(_marker: marker::PhantomData<A>) { in aes_256_ctr_test_decrypt()
183 fn aes_128_ctr_test_cases<F: AesCtrFactory<Key = Aes128Key>>( in aes_128_ctr_test_cases()
206 fn aes_256_ctr_test_cases<F: AesCtrFactory<Key = Aes256Key>>( in aes_256_ctr_test_cases()
Dmod.rs40 type Key: AesKey; typedef
52 type Key: AesKey; typedef
175 pub fn aes_128_test_encrypt<A: AesEncryptCipher<Key = Aes128Key>>( in aes_128_test_encrypt()
201 pub fn aes_128_test_decrypt<A: AesDecryptCipher<Key = Aes128Key>>( in aes_128_test_decrypt()
227 pub fn aes_256_test_encrypt<A: AesEncryptCipher<Key = Aes256Key>>( in aes_256_test_encrypt()
254 pub fn aes_256_test_decrypt<A: AesDecryptCipher<Key = Aes256Key>>( in aes_256_test_decrypt()
297 fn aes_128_encrypt_test_cases<A: AesFactory<Key = Aes128Key>>( in aes_128_encrypt_test_cases()
319 fn aes_128_decrypt_test_cases<F: AesFactory<Key = Aes128Key>>( in aes_128_decrypt_test_cases()
341 fn aes_256_encrypt_test_cases<F: AesFactory<Key = Aes256Key>>( in aes_256_encrypt_test_cases()
363 fn aes_256_decrypt_test_cases<F: AesFactory<Key = Aes256Key>>( in aes_256_decrypt_test_cases()
/external/libchrome/mojo/public/cpp/bindings/
Dmap.h18 base::flat_map<Key, Value> MapToFlatMap(const std::map<Key, Value>& input) { in MapToFlatMap()
23 base::flat_map<Key, Value> MapToFlatMap(std::map<Key, Value>&& input) { in MapToFlatMap()
29 std::map<Key, Value> FlatMapToMap(const base::flat_map<Key, Value>& input) { in FlatMapToMap()
34 std::map<Key, Value> FlatMapToMap(base::flat_map<Key, Value>&& input) { in FlatMapToMap()
/external/pigweed/pw_kvs/public/pw_kvs/
Dkey.h34 constexpr Key() : str_{nullptr}, length_{0} {} in Key() function
36 constexpr Key(const char* str) : str_{str}, length_{CStringLength(str)} {} in Key() function
37 constexpr Key(const char* str, size_t len) : str_{str}, length_{len} {} in Key() function
38 Key(const std::string& str) : str_{str.data()}, length_{str.length()} {} in Key() function
41 constexpr Key(const std::string_view& str) in Key() function
/external/libcxx/test/std/containers/associative/map/
Dcompare.pass.cpp23 struct Key { struct
24 template <typename T> Key(const T&) {} in Key() argument
25 bool operator< (const Key&) const { return false; } in operator <() argument
/external/libcxx/test/std/containers/unord/unord.map/
Dcompare.pass.cpp22 struct Key { struct
23 template <typename T> Key(const T&) {} in Key() function
24 bool operator== (const Key&) const { return true; } in operator ==() argument
/external/rust/crates/ring/src/aead/
Dpoly1305.rs22 pub(super) struct Key { struct
30 impl Key { argument
126 pub(super) fn sign(key: Key, input: &[u8]) -> Tag { in sign()
Dchacha.rs35 pub struct Key { struct
40 impl Key { implementation
54 impl Key { impl
108 key: &Key, in encrypt_less_safe()
261 f: impl for<'k, 'i> Fn(&'k Key, Counter, &'i mut [u8], RangeFrom<usize>), in chacha20_test()
299 key: &Key, in chacha20_test_case_inner()
306 f: &impl for<'k, 'i> Fn(&'k Key, Counter, &'i mut [u8], RangeFrom<usize>), in chacha20_test_case_inner()
/external/cronet/buildtools/third_party/libc++/trunk/test/std/containers/unord/unord.map/
Dcompare.pass.cpp23 struct Key { struct
24 template <typename T> Key(const T&) {} in Key() argument
25 bool operator== (const Key&) const { return true; } in operator ==() argument
/external/cronet/buildtools/third_party/libc++/trunk/test/std/containers/associative/map/
Dcompare.pass.cpp24 struct Key { struct
25 template <typename T> Key(const T&) {} in Key() function
26 bool operator< (const Key&) const { return false; } in operator <() argument
/external/bcc/examples/networking/http_filter/
Dhttp-parse-complete.c8 struct Key { struct
20 //map <Key, Leaf> argument
/external/rust/crates/indexmap/src/
Dmutable_keys.rs20 type Key; typedef
27 ) -> Option<(usize, &mut Self::Key, &mut Self::Value)> in get_full_mut2()
29 Q: Hash + Equivalent<Self::Key>; in get_full_mut2()
40 F: FnMut(&mut Self::Key, &mut Self::Value) -> bool; in retain2()
56 type Key = K; typedef
/external/skia/tools/gpu/
DMemoryCache.h54 struct Key { struct
56 Key(const SkData& key) : fKey(SkData::MakeWithCopy(key.data(), key.size())) {} in Key() function
58 Key& operator=(const Key&) = default; argument
63 sk_sp<const SkData> fKey; argument
/external/cronet/net/third_party/quiche/src/quiche/quic/tools/
Dsimple_ticket_crypter.h40 struct Key { struct
41 uint8_t key[kKeySize]; argument
46 std::unique_ptr<Key> NewKey(); argument
/external/rust/beto-rust/nearby/crypto/crypto_provider_rustcrypto/src/aes/
Dmod.rs36 type Key = Aes128Key; typedef
44 type Key = Aes256Key; typedef
53 type Key = Aes128Key; typedef
82 type Key = Aes256Key; typedef
113 type Key = crypto_provider::aes::Aes128Key; typedef
115 fn new(key: &Self::Key, iv: [u8; 16]) -> Self { in new()
136 type Key = crypto_provider::aes::Aes256Key; typedef
138 fn new(key: &Self::Key, iv: [u8; 16]) -> Self { in new()
/external/ruy/ruy/
Dprepacked_cache.h68 struct Key { struct
77 friend bool operator==(const Key& a, const Key& b) { argument

12345678910>>...23