Home
last modified time | relevance | path

Searched refs:ex (Results 1 – 25 of 1733) sorted by relevance

12345678910>>...70

/third_party/typescript/tests/baselines/reference/
DvarRequireFromJavascript.symbols2 var ex = require('./ex')
3 >ex : Symbol(ex, Decl(use.js, 0, 3))
5 >'./ex' : Symbol(ex, Decl(ex.js, 0, 0))
8 var crunch = new ex.Crunch(1);
10 >ex.Crunch : Symbol(ex.Crunch, Decl(ex.js, 0, 0))
11 >ex : Symbol(ex, Decl(use.js, 0, 3))
12 >Crunch : Symbol(ex.Crunch, Decl(ex.js, 0, 0))
15 >crunch.n : Symbol(ex.Crunch.n, Decl(ex.js, 2, 20))
17 >n : Symbol(ex.Crunch.n, Decl(ex.js, 2, 20))
22 * @param {ex.Crunch} wrap
[all …]
DvarRequireFromTypescript.symbols2 var ex = require('./ex')
3 >ex : Symbol(ex, Decl(use.js, 0, 3))
5 >'./ex' : Symbol(ex, Decl(ex.d.ts, 0, 0))
8 var crunch = new ex.Crunch(1);
10 >ex.Crunch : Symbol(ex.Crunch, Decl(ex.d.ts, 0, 33))
11 >ex : Symbol(ex, Decl(use.js, 0, 3))
12 >Crunch : Symbol(ex.Crunch, Decl(ex.d.ts, 0, 33))
15 >crunch.n : Symbol(ex.Crunch.n, Decl(ex.d.ts, 1, 21))
17 >n : Symbol(ex.Crunch.n, Decl(ex.d.ts, 1, 21))
22 * @param {ex.Greatest} greatest
[all …]
DvarRequireFromTypescript.types2 var ex = require('./ex')
3 >ex : typeof ex
4 >require('./ex') : typeof ex
6 >'./ex' : "./ex"
9 var crunch = new ex.Crunch(1);
10 >crunch : ex.Crunch
11 >new ex.Crunch(1) : ex.Crunch
12 >ex.Crunch : typeof ex.Crunch
13 >ex : typeof ex
14 >Crunch : typeof ex.Crunch
[all …]
DvarRequireFromJavascript.types2 var ex = require('./ex')
3 >ex : typeof ex
4 >require('./ex') : typeof ex
6 >'./ex' : "./ex"
9 var crunch = new ex.Crunch(1);
10 >crunch : ex.Crunch
11 >new ex.Crunch(1) : ex.Crunch
12 >ex.Crunch : typeof ex.Crunch
13 >ex : typeof ex
14 >Crunch : typeof ex.Crunch
[all …]
DjsdocTypeReferenceToImport.symbols4 const C = require('./ex').C;
6 >require('./ex').C : Symbol(C, Decl(ex.d.ts, 0, 0))
8 >'./ex' : Symbol("tests/cases/conformance/jsdoc/ex", Decl(ex.d.ts, 0, 0))
9 >C : Symbol(C, Decl(ex.d.ts, 0, 0))
11 const D = require('./ex')?.C;
13 >require('./ex')?.C : Symbol(C, Decl(ex.d.ts, 0, 0))
15 >'./ex' : Symbol("tests/cases/conformance/jsdoc/ex", Decl(ex.d.ts, 0, 0))
16 >C : Symbol(C, Decl(ex.d.ts, 0, 0))
24 >c.start : Symbol(C.start, Decl(ex.d.ts, 0, 16))
26 >start : Symbol(C.start, Decl(ex.d.ts, 0, 16))
[all …]
/third_party/boost/boost/detail/
Dcatch_exceptions.hpp76 catch ( const char * ex ) in catch_exceptions() local
77 { detail::report_exception( out, "", ex ); } in catch_exceptions()
78 catch ( const std::string & ex ) in catch_exceptions() local
79 { detail::report_exception( out, "", ex.c_str() ); } in catch_exceptions()
82 catch ( const std::bad_alloc & ex ) in catch_exceptions() local
83 { detail::report_exception( out, "std::bad_alloc:", ex.what() ); } in catch_exceptions()
86 catch ( const std::bad_cast & ex ) in catch_exceptions() local
87 { detail::report_exception( out, "std::bad_cast:", ex.what() ); } in catch_exceptions()
88 catch ( const std::bad_typeid & ex ) in catch_exceptions() local
89 { detail::report_exception( out, "std::bad_typeid:", ex.what() ); } in catch_exceptions()
[all …]
/third_party/openssl/crypto/x509/
Dx509_v3.c42 X509_EXTENSION *ex; in X509v3_get_ext_by_OBJ() local
51 ex = sk_X509_EXTENSION_value(sk, lastpos); in X509v3_get_ext_by_OBJ()
52 if (OBJ_cmp(ex->object, obj) == 0) in X509v3_get_ext_by_OBJ()
62 X509_EXTENSION *ex; in X509v3_get_ext_by_critical() local
71 ex = sk_X509_EXTENSION_value(sk, lastpos); in X509v3_get_ext_by_critical()
72 if (((ex->critical > 0) && crit) || ((ex->critical <= 0) && !crit)) in X509v3_get_ext_by_critical()
97 X509_EXTENSION *ex, int loc) in STACK_OF()
120 if ((new_ex = X509_EXTENSION_dup(ex)) == NULL) in STACK_OF()
136 X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex, int nid, in X509_EXTENSION_create_by_NID() argument
148 ret = X509_EXTENSION_create_by_OBJ(ex, obj, crit, data); in X509_EXTENSION_create_by_NID()
[all …]
/third_party/flutter/skia/src/utils/win/
DSkHRESULT.h46 #define HR(ex) HR_GENERAL(ex, nullptr, _hr) argument
47 #define HRM(ex, msg) HR_GENERAL(ex, msg, _hr) argument
49 #define HRB(ex) HR_GENERAL(ex, nullptr, false) argument
50 #define HRBM(ex, msg) HR_GENERAL(ex, msg, false) argument
52 #define HRN(ex) HR_GENERAL(ex, nullptr, nullptr) argument
53 #define HRNM(ex, msg) HR_GENERAL(ex, msg, nullptr) argument
55 #define HRV(ex) HR_GENERAL(ex, nullptr, ) argument
56 #define HRVM(ex, msg) HR_GENERAL(ex, msg, ) argument
58 #define HRZ(ex) HR_GENERAL(ex, nullptr, 0) argument
59 #define HRZM(ex, msg) HR_GENERAL(ex, msg, 0) argument
/third_party/skia/src/utils/win/
DSkHRESULT.h46 #define HR(ex) HR_GENERAL(ex, nullptr, _hr) argument
47 #define HRM(ex, msg) HR_GENERAL(ex, msg, _hr) argument
49 #define HRB(ex) HR_GENERAL(ex, nullptr, false) argument
50 #define HRBM(ex, msg) HR_GENERAL(ex, msg, false) argument
52 #define HRN(ex) HR_GENERAL(ex, nullptr, nullptr) argument
53 #define HRNM(ex, msg) HR_GENERAL(ex, msg, nullptr) argument
55 #define HRV(ex) HR_GENERAL(ex, nullptr, ) argument
56 #define HRVM(ex, msg) HR_GENERAL(ex, msg, ) argument
58 #define HRZ(ex) HR_GENERAL(ex, nullptr, 0) argument
59 #define HRZM(ex, msg) HR_GENERAL(ex, msg, 0) argument
/third_party/boost/libs/beast/test/beast/core/
D_detail_bind_continuation.cpp66 test_executor<> ex(ioc.get_executor());
67 BEAST_EXPECT(ex->total == 0);
69 bind_continuation(ex, handler{}));
72 BEAST_EXPECT(ex->dispatch == 1);
76 test_executor<> ex(ioc.get_executor());
77 BEAST_EXPECT(ex->total == 0);
79 bind_continuation(ex, handler{}));
82 BEAST_EXPECT(ex->defer == 1);
86 test_executor<> ex(ioc.get_executor());
87 BEAST_EXPECT(ex->total == 0);
[all …]
/third_party/gstreamer/gstplugins_base/gst-libs/gst/audio/
Dgstaudiopack-dist.c283 _backup_audio_orc_unpack_u8 (OrcExecutor * ORC_RESTRICT ex) in _backup_audio_orc_unpack_u8() argument
286 int n = ex->n; in _backup_audio_orc_unpack_u8()
298 ptr0 = (orc_union32 *) ex->arrays[0]; in _backup_audio_orc_unpack_u8()
299 ptr4 = (orc_int8 *) ex->arrays[4]; in _backup_audio_orc_unpack_u8()
324 OrcExecutor _ex, *ex = &_ex; in audio_orc_unpack_u8() local
364 ex->arrays[ORC_VAR_A2] = c; in audio_orc_unpack_u8()
365 ex->program = 0; in audio_orc_unpack_u8()
367 ex->n = n; in audio_orc_unpack_u8()
368 ex->arrays[ORC_VAR_D1] = d1; in audio_orc_unpack_u8()
369 ex->arrays[ORC_VAR_S1] = (void *) s1; in audio_orc_unpack_u8()
[all …]
Dgstaudiopack.c283 _backup_audio_orc_unpack_u8 (OrcExecutor * ORC_RESTRICT ex) in _backup_audio_orc_unpack_u8() argument
286 int n = ex->n; in _backup_audio_orc_unpack_u8()
298 ptr0 = (orc_union32 *) ex->arrays[0]; in _backup_audio_orc_unpack_u8()
299 ptr4 = (orc_int8 *) ex->arrays[4]; in _backup_audio_orc_unpack_u8()
324 OrcExecutor _ex, *ex = &_ex; in audio_orc_unpack_u8() local
364 ex->arrays[ORC_VAR_A2] = c; in audio_orc_unpack_u8()
365 ex->program = 0; in audio_orc_unpack_u8()
367 ex->n = n; in audio_orc_unpack_u8()
368 ex->arrays[ORC_VAR_D1] = d1; in audio_orc_unpack_u8()
369 ex->arrays[ORC_VAR_S1] = (void *) s1; in audio_orc_unpack_u8()
[all …]
/third_party/gstreamer/gstplugins_base/gst/adder/
Dgstadderorc.c216 _backup_adder_orc_add_s32 (OrcExecutor * ORC_RESTRICT ex) in _backup_adder_orc_add_s32() argument
219 int n = ex->n; in _backup_adder_orc_add_s32()
226 ptr0 = (orc_union32 *) ex->arrays[0]; in _backup_adder_orc_add_s32()
227 ptr4 = (orc_union32 *) ex->arrays[4]; in _backup_adder_orc_add_s32()
247 OrcExecutor _ex, *ex = &_ex; in adder_orc_add_s32() local
283 ex->arrays[ORC_VAR_A2] = c; in adder_orc_add_s32()
284 ex->program = 0; in adder_orc_add_s32()
286 ex->n = n; in adder_orc_add_s32()
287 ex->arrays[ORC_VAR_D1] = d1; in adder_orc_add_s32()
288 ex->arrays[ORC_VAR_S1] = (void *) s1; in adder_orc_add_s32()
[all …]
Dgstadderorc-dist.c216 _backup_adder_orc_add_s32 (OrcExecutor * ORC_RESTRICT ex) in _backup_adder_orc_add_s32() argument
219 int n = ex->n; in _backup_adder_orc_add_s32()
226 ptr0 = (orc_union32 *) ex->arrays[0]; in _backup_adder_orc_add_s32()
227 ptr4 = (orc_union32 *) ex->arrays[4]; in _backup_adder_orc_add_s32()
247 OrcExecutor _ex, *ex = &_ex; in adder_orc_add_s32() local
283 ex->arrays[ORC_VAR_A2] = c; in adder_orc_add_s32()
284 ex->program = 0; in adder_orc_add_s32()
286 ex->n = n; in adder_orc_add_s32()
287 ex->arrays[ORC_VAR_D1] = d1; in adder_orc_add_s32()
288 ex->arrays[ORC_VAR_S1] = (void *) s1; in adder_orc_add_s32()
[all …]
/third_party/e2fsprogs/tests/d_fallocate_bigalloc/
Dexpect.gz
/third_party/gstreamer/gstplugins_base/gst/audiomixer/
Dgstaudiomixerorc.c209 _backup_audiomixer_orc_add_s32 (OrcExecutor * ORC_RESTRICT ex) in _backup_audiomixer_orc_add_s32() argument
212 int n = ex->n; in _backup_audiomixer_orc_add_s32()
219 ptr0 = (orc_union32 *) ex->arrays[0]; in _backup_audiomixer_orc_add_s32()
220 ptr4 = (orc_union32 *) ex->arrays[4]; in _backup_audiomixer_orc_add_s32()
240 OrcExecutor _ex, *ex = &_ex; in audiomixer_orc_add_s32() local
276 ex->arrays[ORC_VAR_A2] = c; in audiomixer_orc_add_s32()
277 ex->program = 0; in audiomixer_orc_add_s32()
279 ex->n = n; in audiomixer_orc_add_s32()
280 ex->arrays[ORC_VAR_D1] = d1; in audiomixer_orc_add_s32()
281 ex->arrays[ORC_VAR_S1] = (void *) s1; in audiomixer_orc_add_s32()
[all …]
Dgstaudiomixerorc-dist.c209 _backup_audiomixer_orc_add_s32 (OrcExecutor * ORC_RESTRICT ex) in _backup_audiomixer_orc_add_s32() argument
212 int n = ex->n; in _backup_audiomixer_orc_add_s32()
219 ptr0 = (orc_union32 *) ex->arrays[0]; in _backup_audiomixer_orc_add_s32()
220 ptr4 = (orc_union32 *) ex->arrays[4]; in _backup_audiomixer_orc_add_s32()
240 OrcExecutor _ex, *ex = &_ex; in audiomixer_orc_add_s32() local
276 ex->arrays[ORC_VAR_A2] = c; in audiomixer_orc_add_s32()
277 ex->program = 0; in audiomixer_orc_add_s32()
279 ex->n = n; in audiomixer_orc_add_s32()
280 ex->arrays[ORC_VAR_D1] = d1; in audiomixer_orc_add_s32()
281 ex->arrays[ORC_VAR_S1] = (void *) s1; in audiomixer_orc_add_s32()
[all …]
/third_party/boost/boost/thread/executors/
Dscheduler.hpp34 resubmitter(Executor& ex, Function funct) : in resubmitter() argument
35 ex(ex), in resubmitter()
41 ex.submit(funct); in operator ()()
45 Executor& ex; member in boost::executors::resubmitter
52 resubmit(Executor& ex, BOOST_THREAD_FWD_REF(Function) funct) { in resubmit() argument
53 return resubmitter<Executor, typename decay<Function>::type >(ex, boost::move(funct)); in resubmit()
66 …resubmit_at_executor(Scheduler& sch, Executor& ex, chrono::time_point<clock, Duration> const& tp) : in resubmit_at_executor() argument
68 ex(ex), in resubmit_at_executor()
86 sch.submit_at(resubmit(ex,boost::forward<Work>(w)), tp); in submit()
91 return ex; in underlying_executor()
[all …]
/third_party/musl/src/math/
Dremquof.c7 int ex = ux.i>>23 & 0xff; in remquof() local
16 if (uy.i<<1 == 0 || isnan(y) || ex == 0xff) in remquof()
22 if (!ex) { in remquof()
23 for (i = uxi<<9; i>>31 == 0; ex--, i <<= 1); in remquof()
24 uxi <<= -ex + 1; in remquof()
38 if (ex < ey) { in remquof()
39 if (ex+1 == ey) in remquof()
45 for (; ex > ey; ex--) { in remquof()
60 ex = -30; in remquof()
62 for (; uxi>>23 == 0; uxi <<= 1, ex--); in remquof()
[all …]
Dremquo.c7 int ex = ux.i>>52 & 0x7ff; in remquo() local
16 if (uy.i<<1 == 0 || isnan(y) || ex == 0x7ff) in remquo()
22 if (!ex) { in remquo()
23 for (i = uxi<<12; i>>63 == 0; ex--, i <<= 1); in remquo()
24 uxi <<= -ex + 1; in remquo()
38 if (ex < ey) { in remquo()
39 if (ex+1 == ey) in remquo()
45 for (; ex > ey; ex--) { in remquo()
60 ex = -60; in remquo()
62 for (; uxi>>52 == 0; uxi <<= 1, ex--); in remquo()
[all …]
/third_party/musl/porting/liteos_a/kernel/src/math/
Dremquo.c7 int ex = ux.i>>52 & 0x7ff; in remquo() local
16 if (uy.i<<1 == 0 || isnan(y) || ex == 0x7ff) in remquo()
22 if (!ex) { in remquo()
23 for (i = uxi<<12; i>>63 == 0; ex--, i <<= 1); in remquo()
24 uxi <<= -ex + 1; in remquo()
38 if (ex < ey) { in remquo()
39 if (ex+1 == ey) in remquo()
45 for (; ex > ey; ex--) { in remquo()
60 ex = -60; in remquo()
62 for (; uxi>>52 == 0; uxi <<= 1, ex--); in remquo()
[all …]
Dremquof.c7 int ex = ux.i>>23 & 0xff; in remquof() local
16 if (uy.i<<1 == 0 || isnan(y) || ex == 0xff) in remquof()
22 if (!ex) { in remquof()
23 for (i = uxi<<9; i>>31 == 0; ex--, i <<= 1); in remquof()
24 uxi <<= -ex + 1; in remquof()
38 if (ex < ey) { in remquof()
39 if (ex+1 == ey) in remquof()
45 for (; ex > ey; ex--) { in remquof()
60 ex = -30; in remquof()
62 for (; uxi>>23 == 0; uxi <<= 1, ex--); in remquof()
[all …]
/third_party/boost/boost/asio/detail/
Dhandler_work.hpp66 explicit handler_work_base(int, int, const Executor& ex) BOOST_ASIO_NOEXCEPT in handler_work_base() argument
67 : executor_(boost::asio::prefer(ex, execution::outstanding_work.tracked)) in handler_work_base()
72 handler_work_base(const Executor& ex, in handler_work_base() argument
74 : executor_(boost::asio::prefer(ex, execution::outstanding_work.tracked)) in handler_work_base()
126 explicit handler_work_base(int, int, const Executor& ex) BOOST_ASIO_NOEXCEPT in handler_work_base() argument
127 : executor_(ex), in handler_work_base()
133 handler_work_base(const Executor& ex, in handler_work_base() argument
135 : executor_(ex), in handler_work_base()
136 owns_work_(ex != candidate) in handler_work_base()
143 handler_work_base(const Executor& ex, in handler_work_base() argument
[all …]
/third_party/boost/libs/asio/include/boost/asio/detail/
Dhandler_work.hpp66 explicit handler_work_base(int, int, const Executor& ex) BOOST_ASIO_NOEXCEPT in handler_work_base() argument
67 : executor_(boost::asio::prefer(ex, execution::outstanding_work.tracked)) in handler_work_base()
72 handler_work_base(const Executor& ex, in handler_work_base() argument
74 : executor_(boost::asio::prefer(ex, execution::outstanding_work.tracked)) in handler_work_base()
126 explicit handler_work_base(int, int, const Executor& ex) BOOST_ASIO_NOEXCEPT in handler_work_base() argument
127 : executor_(ex), in handler_work_base()
133 handler_work_base(const Executor& ex, in handler_work_base() argument
135 : executor_(ex), in handler_work_base()
136 owns_work_(ex != candidate) in handler_work_base()
143 handler_work_base(const Executor& ex, in handler_work_base() argument
[all …]
/third_party/boost/libs/thread/test/sync/futures/shared_future/
Dthen_executor_pass.cpp62 boost::basic_thread_pool ex(1); in main() local
65 boost::future<int> f2 = f1.then(ex, &p2); in main()
71 catch (std::exception& ex) in main() local
73 BOOST_THREAD_LOG << "ERRORRRRR "<<ex.what() << "" << BOOST_THREAD_END_LOG; in main()
84 boost::basic_thread_pool ex(1); in main() local
87 boost::future<void> f2 = f1.then(ex, &p3); in main()
93 catch (std::exception& ex) in main() local
95 BOOST_THREAD_LOG << "ERRORRRRR "<<ex.what() << "" << BOOST_THREAD_END_LOG; in main()
106 boost::basic_thread_pool ex(1); in main() local
107 boost::future<int> f2 = boost::async(p1).share().then(ex, &p2); in main()
[all …]

12345678910>>...70