Home
last modified time | relevance | path

Searched full:key3 (Results 1 – 25 of 106) sorted by relevance

12345

/external/boringssl/src/crypto/cmac/
Dcavp_3des_cmac_tests.txt15 Key3 = 52f4a110dcdc9e45
26 Key3 = 5b61f4f7a1c46ed6
37 Key3 = 2ca2706d76d00b67
48 Key3 = 83d5b6ba253bea31
59 Key3 = 76cb4fb55ebcc1c7
70 Key3 = e6407057ae34ec0b
81 Key3 = 86dc07b607202abc
92 Key3 = cedf6797d523dcab
103 Key3 = 6b2086f14934838a
114 Key3 = 2080fe52e0d3943d
[all …]
Dcmac_test.cc198 std::vector<uint8_t> key2, key3; in RunCAVPTest() local
201 ASSERT_TRUE(t->GetBytes(&key3, "Key3")); in RunCAVPTest()
203 key.insert(key.end(), key3.begin(), key3.end()); in RunCAVPTest()
/external/curl/tests/unit/
Dunit1603.c54 char key3[] = "key3"; variable
65 Curl_hash_str(key3, strlen(key3), slots) != 2 ||
80 nodep = Curl_hash_add(&hash_static, &key3, strlen(key3), &key3);
82 nodep = Curl_hash_pick(&hash_static, &key3, strlen(key3));
83 fail_unless(nodep == key3, "hash retrieval failed");
96 nodep = Curl_hash_pick(&hash_static, &key3, strlen(key3));
97 fail_unless(nodep == key3, "hash retrieval failed");
144 nodep = Curl_hash_pick(&hash_static, &key3, strlen(key3));
145 fail_unless(nodep == key3, "hash retrieval failed");
/external/boringssl/src/fipstools/
Dcavp_tdes_test.cc89 std::vector<uint8_t> keys, key1, key2, key3, iv, in, result; in TestKAT() local
98 !t->GetBytes(&key3, "KEY3"))) || in TestKAT()
109 key.insert(key.end(), key3.begin(), key3.end()); in TestKAT()
139 EncodeHex(key3.data(), key3.size()).c_str()); in TestKAT()
212 std::vector<uint8_t> key1, key2, key3, iv, in, result; in TestMCT() local
218 !t->GetBytes(&key3, "KEY3") || in TestMCT()
231 key.insert(key.end(), key3.begin(), key3.end()); in TestMCT()
270 EncodeHex(key3.data(), key3.size()).c_str()); in TestMCT()
283 XORKeyWithOddParityLSB(&key3, prev_prev_result); in TestMCT()
285 XORKeyWithOddParityLSB(&key3, result); in TestMCT()
/external/selinux/libsepol/cil/src/
Dcil_symtab.c152 intptr_t sum = ckey->key1 + ckey->key2 + ckey->key3 + ckey->key4; in cil_complex_symtab_hash()
186 ckey->key3 == curr->ckey->key3 && in cil_complex_symtab_insert()
199 ckey->key3 < curr->ckey->key3) { in cil_complex_symtab_insert()
205 ckey->key3 == curr->ckey->key3 && in cil_complex_symtab_insert()
235 ckey->key3 == curr->ckey->key3 && in cil_complex_symtab_search()
248 ckey->key3 < curr->ckey->key3) { in cil_complex_symtab_search()
254 ckey->key3 == curr->ckey->key3 && in cil_complex_symtab_search()
/external/protobuf/objectivec/Tests/
DGPBDictionaryTests.pddm31 //%PDDM-DEFINE TEST_FOR_POD_KEY(KEY_NAME, KEY_TYPE, KEY1, KEY2, KEY3, KEY4)
32 //%TESTS_FOR_POD_VALUES(KEY_NAME, KEY_TYPE, , , KEY1, KEY2, KEY3, KEY4)
33 //%TESTS_FOR_POD_KEY_OBJECT_VALUE(KEY_NAME, KEY_TYPE, KEY1, KEY2, KEY3, KEY4, Object, NSString*, @"…
35 //%PDDM-DEFINE TESTS_FOR_POD_VALUES(KEY_NAME, KEY_TYPE, KisP, KSUFFIX, KEY1, KEY2, KEY3, KEY4)
37 //%TESTS_FOR_POD_VALUE(KEY_NAME, KEY_TYPE, KisP, KSUFFIX, KEY1, KEY2, KEY3, KEY4, UInt32, uint32_t,…
38 //%TESTS_FOR_POD_VALUE(KEY_NAME, KEY_TYPE, KisP, KSUFFIX, KEY1, KEY2, KEY3, KEY4, Int32, int32_t, ,…
39 //%TESTS_FOR_POD_VALUE(KEY_NAME, KEY_TYPE, KisP, KSUFFIX, KEY1, KEY2, KEY3, KEY4, UInt64, uint64_t,…
40 //%TESTS_FOR_POD_VALUE(KEY_NAME, KEY_TYPE, KisP, KSUFFIX, KEY1, KEY2, KEY3, KEY4, Int64, int64_t, ,…
41 //%TESTS_FOR_POD_VALUE(KEY_NAME, KEY_TYPE, KisP, KSUFFIX, KEY1, KEY2, KEY3, KEY4, Bool, BOOL, , YES…
42 //%TESTS_FOR_POD_VALUE(KEY_NAME, KEY_TYPE, KisP, KSUFFIX, KEY1, KEY2, KEY3, KEY4, Float, float, , 5…
[all …]
/external/google-breakpad/src/client/mac/testapp/
DController.m175 BreakpadSetKeyValue(breakpad_,@"key3", @"value3");
209 test = BreakpadKeyValue(breakpad_, @"key3");
211 NSLog(@"Can't find BreakpadKeyValue (key3)");
219 BreakpadRemoveKeyValue(breakpad_, @"key3");
222 test = BreakpadKeyValue(breakpad_, @"key3");
224 NSLog(@"Shouldn't find BreakpadKeyValue (key3)");
228 BreakpadRemoveKeyValue(breakpad_, @"key3");
/external/cldr/tools/java/org/unicode/cldr/util/
DChainedMap.java82 public V get(K3 key3, K2 key2, K1 key1) { in get() argument
83 return (V) super.handleGet(key3, key2, key1); in get()
86 public M3<K2, K1, V> get(K3 key3) { in get() argument
87 final Map<?, ?> submap = (Map<?, ?>) super.handleGet(key3); in get()
92 public V put(K3 key3, K2 key2, K1 key1, V value) { in put() argument
93 return (V) super.handlePut(value, key3, key2, key1); in put()
129 public V get(K4 key4, K3 key3, K2 key2, K1 key1) { in get() argument
130 return (V) super.handleGet(key4, key3, key2, key1); in get()
140 public V put(K4 key4, K3 key3, K2 key2, K1 key1, V value) { in put() argument
141 return (V) super.handlePut(value, key4, key3, key2, key1); in put()
/external/libbrillo/brillo/
Dmap_utils_unittest.cc17 {"key1", 1}, {"key2", 2}, {"key3", 3}, {"key4", 4}, {"key5", 5}, in SetUp()
28 EXPECT_EQ((std::set<std::string>{"key1", "key2", "key3", "key4", "key5"}), in TEST_F()
34 EXPECT_EQ((std::vector<std::string>{"key1", "key2", "key3", "key4", "key5"}), in TEST_F()
46 {"key1", 1}, {"key2", 2}, {"key3", 3}, {"key4", 4}, {"key5", 5}, in TEST_F()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
DDESedeEngine.java65 byte[] key3 = new byte[8]; in init()
66 System.arraycopy(keyMaster, 16, key3, 0, key3.length); in init()
67 workingKey3 = generateWorkingKey(encrypting, key3); in init()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/engines/
DDESedeEngine.java67 byte[] key3 = new byte[8]; in init()
68 System.arraycopy(keyMaster, 16, key3, 0, key3.length); in init()
69 workingKey3 = generateWorkingKey(encrypting, key3); in init()
/external/grpc-grpc-java/context/src/test/java/io/grpc/
DPersistentHashArrayMappedTrieTest.java148 Key key3 = new Key(key1.hashCode()); in collisionLeaf_collision() local
155 Node<Key, Object> ret = leaf.put(key3, value3, key3.hashCode(), 0); in collisionLeaf_collision()
159 assertSame(value3, ret.get(key3, key3.hashCode(), 0)); in collisionLeaf_collision()
163 assertSame(null, leaf.get(key3, key3.hashCode(), 0)); in collisionLeaf_collision()
/external/openssh/
Dhmac.c182 u_char key3[16]; in main() local
187 memset(key3, 0xaa, sizeof(key3)); in main()
192 hmac_test(key3, sizeof(key3), data3, sizeof(data3), dig3, sizeof(dig3)); in main()
/external/grpc-grpc-java/context/src/jmh/java/io/grpc/
DWriteBenchmark.java39 Context.Key<Object> key3 = Context.key("key3"); field in WriteBenchmark.ContextState
61 state.key3, state.val, in doWrite()
/external/skqp/tests/
DGpuDrawPathTest.cpp145 GrUniqueKey key3, key4; variable
147 GrPath::ComputeKey(GrShape(path3, style), &key3, &isVolatile);
149 REPORTER_ASSERT(reporter, key3.isValid());
153 REPORTER_ASSERT(reporter, key3 != key4);
/external/skia/tests/
DGpuDrawPathTest.cpp145 GrUniqueKey key3, key4; variable
147 GrPath::ComputeKey(GrShape(path3, style), &key3, &isVolatile);
149 REPORTER_ASSERT(reporter, key3.isValid());
153 REPORTER_ASSERT(reporter, key3 != key4);
/external/perfetto/src/traced/probes/filesystem/
Dlru_inode_cache_unittest.cc35 const std::pair<BlockDeviceID, Inode> key3{0, 2}; variable
69 cache.Insert(key3, val3()); in TEST()
73 EXPECT_THAT(cache.Get(key3), Pointee(Eq(val3()))); in TEST()
/external/ltp/testcases/kernel/syscalls/request_key/
Drequest_key02.c40 static int key3; variable
49 {"ltp3", EKEYEXPIRED, &key3}
102 key3 = init_key("ltp3", KEYCTL_SET_TIMEOUT); in setup()
/external/snakeyaml/src/test/resources/pyyaml/
Dspec-10-10.data4 ? explicit key3, # Empty value
7 simple key3, # Empty value
Dspec-10-10.canonical8 ? !!str "explicit key3"
14 ? !!str "simple key3"
/external/swiftshader/third_party/llvm-7.0/llvm/test/YAMLParser/
Dspec-10-10.test6 ? explicit key3, # Empty value
9 simple key3, # Empty value
/external/llvm/test/YAMLParser/
Dspec-10-10.test6 ? explicit key3, # Empty value
9 simple key3, # Empty value
/external/swiftshader/third_party/llvm-7.0/llvm/test/Bitcode/
Dglobalvariable-attributes.ll4 @g2 = global i32 2, align 4 "key3" = "value3"
16 ; CHECK: attributes #1 = { "key3"="value3" }
/external/swiftshader/third_party/llvm-7.0/llvm/test/Assembler/
Dglobalvariable-attributes.ll4 @g2 = global i32 2, align 4 "key3" = "value3"
16 ; CHECK: attributes #1 = { "key3"="value3" }
/external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/tags/propagation/
DTagContextDeserializationTest.java209 encodeTagToOutput("Key3", "Value3", output); in testDeserializeNonConsecutiveDuplicateKeys()
217 .put(TagKey.create("Key3"), TagValue.create("Value3")) in testDeserializeNonConsecutiveDuplicateKeys()
240 encodeTagToOutput("Key3", "Value3", output); in testDeserializeNonConsecutiveDuplicateTags()
248 .put(TagKey.create("Key3"), TagValue.create("Value3")) in testDeserializeNonConsecutiveDuplicateTags()
264 encodeTagToOutput("Key3", "Value3", output); in stopParsingAtUnknownField()

12345