Home
last modified time | relevance | path

Searched refs:bob (Results 1 - 19 of 19) sorted by relevance

/third_party/typescript/tests/baselines/reference/
H A Dmaximum10SpellingSuggestions.js5 bob; bob; bob; bob; bob; bob; bob; bob; bob; bob;
[all...]
H A DintraExpressionInferences.js144 function whatIWant<T>(props: { generator: (bob: any) => T, receiver: (t: T) => any }) {}
146 function nonObject<T>(generator: (bob: any) => T, receiver: (t: T) => any) {}
149 whatIWant({ generator: (bob) => bob ? 1 : 2, receiver: (t) => console.log(t + 2) })
150 nonObject((bob) => bob ? 1 : 2, (t) => console.log(t + 2))
292 whatIWant({ generator: function (bob) { return bob ? 1 : 2; }, receiver: function (t) { return console.log(t + 2); } });
293 nonObject(function (bob) { return bob
[all...]
/third_party/node/benchmark/crypto/
H A Dcipher-stream.js24 const bob = crypto.getDiffieHellman('modp5');
27 bob.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) {
67 bob.on('data', (c) => {
71 bob.on('end', () => {
78 alice.pipe(bob);
86 function legacyWrite(alice, bob, messag
[all...]
H A Daes-gcm-throughput.js31 const bob = crypto.createDecipheriv(cipher, key, iv);
32 bob.setAuthTag(tag);
33 bob.setAAD(associate_data);
34 bob.update(enc);
35 bob.final();
/third_party/rust/crates/clap/tests/derive/
H A Dflags.rs62 bob: usize, in non_bool_type_flag()
67 assert_eq!(opt.bob, 5); in non_bool_type_flag()
71 assert_eq!(opt.bob, 5); in non_bool_type_flag()
75 assert_eq!(opt.bob, 10); in non_bool_type_flag()
79 assert_eq!(opt.bob, 10); in non_bool_type_flag()
134 bob: u8, in count()
138 Opt { alice: 0, bob: 0 }, in count()
142 Opt { alice: 1, bob: 0 }, in count()
146 Opt { alice: 2, bob: 0 }, in count()
150 Opt { alice: 2, bob in count()
[all...]
/third_party/node/src/
H A Dnode_bob-inl.h9 namespace bob { namespace
21 status = bob::Status::STATUS_EOS; in Pull()
28 if (status == bob::Status::STATUS_END) in Pull()
34 } // namespace bob
H A Dnode_bob.h7 namespace bob { namespace
108 } // namespace bob
/third_party/node/test/common/
H A Dtls.js119 const bob = crypto.createCipheriv('aes-128-gcm', this.client_writeKey, iv);
123 bob.setAAD(aad);
124 const encrypted1 = bob.update(plain.slice(5));
125 const encrypted = Buffer.concat([encrypted1, bob.final()]);
126 const tag = bob.getAuthTag();
/third_party/libdrm/tests/amdgpu/
H A Dsecurity_tests.c264 struct sec_amdgpu_bo alice, bob; in amdgpu_secure_bounce() local
319 &bob); in amdgpu_secure_bounce()
328 amdgpu_bo_lcopy(&sb_ctx, &bob, &alice, SECURE_BUFFER_SIZE, 1); in amdgpu_secure_bounce()
332 res = amdgpu_bo_move(&sb_ctx, bob.bo, AMDGPU_GEM_DOMAIN_GTT, 0); in amdgpu_secure_bounce()
341 amdgpu_bo_lcopy(&sb_ctx, &alice, &bob, SECURE_BUFFER_SIZE, 1); in amdgpu_secure_bounce()
357 amdgpu_bo_unmap_free(&bob, SECURE_BUFFER_SIZE); in amdgpu_secure_bounce()
/third_party/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_compositor_cs.c827 c->cs_yuv.bob.y = vl_compositor_cs_create_shader(c, compute_shader_yuv_bob_y); in vl_compositor_cs_init_shaders()
828 c->cs_yuv.bob.uv = vl_compositor_cs_create_shader(c, compute_shader_yuv_bob_uv); in vl_compositor_cs_init_shaders()
830 !c->cs_yuv.bob.y || !c->cs_yuv.bob.uv) { in vl_compositor_cs_init_shaders()
850 if (c->cs_yuv.bob.y) in vl_compositor_cs_cleanup_shaders()
851 c->pipe->delete_compute_state(c->pipe, c->cs_yuv.bob.y); in vl_compositor_cs_cleanup_shaders()
852 if (c->cs_yuv.bob.uv) in vl_compositor_cs_cleanup_shaders()
853 c->pipe->delete_compute_state(c->pipe, c->cs_yuv.bob.uv); in vl_compositor_cs_cleanup_shaders()
H A Dvl_compositor.c57 c->fs_yuv.bob.y = create_frag_shader_deint_yuv(c, true, false); in init_shaders()
58 c->fs_yuv.bob.uv = create_frag_shader_deint_yuv(c, false, false); in init_shaders()
60 !c->fs_yuv.bob.y || !c->fs_yuv.bob.uv) { in init_shaders()
113 c->pipe->delete_fs_state(c->pipe, c->fs_yuv.bob.y); in cleanup_shaders()
114 c->pipe->delete_fs_state(c->pipe, c->fs_yuv.bob.uv); in cleanup_shaders()
352 s->layers[layer].fs = (y) ? c->fs_yuv.bob.y : c->fs_yuv.bob.uv; in set_yuv_layer()
354 s->layers[layer].cs = (y) ? c->cs_yuv.bob.y : c->cs_yuv.bob in set_yuv_layer()
[all...]
H A Dvl_compositor.h140 } bob; member
151 } bob; member
/third_party/node/src/dataqueue/
H A Dqueue.h102 // To read from a DataQueue, we use the node::bob::Source API
110 // // status is one of node::bob::Status
116 // Keep calling Pull() until status is equal to node::bob::Status::STATUS_EOS.
138 class Reader : public MemoryRetainer, public bob::Source<Vec> {
140 using Next = bob::Next<Vec>;
141 using Done = bob::Done;
/third_party/skia/tests/
H A DGrTextBlobTest.cpp173 GrBagOfBytes bob; in DEF_TEST() local
174 // bob.alignedBytes(0, 1); // This should fail in DEF_TEST()
175 // bob.alignedBytes(1, 0); // This should fail in DEF_TEST()
176 // bob.alignedBytes(1, 3); // This should fail in DEF_TEST()
181 // bob.alignedBytes(sizeof(Big), 1); // this should fail in DEF_TEST()
182 // bob.allocateBytesFor<Big>(); // this should not compile in DEF_TEST()
184 // bob.allocateBytesFor<int>((std::numeric_limits<int>::max() - (1<<12)) / sizeof(int) - 1); in DEF_TEST()
186 // bob.allocateBytesFor<int>((std::numeric_limits<int>::max() - (1<<12)) / sizeof(int)); in DEF_TEST()
187 bob.alignedBytes(1, 1); // To avoid unused variable problems. in DEF_TEST()
192 GrBagOfBytes bob; in DEF_TEST() local
[all...]
/third_party/ntfs-3g/libntfs-3g/
H A Drunlist.c2072 runlist_element *bob = NULL; in test_rl_zero() local
2074 bob = calloc(3, sizeof(runlist_element)); in test_rl_zero()
2075 if (!bob) in test_rl_zero()
2078 MKRL(bob+0, 10, 99, 5) in test_rl_zero()
2079 MKRL(bob+1, 15, LCN_RL_NOT_MAPPED, 0) in test_rl_zero()
2081 jim = test_rl_runlists_merge(jim, bob); in test_rl_zero()
/third_party/python/Lib/test/
H A Dtest_xml_etree.py186 def assertEqualElements(self, alice, bob):
188 self.assertIsInstance(bob, (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))
1679 <xi:fallback><a href="mailto:bob@example.org">Report error</a></xi:fallback>
1845 ' <ns0:fallback><a href="mailto:bob@example.org">Report error</a></ns0:fallback>\n'
2165 bob = ET.TreeBuilder()
2166 e = bob.data("data")
2167 e = bob
[all...]
/third_party/skia/third_party/externals/tint/src/reader/spirv/
H A Dparser_impl_module_var_test.cc4313 OpMemberName %strct 1 "bob" in TEST_F()
4345 bob : vec4<f32>; in TEST_F()
4364 x_1.bob = x_1_param_1; in TEST_F()
4563 OpMemberName %strct 1 "bob" in TEST_F()
4595 bob : vec4<f32>; in TEST_F()
4618 return main_out(x_1.alice, x_1.bob, x_2); in TEST_F()
4633 OpMemberName %strct 1 "bob" in TEST_F()
4668 bob : vec4<f32>; in TEST_F()
4693 x_1.bob = x_1_param_1; in TEST_F()
4695 return main_out(x_2, x_3.alice, x_3.bob); in TEST_F()
[all...]
/third_party/python/Lib/unittest/test/testmock/
H A Dtestmock.py463 lambda: mock.assert_called_once_with('bob', 'bar', baz=2)
1216 m.foo().bar().baz.bob()
1219 self.assertEqual(repr(m.mock_calls[2]), 'call.foo().bar().baz.bob()')
/third_party/skia/third_party/externals/microhttpd/doc/
H A Dtexinfo.tex4988 % don't both fit on one line. In that case, bob suggests starting the

Completed in 29 milliseconds