/third_party/boost/libs/thread/test/ |
D | test_scheduler.cpp | 34 void test_scheduler(const int n, boost::scheduler<>& sch) in test_scheduler() argument 38 sch.submit_after(boost::bind(fn,i), seconds(i)); in test_scheduler() 39 sch.submit_after(boost::bind(fn,i), milliseconds(i*100)); in test_scheduler() 43 void test_after(const int n, boost::scheduler<>& sch) in test_after() argument 47 sch.after(seconds(i)).submit(boost::bind(fn,i)); in test_after() 48 sch.after(milliseconds(i*100)).submit(boost::bind(fn,i)); in test_after() 52 void test_at(const int n, boost::scheduler<>& sch) in test_at() argument 56 sch.at(steady_clock::now()+seconds(i)).submit(boost::bind(fn,i)); in test_at() 57 sch.at(steady_clock::now()+milliseconds(i*100)).submit(boost::bind(fn,i)); in test_at() 61 void test_on(const int n, boost::scheduler<>& sch, thread_pool& tp) in test_on() argument [all …]
|
/third_party/boost/boost/thread/executors/ |
D | scheduler.hpp | 66 …resubmit_at_executor(Scheduler& sch, Executor& ex, chrono::time_point<clock, Duration> const& tp) : in resubmit_at_executor() argument 67 sch(sch), in resubmit_at_executor() 86 sch.submit_at(resubmit(ex,boost::forward<Work>(w)), tp); in submit() 95 return sch; in underlying_scheduler() 105 return is_closed || sch.closed() || ex.closed(); in closed() 109 Scheduler& sch; member in boost::executors::resubmit_at_executor 128 scheduler_executor_wrapper(Scheduler& sch, Executor& ex) : in scheduler_executor_wrapper() argument 129 sch(sch), in scheduler_executor_wrapper() 143 return sch; in underlying_scheduler() 155 return the_executor(sch, ex, abs_time); in at() [all …]
|
/third_party/node/deps/npm/node_modules/har-validator/node_modules/json-schema-traverse/ |
D | index.js | 67 var sch = schema[key]; 68 if (Array.isArray(sch)) { 70 for (var i=0; i<sch.length; i++) 71 …_traverse(opts, pre, post, sch[i], jsonPtr + '/' + key + '/' + i, rootSchema, jsonPtr, key, schema… 74 if (sch && typeof sch == 'object') { 75 for (var prop in sch) 76 …_traverse(opts, pre, post, sch[prop], jsonPtr + '/' + key + '/' + escapeJsonPtr(prop), rootSchema,… 79 _traverse(opts, pre, post, sch, jsonPtr + '/' + key, rootSchema, jsonPtr, key, schema);
|
/third_party/node/deps/npm/node_modules/har-validator/node_modules/ajv/lib/dot/ |
D | defaults.def | 18 {{= it.useDefault($sch.default) }} 20 {{= JSON.stringify($sch.default) }} 31 {{ var $sch = $schema[$propertyKey]; }} 32 {{? $sch.default !== undefined }} 41 {{~ it.schema.items:$sch:$i }} 42 {{? $sch.default !== undefined }}
|
D | dependencies.jst | 23 var $sch = $schema[$property]; 24 var $deps = Array.isArray($sch) ? $propertyDeps : $schemaDeps; 25 $deps[$property] = $sch; 58 {{ var $sch = $schemaDeps[$property]; }} 59 {{? {{# def.nonEmptySchema:$sch }} }} 64 $it.schema = $sch;
|
D | anyOf.jst | 7 var $noEmptySchema = $schema.every(function($sch) { 8 return {{# def.nonEmptySchema:$sch }}; 18 {{~ $schema:$sch:$i }} 20 $it.schema = $sch;
|
D | allOf.jst | 11 {{~ $schema:$sch:$i }} 12 {{? {{# def.nonEmptySchema:$sch }} }} 15 $it.schema = $sch;
|
D | properties.jst | 140 {{ var $sch = $schema[$propertyKey]; }} 142 {{? {{# def.nonEmptySchema:$sch}} }} 146 , $hasDefault = $useDefaults && $sch.default !== undefined; 147 $it.schema = $sch; 210 {{ var $sch = $pProperties[$pProperty]; }} 212 {{? {{# def.nonEmptySchema:$sch}} }} 214 $it.schema = $sch;
|
D | oneOf.jst | 19 {{~ $schema:$sch:$i }} 20 {{? {{# def.nonEmptySchema:$sch }} }} 22 $it.schema = $sch;
|
D | items.jst | 48 {{~ $schema:$sch:$i }} 49 {{? {{# def.nonEmptySchema:$sch }} }} 55 $it.schema = $sch;
|
/third_party/node/deps/npm/node_modules/har-validator/node_modules/ajv/lib/compile/ |
D | async.js | 45 function loadMetaSchemaOf(sch) { argument 46 var $schema = sch.$schema; 71 return schemaPromise.then(function (sch) { argument 73 return loadMetaSchemaOf(sch).then(function () { 74 if (!added(ref)) self.addSchema(sch, ref, undefined, meta);
|
D | resolve.js | 239 …traverse(schema, {allKeys: true}, function(sch, jsonPtr, rootSchema, parentJsonPtr, parentKeyword,… argument 241 var id = self._getId(sch); 253 if (!equal(sch, refVal.schema)) 257 if (localRefs[id] && !equal(sch, localRefs[id])) 259 localRefs[id] = sch;
|
/third_party/boost/boost/sort/common/ |
D | scheduler.hpp | 260 const scheduler<Func_t, Allocator> &sch) in operator <<() argument 262 std::unique_lock < spinlock_t > s(sch.spl); in operator <<() 263 out << "Nelem :" << sch.nelem << std::endl; in operator <<() 264 for (auto it = sch.mp.begin(); it != sch.mp.end(); ++it) in operator <<()
|
/third_party/mindspore/mindspore/ops/_op_impl/_custom_op/ |
D | batchnorm_fold2_grad_reduce.py | 94 sch = generic.auto_schedule(res_list) 100 te.lang.cce.cce_build_code(sch, config) 103 sch, tensor_list = bn_training_reduce_schedule_nd(res_list) 105 tvm.build(sch, tensor_list, "cce", name=kernel_name)
|
D | correction_mul_grad.py | 113 sch = generic.auto_schedule(res_list) 120 te.lang.cce.cce_build_code(sch, config) 189 sch = generic.auto_schedule(res) 196 te.lang.cce.cce_build_code(sch, config)
|
D | fake_learned_scale_quant_perlayer_grad_reduce.py | 81 sch = generic.auto_schedule(res) 88 te.lang.cce.cce_build_code(sch, config)
|
D | fake_learned_scale_quant_perchannel_grad_reduce.py | 81 sch = generic.auto_schedule(res) 88 te.lang.cce.cce_build_code(sch, config)
|
D | correction_mul.py | 83 sch = generic.auto_schedule(res) 89 te.lang.cce.cce_build_code(sch, config)
|
/third_party/musl/src/crypt/ |
D | crypt_des.c | 652 int sch = (ch < 0x80) ? ch : -(0x100 - ch); in ascii_to_bin() local 655 retval = sch - '.'; in ascii_to_bin() 656 if (sch >= 'A') { in ascii_to_bin() 657 retval = sch - ('A' - 12); in ascii_to_bin() 658 if (sch >= 'a') in ascii_to_bin() 659 retval = sch - ('a' - 38); in ascii_to_bin()
|
/third_party/ltp/testcases/kernel/sched/sched_stress/ |
D | sched_stress.sh | 31 echo 0.000000 > sch.measure 35 rm -rf /tmp/tmp$$ ./sched_datafile sch.measure
|
/third_party/node/deps/npm/node_modules/har-validator/node_modules/json-schema-traverse/spec/fixtures/ |
D | schema.js | 49 var sch = { variable 58 sch.properties['foo_' + keyword] = {title: 'foo'}; 59 sch.properties['bar_' + keyword] = {title: 'bar'}; 60 return sch;
|
/third_party/python/Lib/test/ |
D | test_interpreters.py | 558 _, sch = interpreters.create_channel() 559 self.assertIsInstance(sch.id, _interpreters.ChannelID) 562 sch = interpreters.SendChannel(1) 563 self.assertEqual(sch.id, 1) 569 sch = interpreters.SendChannel(1) 571 sch.id = 2 728 rch, sch = interpreters.create_channel() 730 sch.send_nowait(None) 731 sch.send_nowait(1) 732 sch.send_nowait(b'spam') [all …]
|
/third_party/mindspore/tests/st/ops/custom_ops_tbe/ |
D | square_impl.py | 90 sch = generic.auto_schedule(res) 96 te.lang.cce.cce_build_code(sch, config)
|
D | add3_impl.py | 56 sch = generic.auto_schedule(res) 62 te.lang.cce.cce_build_code(sch, config)
|
/third_party/iowow/src/utils/ |
D | iwpool.c | 170 const char *sch = strchr(split_chars, ch); in iwpool_split_string() local 171 if (ep >= sp && (sch || *(ep + 1) == '\0')) { in iwpool_split_string() 172 if (!sch && *(ep + 1) == '\0') ++ep; in iwpool_split_string()
|