Home
last modified time | relevance | path

Searched refs:sig2 (Results 1 – 14 of 14) sorted by relevance

/third_party/boost/libs/signals2/test/
Dsignal_test.cpp306 signal_type sig2(dummy_combiner(2)); in test_swap() local
307 BOOST_CHECK(sig2() == 2); in test_swap()
309 sig1.swap(sig2); in test_swap()
311 BOOST_CHECK(sig2() == 1); in test_swap()
314 swap(sig1, sig2); in test_swap()
316 BOOST_CHECK(sig2() == 2); in test_swap()
325 signal_type sig2(dummy_combiner(2)); in test_move() local
326 BOOST_CHECK(sig2() == 2); in test_move()
328 sig1 = std::move(sig2); in test_move()
Dsignal_n_test.cpp326 signal_type sig2(dummy_combiner(2)); in test_swap() local
327 BOOST_CHECK(sig2() == 2); in test_swap()
329 sig1.swap(sig2); in test_swap()
331 BOOST_CHECK(sig2() == 1); in test_swap()
334 swap(sig1, sig2); in test_swap()
336 BOOST_CHECK(sig2() == 2); in test_swap()
/third_party/libuv/docs/code/signal/
Dmain.c42 uv_signal_t sig2; in thread2_worker() local
43 uv_signal_init(loop2, &sig2); in thread2_worker()
44 uv_signal_start(&sig2, signal_handler, SIGUSR1); in thread2_worker()
/third_party/typescript_eslint/packages/eslint-plugin/src/rules/
Dunified-signatures.ts260 const sig2 = b.params; constant
262 const minLength = Math.min(sig1.length, sig2.length);
263 const longer = sig1.length < sig2.length ? sig2 : sig1; constant
264 const shorter = sig1.length < sig2.length ? sig1 : sig2;
265 const shorterSig = sig1.length < sig2.length ? a : b;
278 const sig2i = sig2[i];
/third_party/boost/boost/signals2/
Dsignal.hpp55 … signal<Signature, Combiner, Group, GroupCompare, SlotFunction, ExtendedSlotFunction, Mutex> &sig2) in swap() argument
57 sig1.swap(sig2); in swap()
/third_party/openssl/test/
Dcurve448_internal_test.c163 static const uint8_t sig2[114] = { variable
619 || !TEST_int_eq(memcmp(sig2, outsig, sizeof(sig2)), 0) in test_ed448()
/third_party/boost/boost/geometry/formulas/
Dspherical.hpp245 CT const sig2 = sig1 + sig12 / get_radius<0>(sphere); in spherical_direct() local
247 CT const cos_sig2 = cos(sig2); in spherical_direct()
253 CT const sin_sig2 = sin(sig2); in spherical_direct()
Dvertex_longitude.hpp136 CT const sig2 = atan2(sin_bet2, -cos_alp2 * cos_bet2); //lat3 is a vertex in apply() local
141 CT const cos_sig2 = cos(sig2); in apply()
/third_party/ffmpeg/libavfilter/opencl/
Dtonemap.cl240 float sig2 = max(c2.x, max(c2.y, c2.z));
242 float sig = max(sig0, max(sig1, max(sig2, sig3)));
/third_party/boost/boost/signals2/detail/
Dsignal_template.hpp764 …2_SIGNAL_CLASS_NAME(BOOST_SIGNALS2_NUM_ARGS) <BOOST_SIGNALS2_SIGNAL_TEMPLATE_INSTANTIATION> &sig2 )
766 sig1.swap(sig2);
/third_party/flutter/skia/third_party/externals/libpng/contrib/tools/
Dpngfix.c141 #define sig2 PNG_U32( 13, 10, 26, 10) macro
3221 if (file->length != sig1 || file->type != sig2) in read_callback()
3322 assert(length == sig1 && type == sig2); in read_callback()
/third_party/skia/third_party/externals/libpng/contrib/tools/
Dpngfix.c141 #define sig2 PNG_U32( 13, 10, 26, 10) macro
3221 if (file->length != sig1 || file->type != sig2) in read_callback()
3322 assert(length == sig1 && type == sig2); in read_callback()
/third_party/libpng/contrib/tools/
Dpngfix.c141 #define sig2 PNG_U32( 13, 10, 26, 10) macro
3221 if (file->length != sig1 || file->type != sig2) in read_callback()
3322 assert(length == sig1 && type == sig2); in read_callback()
/third_party/python/Lib/test/
Dtest_inspect.py3443 sig2 = signature_func(func, locals=locals())
3444 self.assertEqual(sig2.return_annotation, int)
3445 self.assertEqual(sig2.parameters['foo'].annotation, Foo)