/third_party/boost/libs/graph/test/ |
D | cycle_ratio_tests.cpp | 217 diGraphInt tg; in main() local 219 = get(vertex_index, tg); in main() 220 property_map< diGraphInt, edge_weight_t >::type ew1m = get(edge_weight, tg); in main() 222 = get(edge_weight2, tg); in main() 227 read_data1(iss, tg); in main() 228 max_cr = maximum_cycle_ratio(tg, vim, ew1m, ew2m); in main() 231 tg.clear(); in main() 236 read_data1(iss, tg); in main() 241 BOOST_TEST(std::abs(boost::maximum_cycle_ratio(tg, vim, ew1m, ew2m, in main() 245 tg.clear(); in main() [all …]
|
/third_party/mesa3d/src/gallium/auxiliary/translate/ |
D | translate_generic.c | 588 generic_run_one(struct translate_generic *tg, in generic_run_one() argument 594 unsigned nr_attrs = tg->nr_attrib; in generic_run_one() 599 uint8_t *dst = (uint8_t *)vert + tg->attrib[attr].output_offset; in generic_run_one() 601 if (tg->attrib[attr].type == TRANSLATE_ELEMENT_NORMAL) { in generic_run_one() 606 if (tg->attrib[attr].instance_divisor) { in generic_run_one() 608 index += (instance_id / tg->attrib[attr].instance_divisor); in generic_run_one() 617 index = MIN2(index, tg->attrib[attr].max_index); in generic_run_one() 620 src = tg->attrib[attr].input_ptr + in generic_run_one() 621 (ptrdiff_t)tg->attrib[attr].input_stride * index; in generic_run_one() 623 copy_size = tg->attrib[attr].copy_size; in generic_run_one() [all …]
|
/third_party/boost/libs/thread/test/sync/mutual_exclusion/sync_pq/ |
D | tq_multi_thread_pass.cpp | 86 boost::thread_group tg; in test_push_while_pull() local 88 tg.create_thread(boost::bind(call_push, &tq, start)); in test_push_while_pull() 89 tg.create_thread(boost::bind(call_pull, &tq, start)); in test_push_while_pull() 90 tg.join_all(); in test_push_while_pull() 98 boost::thread_group tg; in test_push_while_pull_until() local 100 tg.create_thread(boost::bind(call_push, &tq, start)); in test_push_while_pull_until() 101 tg.create_thread(boost::bind(call_pull_until, &tq, start)); in test_push_while_pull_until() 102 tg.join_all(); in test_push_while_pull_until() 110 boost::thread_group tg; in test_push_while_pull_for() local 112 tg.create_thread(boost::bind(call_push, &tq, start)); in test_push_while_pull_for() [all …]
|
D | pq_multi_thread_pass.cpp | 56 boost::thread_group tg; in test_pull() local 59 tg.create_thread(boost::bind(call_pull, &pq, &b)); in test_pull() 61 tg.join_all(); in test_pull() 71 boost::thread_group tg; in test_push() local 74 tg.create_thread(boost::bind(call_push, &pq, &b, i)); in test_push() 76 tg.join_all(); in test_push() 87 boost::thread_group tg; in test_both() local 90 tg.create_thread(boost::bind(call_pull, &pq, &b)); in test_both() 91 tg.create_thread(boost::bind(call_push, &pq, &b, i)); in test_both() 93 tg.join_all(); in test_both()
|
/third_party/ffmpeg/libavcodec/alpha/ |
D | idctdsp_alpha_asm.S | 97 zap t1, 0x33, tg 100 srl tg, 1, t0 101 xor tg, t0, tg # 0x8000800080008000 117 and t0, tg, t2 # 0 1 120 bic t0, tg, t0 # 0 2 122 and t3, tg, t5 # 1 1 127 and t6, tg, t8 # 2 1 130 bic t3, tg, t3 # 1 2 131 bic t6, tg, t6 # 2 2 141 and t9, tg, tb # 3 1 [all …]
|
/third_party/ffmpeg/libavformat/ |
D | replaygain.c | 70 int ff_replaygain_export_raw(AVStream *st, int32_t tg, uint32_t tp, in ff_replaygain_export_raw() argument 75 if (tg == INT32_MIN && ag == INT32_MIN) in ff_replaygain_export_raw() 83 replaygain->track_gain = tg; in ff_replaygain_export_raw() 93 const AVDictionaryEntry *tg, *tp, *ag, *ap; in ff_replaygain_export() local 95 tg = av_dict_get(metadata, "REPLAYGAIN_TRACK_GAIN", NULL, 0); in ff_replaygain_export() 101 parse_value(tg ? tg->value : NULL, INT32_MIN), in ff_replaygain_export()
|
D | replaygain.h | 35 int ff_replaygain_export_raw(AVStream *st, int32_t tg, uint32_t tp,
|
/third_party/boost/libs/thread/test/ |
D | test_3628.cpp | 81 boost::thread_group tg; in main() local 84 tg.create_thread(ThreadFuncWaiter); in main() 87 tg.create_thread(ThreadFuncNotifier); in main() 89 tg.join_all(); in main()
|
D | test_scheduled_tp.cpp | 73 boost::thread_group tg; in test_deque_multi() local 79 tg.create_thread(boost::bind(func2, &se, d)); in test_deque_multi() 81 tg.join_all(); in test_deque_multi()
|
/third_party/boost/libs/test/test/multithreading-ts/ |
D | sync-access-test.cpp | 47 boost::thread_group tg; // thread group to manage all threads variable 52 …tg.create_thread(boost::bind(thread_function, ref(b))); /// create a thread and pass it the barrier 54 tg.join_all();
|
/third_party/boost/libs/math/tools/ |
D | tgamma_large_data.cpp | 25 mp_type tg, lg; in generate() local 26 mpfr_gamma(tg.backend().data(), a.backend().data(), GMP_RNDN); in generate() 28 return boost::math::make_tuple(a, tg, lg); in generate()
|
D | tgamma_ratio_data.cpp | 19 mp_t tg = boost::math::tgamma(a); in tgamma_ratio() local 20 mp_t r1 = tg / boost::math::tgamma(a + delta); in tgamma_ratio() 21 mp_t r2 = tg / boost::math::tgamma(a - delta); in tgamma_ratio()
|
/third_party/flutter/skia/third_party/externals/icu/source/data/lang/ |
D | tg.txt | 14 tg{ 16 tg{"тоҷикӣ"}
|
/third_party/skia/third_party/externals/icu/source/data/lang/ |
D | tg.txt | 14 tg{ 16 tg{"тоҷикӣ"}
|
/third_party/skia/third_party/externals/icu/scripts/ |
D | data_files_to_preserve.txt | 13 locales/tg.txt 17 lang/tg.txt
|
/third_party/boost/boost/math/special_functions/ |
D | airy.hpp | 38 T tg = boost::math::tgamma(constants::twothirds<T>(), pol); in airy_ai_imp() local 39 T ai = 1 / (pow(T(3), constants::twothirds<T>()) * tg); in airy_ai_imp() 76 T tg = boost::math::tgamma(constants::twothirds<T>(), pol); in airy_bi_imp() local 78 T bi = 1 / (sqrt(boost::math::cbrt(T(3))) * tg); in airy_bi_imp() 108 T tg = boost::math::tgamma(constants::third<T>(), pol); in airy_ai_prime_imp() local 109 T aip = 1 / (boost::math::cbrt(T(3)) * tg); in airy_ai_prime_imp() 143 T tg = boost::math::tgamma(constants::third<T>(), pol); in airy_bi_prime_imp() local 144 T bip = sqrt(boost::math::cbrt(T(3))) / tg; in airy_bi_prime_imp()
|
/third_party/flutter/skia/third_party/externals/icu/scripts/ |
D | data_files_to_preserve.txt | 24 locales/tg.txt 28 lang/tg.txt
|
/third_party/iptables/extensions/ |
D | libebt_arpreply.c | 49 const void *entry, struct xt_entry_target **tg) in brarpreply_parse() argument 52 struct ebt_arpreply_info *replyinfo = (void *)(*tg)->data; in brarpreply_parse()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | Timer.h | 91 Timer(StringRef TimerName, StringRef TimerDescription, TimerGroup &tg) { in Timer() argument 92 init(TimerName, TimerDescription, tg); in Timer() 106 void init(StringRef TimerName, StringRef TimerDescription, TimerGroup &tg);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | Timer.h | 91 Timer(StringRef Name, StringRef Description, TimerGroup &tg) { in Timer() argument 92 init(Name, Description, tg); in Timer() 106 void init(StringRef Name, StringRef Description, TimerGroup &tg);
|
/third_party/skia/third_party/externals/swiftshader/tests/regres/cov/ |
D | coverage_test.go | 315 if tg, te := trimWS(g), trimWS(e); tg != te { 316 …rorf("Tests not as expected.\nGot:\n%v\nExpect:\n%v\n------\nGot: %v\nExpect: %v", g, e, tg, te) 322 if tg, te := trimWS(g), trimWS(e); tg != te { 323 …f("Coverage not as expected.\nGot:\n%v\nExpect:\n%v\n------\nGot: %v\nExpect: %v", g, e, tg, te)
|
/third_party/icu/icu4c/source/data/lang/ |
D | tg.txt | 4 tg{ 148 tg{"тоҷикӣ"}
|
/third_party/boost/libs/log/example/doc/ |
D | extension_record_tagger.cpp | 204 #define LOG_WITH_TAG(lg, sev, tg) \ argument 205 BOOST_LOG_WITH_PARAMS((lg), (keywords::severity = (sev))(my_keywords::tag = (tg)))
|
/third_party/skia/third_party/externals/icu/source/data/locales/ |
D | tg.txt | 11 tg{
|
/third_party/flutter/skia/third_party/externals/icu/source/data/locales/ |
D | tg.txt | 11 tg{
|