Home
last modified time | relevance | path

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

12345678910>>...19

/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> { impl
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/pdf/
DSkPDFGradientShader.h25 struct Key { struct
37 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/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() argument
37 uint8_t fConversionKey; argument
39 bool operator==(const Key& that) const { argument
DGrVkSampler.h29 struct Key { struct
30 Key(uint8_t samplerKey, const GrVkSamplerYcbcrConversion::Key& ycbcrKey) { in Key() function
37 uint8_t fSamplerKey; argument
38 GrVkSamplerYcbcrConversion::Key fYcbcrKey; argument
/external/skia/src/core/
DSkResourceCache.h31 struct Key { struct
51 bool operator==(const Key& other) const { argument
75 typedef SkResourceCache::Key Key; typedef
DSkVMBlitter.h44 struct Key { struct
58 bool operator==(const Key& that) const; argument
/external/skia/src/gpu/text/
DGrTextBlob.h188 struct Key { struct
213 bool operator==(const Key& other) const; argument
/external/pigweed/pw_kvs/public/pw_kvs/
Dkey.h34 constexpr Key() : str_{nullptr}, length_{0} {} in Key() function
36 constexpr Key(const char* str) in Key() function
40 constexpr Key(const char* str, size_t len) : str_{str}, length_{len} {} in Key() function
41 Key(const std::string& str) : str_{str.data()}, length_{str.length()} {} in Key() function
44 constexpr Key(const std::string_view& str) in Key() function
/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/libcxx/test/std/containers/unord/unord.map/
Dcompare.pass.cpp22 struct Key { struct
23 template <typename T> Key(const T&) {} in Key() argument
24 bool operator== (const Key&) const { return true; } in operator ==() argument
/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/rust/crates/ring/src/aead/
Dchacha20_poly1305_openssh.rs148 struct Key { struct
149 k_1: chacha::Key, argument
150 k_2: chacha::Key, argument
154 impl Key { implementation
155 fn new(key_material: &[u8; KEY_LEN], cpu_features: cpu::Features) -> Key { in new()
186 fn verify(key: poly1305::Key, msg: &[u8], tag: &[u8; TAG_LEN]) -> Result<(), error::Unspecified> { in verify()
Dpoly1305.rs22 pub(super) struct Key { struct
29 impl Key { impl
125 pub(super) fn sign(key: Key, input: &[u8]) -> Tag { in sign()
Dchacha.rs20 pub struct Key([LittleEndian<u32>; KEY_LEN / 4]); struct
22 impl From<[u8; KEY_LEN]> for Key { implementation
29 impl Key { impl
117 key: &Key, in encrypt()
196 key: &Key, in chacha20_test_case_inner()
/external/bcc/examples/networking/http_filter/
Dhttp-parse-complete.c8 struct Key { struct
20 //map <Key, Leaf> argument
/external/skia/tools/gpu/
DMemoryCache.h54 struct Key { struct
56 Key(const SkData& key) : fKey(SkData::MakeWithCopy(key.data(), key.size())) {} in Key() argument
58 Key& operator=(const Key&) = default; argument
63 sk_sp<const SkData> fKey; argument
/external/ruy/ruy/
Dprepacked_cache.h68 struct Key { struct
77 friend bool operator==(const Key& a, const Key& b) { argument
/external/skia/src/gpu/mtl/
DGrMtlDepthStencil.h30 struct Key { struct
39 bool operator==(const Key& that) const { argument
/external/perfetto/src/base/
Dflat_hash_map_unittest.cc47 struct Key { struct
48 static int instances;
50 explicit Key(int v) : val(v) {} in Key() argument
51 ~Key() { instances--; } in ~Key()
52 Key(Key&& other) noexcept { in Key() function
56 bool operator==(const Key& other) { return val == other.val; } in operator ==()
57 int val = 0;
58 int id = instances++;
/external/rust/crates/ring/src/
Dhmac.rs157 pub struct Key { struct
162 /// `hmac::SigningKey` was renamed to `hmac::Key`. argument
172 impl core::fmt::Debug for Key { implementation
180 impl Key { implementation
277 impl From<hkdf::Okm<'_, Algorithm>> for Key { implementation
343 pub fn sign(key: &Key, data: &[u8]) -> Tag { in sign()
356 pub fn verify(key: &Key, data: &[u8], tag: &[u8]) -> Result<(), error::Unspecified> { in verify()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DSparsePropagation.h66 virtual bool IsUntrackedValue(LatticeKey Key) { return false; } in IsUntrackedValue()
70 virtual LatticeVal ComputeLatticeVal(LatticeKey Key) { in ComputeLatticeVal()
150 LatticeVal getExistingValueState(LatticeKey Key) const { in getExistingValueState()
218 LatticeKey Key, raw_ostream &OS) { in PrintLatticeKey()
228 SparseSolver<LatticeKey, LatticeVal, KeyInfo>::getValueState(LatticeKey Key) { in getValueState()
244 void SparseSolver<LatticeKey, LatticeVal, KeyInfo>::UpdateState(LatticeKey Key, in UpdateState()
411 LatticeKey Key = KeyInfo::getLatticeKeyFromValue(&PN); in visitPHINode() local
507 LatticeKey Key; in Print() local
/external/rust/crates/ring/src/rsa/
Dverification.rs26 pub struct Key { struct
32 impl Key { argument
290 let Key { n, e, n_bits } = Key::from_modulus_and_exponent(n, e, params.min_bits, max_bits, 3)?; in verify_rsa_() localVariable
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DDiagnosticInfo.cpp163 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, const Value *V) in Argument()
183 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, const Type *T) in Argument()
189 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, StringRef S) in Argument()
192 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, int N) in Argument()
195 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, float N) in Argument()
198 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, long N) in Argument()
201 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, long long N) in Argument()
204 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, unsigned N) in Argument()
207 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, in Argument()
211 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, in Argument()
[all …]
/external/deqp-deps/SPIRV-Tools/source/opt/
Dfolding_rules.h93 struct Key { struct
98 friend bool operator<(const Key& a, const Key& b) { argument

12345678910>>...19