Home
last modified time | relevance | path

Searched full:keys (Results 1 – 25 of 12840) sorted by relevance

12345678910>>...514

/external/linux-kselftest/tools/testing/selftests/bpf/progs/
Dbpf_flow.c75 static __always_inline int export_flow_keys(struct bpf_flow_keys *keys, in export_flow_keys() argument
78 __u32 key = (__u32)(keys->sport) << 16 | keys->dport; in export_flow_keys()
81 memcpy(&val, keys, sizeof(val)); in export_flow_keys()
118 struct bpf_flow_keys *keys = skb->flow_keys; in parse_eth_proto() local
137 return export_flow_keys(keys, BPF_DROP); in parse_eth_proto()
140 return export_flow_keys(keys, BPF_DROP); in parse_eth_proto()
146 struct bpf_flow_keys *keys = skb->flow_keys; in _dissect() local
148 if (keys->n_proto == bpf_htons(ETH_P_IP)) { in _dissect()
161 return parse_eth_proto(skb, keys->n_proto); in _dissect()
167 struct bpf_flow_keys *keys = skb->flow_keys; in parse_ip_proto() local
[all …]
/external/chromium-trace/catapult/third_party/polymer/components/iron-a11y-keys-behavior/test/
Dbasic-test.html15 <title>iron-a11y-keys</title>
22 <link rel="import" href="../iron-a11y-keys-behavior.html">
27 <x-a11y-basic-keys></x-a11y-basic-keys>
33 <x-a11y-basic-keys stop-keyboard-event-propagation></x-a11y-basic-keys>
39 <x-a11y-combo-keys></x-a11y-combo-keys>
45 <x-a11y-alternate-event-keys></x-a11y-alternate-event-keys>
51 <x-a11y-behavior-keys></x-a11y-behavior-keys>
57 <x-a11y-prevent-keys></x-a11y-prevent-keys>
63 var keys;
93 is: 'x-a11y-basic-keys',
[all …]
/external/python/cpython3/Lib/test/
Dtest_dictviews.py10 kt = type({}.keys())
22 keys = d.keys()
23 self.assertEqual(len(keys), 2)
24 self.assertEqual(set(keys), {1, "a"})
25 self.assertEqual(keys, {1, "a"})
26 self.assertNotEqual(keys, {1, "a", "b"})
27 self.assertNotEqual(keys, {1, "b"})
28 self.assertNotEqual(keys, {1})
29 self.assertNotEqual(keys, 42)
30 self.assertIn(1, keys)
[all …]
/external/wpa_supplicant_8/src/eap_common/
Dikev2_common.c36 { ENCR_AES_CBC, 16, 16 }, /* only 128-bit keys supported for now */
371 struct ikev2_keys *keys, int initiator, in ikev2_derive_auth_data() argument
380 const u8 *SK_p = initiator ? keys->SK_pi : keys->SK_pr; in ikev2_derive_auth_data()
394 if (ikev2_prf_hash(prf->id, SK_p, keys->SK_prf_len, in ikev2_derive_auth_data()
429 struct ikev2_keys *keys, int initiator, in ikev2_decrypt_payload() argument
440 const u8 *SK_e = initiator ? keys->SK_ei : keys->SK_er; in ikev2_decrypt_payload()
441 const u8 *SK_a = initiator ? keys->SK_ai : keys->SK_ar; in ikev2_decrypt_payload()
476 if (ikev2_integ_hash(integ_id, SK_a, keys->SK_integ_len, in ikev2_decrypt_payload()
499 if (ikev2_encr_decrypt(encr_alg->id, SK_e, keys->SK_encr_len, iv, pos, in ikev2_decrypt_payload()
530 int ikev2_build_encrypted(int encr_id, int integ_id, struct ikev2_keys *keys, in ikev2_build_encrypted() argument
[all …]
/external/tink/go/testutil/
Dconstant.go22 // AESCTRHMACAEADKeyVersion is the maximal version of AES-CTR-HMAC-AEAD keys that Tink supports.
24 // AESCTRHMACAEADTypeURL is the type URL of AES-CTR-HMAC-AEAD keys that Tink supports.
27 // AESGCMKeyVersion is the maximal version of AES-GCM keys.
29 // AESGCMTypeURL is the type URL of AES-GCM keys that Tink supports.
32 // AESGCMSIVKeyVersion is the maximal version of AES-GCM-SIV keys.
34 // AESGCMSIVTypeURL is the type URL of AES-GCM-SIV keys that Tink supports.
37 // ChaCha20Poly1305KeyVersion is the maximal version of ChaCha20Poly1305 keys that Tink supports.
39 // ChaCha20Poly1305TypeURL is the type URL of ChaCha20Poly1305 keys.
42 // KMSEnvelopeAEADKeyVersion is the maximal version of KMSEnvelopeAEAD keys that Tink supports.
44 // KMSEnvelopeAEADTypeURL is the type URL of KMSEnvelopeAEAD keys.
[all …]
/external/vboot_reference/scripts/image_signing/
Dsign_uefi.py54 class Keys: class
55 """Public and private keys paths.
77 keys: An instance of Keys.
80 def __init__(self, temp_dir: os.PathLike, keys: Keys): argument
82 self.keys = keys
101 self.keys.private_key,
103 self.keys.sign_cert,
108 if is_pkcs11_key_path(self.keys.private_key):
123 ["sbverify", "--cert", self.keys.verify_cert, target],
151 self.keys.crdyshim_private_key,
[all …]
/external/federated-compute/fcp/secagg/shared/
Decdh_key_agreement_test.cc37 EcdhPregeneratedTestKeys keys; in TEST() local
38 auto ecdh1 = EcdhKeyAgreement::CreateFromKeypair(keys.GetPrivateKey(0), in TEST()
39 keys.GetPublicKey(0)) in TEST()
48 EcdhPregeneratedTestKeys keys; in TEST() local
49 auto ecdh1 = EcdhKeyAgreement::CreateFromKeypair(keys.GetPrivateKey(0), in TEST()
50 keys.GetPublicKey(0)) in TEST()
60 EcdhPregeneratedTestKeys keys; in TEST() local
61 auto ecdh = EcdhKeyAgreement::CreateFromKeypair(keys.GetPrivateKey(0), in TEST()
62 keys.GetPublicKey(0)) in TEST()
68 EcdhPregeneratedTestKeys keys; in TEST() local
[all …]
/external/skia/bazel/device_specific_configs/
Ddevice_specific_configs.go26 // benchmark tests, except for keys "cpu_or_gpu" and "cpu_or_gpu_value". See fields CPU and GPU.
27 Keys map[string]string member
47 // Model returns the "model" key in the Keys dictionary.
49 model, ok := d.Keys["model"]
69 // Sort keys for determinism.
70 var keys []string
71 for key := range d.Keys {
72 keys = append(keys, key)
74 sort.Strings(keys)
78 for _, key := range keys {
[all …]
/external/cronet/tot/third_party/libc++/src/test/libcxx/localization/locale.categories/
D__scan_keyword.pass.cpp50 std::string keys[] = {"a", "abb"}; in main() local
53 keys, keys+sizeof(keys)/sizeof(keys[0]), in main()
55 assert(k - keys == 0); in main()
62 std::string keys[] = {"a", "abb"}; in main() local
65 keys, keys+sizeof(keys)/sizeof(keys[0]), in main()
67 assert(k - keys == 2); in main()
74 std::string keys[] = {"a", "abb"}; in main() local
77 keys, keys+sizeof(keys)/sizeof(keys[0]), in main()
79 assert(k - keys == 1); in main()
86 std::string keys[] = {"Mon", "Monday", "Tue", "Tuesday"}; in main() local
[all …]
/external/cronet/stable/third_party/libc++/src/test/libcxx/localization/locale.categories/
D__scan_keyword.pass.cpp50 std::string keys[] = {"a", "abb"}; in main() local
53 keys, keys+sizeof(keys)/sizeof(keys[0]), in main()
55 assert(k - keys == 0); in main()
62 std::string keys[] = {"a", "abb"}; in main() local
65 keys, keys+sizeof(keys)/sizeof(keys[0]), in main()
67 assert(k - keys == 2); in main()
74 std::string keys[] = {"a", "abb"}; in main() local
77 keys, keys+sizeof(keys)/sizeof(keys[0]), in main()
79 assert(k - keys == 1); in main()
86 std::string keys[] = {"Mon", "Monday", "Tue", "Tuesday"}; in main() local
[all …]
/external/libcxx/test/libcxx/localization/locale.categories/
D__scan_keyword.pass.cpp49 std::string keys[] = {"a", "abb"}; in main() local
52 keys, keys+sizeof(keys)/sizeof(keys[0]), in main()
54 assert(k - keys == 0); in main()
61 std::string keys[] = {"a", "abb"}; in main() local
64 keys, keys+sizeof(keys)/sizeof(keys[0]), in main()
66 assert(k - keys == 2); in main()
73 std::string keys[] = {"a", "abb"}; in main() local
76 keys, keys+sizeof(keys)/sizeof(keys[0]), in main()
78 assert(k - keys == 1); in main()
85 std::string keys[] = {"Mon", "Monday", "Tue", "Tuesday"}; in main() local
[all …]
/external/leakcanary2/shark-graph/src/main/java/shark/internal/hppc/
DLongScatterSet.kt27 /** The hash array holding keys. */
28 private var keys: LongArray = longArrayOf() variable
31 * The number of stored keys (assigned key slots), excluding the special
40 * Mask for slot scans in [.keys].
45 * Expand (rehash) [.keys] when [.assigned] hits this value.
55 * The load factor for [.keys].
71 existing = keys[slot] in elementSequence()
100 val keys = this.keys in add() constant
104 var existing = keys[slot] in add()
110 existing = keys[slot] in add()
[all …]
DLongObjectScatterMap.kt28 * The array holding keys.
30 private var keys: LongArray = longArrayOf() variable in shark.internal.hppc.LongObjectScatterMap
39 * The number of stored keys (assigned key slots), excluding the special
47 * Mask for slot scans in [.keys].
52 * Expand (rehash) [.keys] when [.assigned] hits this value.
62 * The load factor for [.keys].
84 val keys = this.keys in set() constant
87 var existing = keys[slot] in set()
95 existing = keys[slot] in set()
101 keys[slot] = key in set()
[all …]
DLongLongScatterMap.kt33 * The array holding keys.
35 private var keys: LongArray = longArrayOf() variable
43 * The number of stored keys (assigned key slots), excluding the special
51 * Mask for slot scans in [.keys].
56 * Expand (rehash) [.keys] when [.assigned] hits this value.
66 * The load factor for [.keys].
88 val keys = this.keys in set() constant
91 var existing = keys[slot] in set()
99 existing = keys[slot] in set()
105 keys[slot] = key in set()
[all …]
/external/python/asn1crypto/tests/
Dtest_keys.py8 from asn1crypto import keys, core, util
28 with open(os.path.join(fixtures_dir, 'keys/test-der.key'), 'rb') as f:
29 key = keys.RSAPrivateKey.load(f.read())
73 with open(os.path.join(fixtures_dir, 'keys/test-der.key'), 'rb') as f:
117 with open(os.path.join(fixtures_dir, 'keys/test-dsa-der.key'), 'rb') as f:
118 key = keys.DSAPrivateKey.load(f.read())
146 with open(os.path.join(fixtures_dir, 'keys/test-ec-der.key'), 'rb') as f:
147 key = keys.ECPrivateKey.load(f.read())
208 with open(os.path.join(fixtures_dir, 'keys/test-ed25519.key'), 'rb') as f:
209 key = keys.PrivateKeyInfo.load(f.read())
[all …]
/external/aws-sdk-java-v2/services/kms/target/generated-sources/sdk/software/amazon/awssdk/services/kms/model/
DListKeysResponse.java46 .memberName("Keys")
47 .getter(getter(ListKeysResponse::keys))
48 .setter(setter(Builder::keys))
49 … .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Keys").build(),
70 private final List<KeyListEntry> keys; field in ListKeysResponse
78 this.keys = builder.keys; in ListKeysResponse()
84 …* For responses, this returns true if the service returned a value for the Keys property. This DOE…
91 return keys != null && !(keys instanceof SdkAutoConstructList); in hasKeys()
96 * A list of KMS keys.
106 * @return A list of KMS keys.
[all …]
/external/cldr/tools/cldr-code/src/test/resources/org/unicode/cldr/tool/KeyboardFlatten/
Dbroken-import-wrongparent.xml4 <!-- Error - can't import 'keys' into a 'locales' section. -->
5 <import base="cldr" path="45/keys-Zyyy-punctuation.xml"/>
11 <keys>
41 </keys>
45 <row keys="c-tikka 1 2 3 4 5 6 7 8 9 0 minus equals" />
46 <row keys="q w e r t y u i o p g-tikka h-maqtua" />
47 <row keys="a s d f g h j k l semi-colon hash" />
48 <row keys="z-tikka z x c v b n m comma period slash" />
49 <row keys="space" />
53 …<row keys="C-tikka bang double-quote euro dollar percent caret amp open-paren close-paren undersco…
[all …]
Dbroken-import-unknownver.xml11 <keys>
14 <import base="cldr" path="1.1.1/keys-Zyyy-punctuation.xml"/>
43 </keys>
47 <row keys="c-tikka 1 2 3 4 5 6 7 8 9 0 minus equals" />
48 <row keys="q w e r t y u i o p g-tikka h-maqtua" />
49 <row keys="a s d f g h j k l semi-colon hash" />
50 <row keys="z-tikka z x c v b n m comma period slash" />
51 <row keys="space" />
55 …<row keys="C-tikka bang double-quote euro dollar percent caret amp open-paren close-paren undersco…
56 <row keys="Q W E R T Y U I O P G-tikka H-maqtua" />
[all …]
Dbroken-import-unknownbase.xml9 <keys>
12 <import base="UNKNOWN" path="45/keys-Zyyy-punctuation.xml"/>
41 </keys>
45 <row keys="c-tikka 1 2 3 4 5 6 7 8 9 0 minus equals" />
46 <row keys="q w e r t y u i o p g-tikka h-maqtua" />
47 <row keys="a s d f g h j k l semi-colon hash" />
48 <row keys="z-tikka z x c v b n m comma period slash" />
49 <row keys="space" />
53 …<row keys="C-tikka bang double-quote euro dollar percent caret amp open-paren close-paren undersco…
54 <row keys="Q W E R T Y U I O P G-tikka H-maqtua" />
[all …]
Dbroken-import-missing.xml9 <keys>
12 <import base="cldr" path="45/keys-Zyyy-DOESNOTEXIST.xml"/>
41 </keys>
45 <row keys="c-tikka 1 2 3 4 5 6 7 8 9 0 minus equals" />
46 <row keys="q w e r t y u i o p g-tikka h-maqtua" />
47 <row keys="a s d f g h j k l semi-colon hash" />
48 <row keys="z-tikka z x c v b n m comma period slash" />
49 <row keys="space" />
53 …<row keys="C-tikka bang double-quote euro dollar percent caret amp open-paren close-paren undersco…
54 <row keys="Q W E R T Y U I O P G-tikka H-maqtua" />
[all …]
/external/grpc-grpc-java/context/src/jmh/java/io/grpc/
DReadBenchmark.java36 List<Context.Key<Object>> keys = new ArrayList<>(); field in ReadBenchmark.ContextState
42 keys.add(Context.key("Key" + i)); in setup()
44 contexts.add(Context.ROOT.withValue(keys.get(0), new Object())); in setup()
45 contexts.add(Context.ROOT.withValues(keys.get(0), new Object(), keys.get(1), new Object())); in setup()
48 keys.get(0), new Object(), keys.get(1), new Object(), keys.get(2), new Object())); in setup()
51 keys.get(0), in setup()
53 keys.get(1), in setup()
55 keys.get(2), in setup()
57 keys.get(3), in setup()
59 contexts.add(contexts.get(0).withValue(keys.get(1), new Object())); in setup()
[all …]
/external/lottie/lottie/src/main/java/com/airbnb/lottie/model/
DKeyPath.java53 private final List<String> keys; field in KeyPath
56 public KeyPath(String... keys) { in KeyPath() argument
57 this.keys = Arrays.asList(keys); in KeyPath()
61 * Copy constructor. Copies keys as well.
64 keys = new ArrayList<>(keyPath.keys); in KeyPath()
79 newKeyPath.keys.add(key); in addKey()
113 if (depth >= keys.size()) { in matches()
116 if (keys.get(depth).equals(key) || in matches()
117 keys.get(depth).equals("**") || in matches()
118 keys.get(depth).equals("*")) { in matches()
[all …]
/external/cldr/keyboards/3.0/
Dmt-t-k0-47key.xml14 <keys>
16 <import base="cldr" path="45/keys-Zyyy-punctuation.xml" />
17 <import base="cldr" path="45/keys-Zyyy-currency.xml" />
46 </keys>
51 <row keys="c-tikka 1 2 3 4 5 6 7 8 9 0 hyphen equal" />
52 <row keys="q w e r t y u i o p g-tikka h-maqtugha z-tikka" />
53 <row keys="a s d f g h j k l semi-colon apos" />
54 <row keys="z x c v b n m comma period slash" />
55 <row keys="space" />
59 …<row keys="C-tikka bang at euro dollar percent caret amp asterisk open-paren close-paren underscor…
[all …]
Dmt.xml19 <keys>
21 <import base="cldr" path="45/keys-Zyyy-punctuation.xml"/>
22 <import base="cldr" path="45/keys-Zyyy-currency.xml"/>
48 </keys>
53 <row keys="c-tikka 1 2 3 4 5 6 7 8 9 0 hyphen equal" />
54 <row keys="q w e r t y u i o p g-tikka h-maqtugha" />
55 <row keys="a s d f g h j k l semi-colon hash" />
56 <row keys="z-tikka z x c v b n m comma period slash" />
57 <row keys="space" />
61 …<row keys="C-tikka bang double-quote euro dollar percent caret amp open-paren close-paren undersco…
[all …]
/external/pytorch/aten/src/ATen/native/
DCompositeRandomAccessorCommon.h131 CompositeRandomAccessor(KeyAccessor keys, ValueAccessor values) in CompositeRandomAccessor() argument
132 : keys(keys), values(values) in CompositeRandomAccessor()
138 return TupleInfo::tie(*keys, *values);
146 return keys.operator->();
152 CompositeRandomAccessor(keys + idx, values + idx)
160 ++keys;
174 --keys;
190 keys += offset;
197 return CompositeRandomAccessor(keys + offset, values + offset);
210 keys -= offset;
[all …]

12345678910>>...514