Home
last modified time | relevance | path

Searched refs:alice (Results 1 - 6 of 6) sorted by relevance

/third_party/rust/crates/clap/tests/derive/
H A Dflags.rs27 alice: bool, in bool_type_is_flag()
30 assert_eq!(Opt { alice: false }, Opt::try_parse_from(["test"]).unwrap()); in bool_type_is_flag()
32 Opt { alice: true }, in bool_type_is_flag()
36 Opt { alice: true }, in bool_type_is_flag()
40 Opt { alice: true }, in bool_type_is_flag()
41 Opt::try_parse_from(["test", "--alice"]).unwrap() in bool_type_is_flag()
60 alice: usize, in non_bool_type_flag()
66 assert_eq!(opt.alice, 5); in non_bool_type_flag()
70 assert_eq!(opt.alice, 10); in non_bool_type_flag()
74 assert_eq!(opt.alice, in non_bool_type_flag()
[all...]
/third_party/node/benchmark/crypto/
H A Dcipher-stream.js23 const alice = crypto.getDiffieHellman('modp5');
26 alice.generateKeys();
30 const alice_secret = alice.computeSecret(bob.getPublicKey(), pubEnc, 'hex');
31 const bob_secret = bob.computeSecret(alice.getPublicKey(), pubEnc, 'hex');
59 // Write data as fast as possible to alice, and have bob decrypt.
65 function streamWrite(alice, bob, message, encoding, writes) {
78 alice.pipe(bob);
81 alice.write(message, encoding);
83 alice.end();
86 function legacyWrite(alice, bo
[all...]
H A Daes-gcm-throughput.js26 const alice = crypto.createCipheriv(cipher, key, iv);
27 alice.setAAD(associate_data);
28 const enc = alice.update(message);
29 alice.final();
30 const tag = alice.getAuthTag();
/third_party/libdrm/tests/amdgpu/
H A Dsecurity_tests.c264 struct sec_amdgpu_bo alice, bob; in amdgpu_secure_bounce() local
298 &alice); in amdgpu_secure_bounce()
307 for (pp = alice.bo->cpu_ptr; in amdgpu_secure_bounce()
308 pp < (__typeof__(pp)) alice.bo->cpu_ptr + SECURE_BUFFER_SIZE; in amdgpu_secure_bounce()
328 amdgpu_bo_lcopy(&sb_ctx, &bob, &alice, SECURE_BUFFER_SIZE, 1); in amdgpu_secure_bounce()
341 amdgpu_bo_lcopy(&sb_ctx, &alice, &bob, SECURE_BUFFER_SIZE, 1); in amdgpu_secure_bounce()
345 for (pp = alice.bo->cpu_ptr; in amdgpu_secure_bounce()
346 pp < (__typeof__(pp)) alice.bo->cpu_ptr + SECURE_BUFFER_SIZE; in amdgpu_secure_bounce()
359 amdgpu_bo_unmap_free(&alice, SECURE_BUFFER_SIZE); in amdgpu_secure_bounce()
/third_party/skia/third_party/externals/tint/src/reader/spirv/
H A Dparser_impl_module_var_test.cc4312 OpMemberName %strct 0 "alice" in TEST_F()
4344 alice : f32; in TEST_F()
4363 x_1.alice = x_1_param; in TEST_F()
4562 OpMemberName %strct 0 "alice" in TEST_F()
4594 alice : f32; in TEST_F()
4618 return main_out(x_1.alice, x_1.bob, x_2); in TEST_F()
4632 OpMemberName %strct 0 "alice" in TEST_F()
4667 alice : f32; in TEST_F()
4692 x_1.alice = x_1_param; in TEST_F()
4695 return main_out(x_2, x_3.alice, x_ in TEST_F()
[all...]
/third_party/python/Lib/test/
H A Dtest_xml_etree.py186 def assertEqualElements(self, alice, bob):
187 self.assertIsInstance(alice, (ET.Element, pyET.Element))
189 self.assertEqual(len(list(alice)), len(list(bob)))
190 for x, y in zip(alice, bob):
193 self.assertEqual(properties(alice), properties(bob))

Completed in 12 milliseconds