Home
last modified time | relevance | path

Searched refs:TG (Results 1 – 25 of 659) sorted by relevance

12345678910>>...27

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DTimer.cpp100 assert(!TG && "Timer already initialized"); in init()
104 TG = &tg; in init()
105 TG->addTimer(*this); in init()
109 if (!TG) return; // Never initialized, or already cleared. in ~Timer()
110 TG->removeTimer(*this); in ~Timer()
275 T.TG = nullptr; in removeTimer()
390 for (TimerGroup *TG = TimerGroupList; TG; TG = TG->Next) in printAll() local
391 TG->print(OS); in printAll()
396 for (TimerGroup *TG = TimerGroupList; TG; TG = TG->Next) in clearAll() local
397 TG->clear(); in clearAll()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
DTimer.cpp102 assert(!TG && "Timer already initialized"); in init()
106 TG = &tg; in init()
107 TG->addTimer(*this); in init()
111 if (!TG) return; // Never initialized, or already cleared. in ~Timer()
112 TG->removeTimer(*this); in ~Timer()
266 T.TG = nullptr; in removeTimer()
367 for (TimerGroup *TG = TimerGroupList; TG; TG = TG->Next) in printAll() local
368 TG->print(OS); in printAll()
397 for (TimerGroup *TG = TimerGroupList; TG; TG = TG->Next) in printAllJSONValues() local
398 delim = TG->printJSONValues(OS, delim); in printAllJSONValues()
/third_party/typescript/tests/baselines/reference/
DrestParameterTypeInstantiation.symbols4 interface TestGeneric<TG> {
6 >TG : Symbol(TG, Decl(restParameterTypeInstantiation.ts, 2, 22))
11 g: TG
13 >TG : Symbol(TG, Decl(restParameterTypeInstantiation.ts, 2, 22))
DrestParameterTypeInstantiation.types4 interface TestGeneric<TG> {
8 g: TG
9 >g : TG
DrestParameterTypeInstantiation.js4 interface TestGeneric<TG> {
6 g: TG
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DParallel.h96 const Comparator &Comp, TaskGroup &TG, size_t Depth) { in parallel_quick_sort() argument
114 TG.spawn([=, &Comp, &TG] { in parallel_quick_sort()
115 parallel_quick_sort(Start, Pivot, Comp, TG, Depth - 1); in parallel_quick_sort()
117 parallel_quick_sort(Pivot + 1, End, Comp, TG, Depth - 1); in parallel_quick_sort()
123 TaskGroup TG; in parallel_sort() local
124 parallel_quick_sort(Start, End, Comp, TG, in parallel_sort()
138 TaskGroup TG; in parallel_for_each() local
140 TG.spawn([=, &Fn] { std::for_each(Begin, Begin + TaskSize, Fn); }); in parallel_for_each()
152 TaskGroup TG; in parallel_for_each_n() local
155 TG.spawn([=, &Fn] { in parallel_for_each_n()
DTimer.h83 TimerGroup *TG = nullptr; ///< The TimerGroup this Timer is in. variable
95 assert(!RHS.TG && "Can only copy uninitialized timers"); in Timer()
98 assert(!TG && !T.TG && "Can only assign uninit timers");
110 bool isInitialized() const { return TG != nullptr; } in isInitialized()
193 TimerGroup(const TimerGroup &TG) = delete;
194 void operator=(const TimerGroup &TG) = delete;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DTimer.h83 TimerGroup *TG = nullptr; ///< The TimerGroup this Timer is in. variable
95 assert(!RHS.TG && "Can only copy uninitialized timers"); in Timer()
98 assert(!TG && !T.TG && "Can only assign uninit timers");
110 bool isInitialized() const { return TG != nullptr; } in isInitialized()
192 TimerGroup(const TimerGroup &TG) = delete;
193 void operator=(const TimerGroup &TG) = delete;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DPassTimingInfo.cpp63 TimerGroup TG; member in llvm::__anon2750f38f0111::legacy::PassTimingInfo
95 : TG("pass", "... Pass execution timing report ...") {} in PassTimingInfo()
116 TG.print(OutStream ? *OutStream : *CreateInfoOutputFile(), true); in print()
125 return new Timer(PassID, PassDescNumbered, TG); in newPassTimer()
178 Timer *T = new Timer(PassID, FullDesc, TG); in getPassTimer()
185 : TG("pass", "... Pass execution timing report ..."), Enabled(Enabled) {} in TimePassesHandler()
194 TG.print(OutStream ? *OutStream : *CreateInfoOutputFile(), true); in print()
/third_party/boost/libs/graph/test/
Dcycle_ratio_tests.cpp165 template < typename TG >
166 void make_dynamic_properties(TG& g, dynamic_properties& p) in make_dynamic_properties()
174 template < typename TG > void read_data1(std::istream& is, TG& g) in read_data1()
182 BGL_FORALL_VERTICES_T(vd, g, TG) { put(vertex_index, g, vd, i++); } in read_data1()
184 BGL_FORALL_EDGES_T(ed, g, TG) { put(edge_index, g, ed, i++); } in read_data1()
187 template < typename TG > void read_data(const char* file, TG& g) in read_data()
/third_party/typescript/tests/cases/compiler/
DrestParameterTypeInstantiation.ts5 interface TestGeneric<TG> {
7 g: TG
/third_party/boost/boost/graph/
Dhoward_cycle_ratio.hpp505 template < typename FT, typename TG, typename TVIM, typename TEW1,
508 const TG& g, TVIM vim, TEW1 ewm, TEW2 ew2m, EV* pcc) in optimum_cycle_ratio()
510 typedef typename graph_traits< TG >::directed_category DirCat; in optimum_cycle_ratio()
513 BOOST_CONCEPT_ASSERT((IncidenceGraphConcept< TG >)); in optimum_cycle_ratio()
514 BOOST_CONCEPT_ASSERT((VertexListGraphConcept< TG >)); in optimum_cycle_ratio()
515 typedef typename graph_traits< TG >::vertex_descriptor Vertex; in optimum_cycle_ratio()
517 typedef typename graph_traits< TG >::edge_descriptor Edge; in optimum_cycle_ratio()
523 return detail::mcr_howard< FT, TG, TVIM, TEW1, TEW2 >( in optimum_cycle_ratio()
528 detail::mcr_howard1< FT, TG, TVIM, TEW1, TEW2 > obj(g, vim, ewm, ew2m); in optimum_cycle_ratio()
/third_party/boost/libs/graph/example/
Dcycle_ratio_example.cpp26 template < typename TG > void gen_rand_graph(TG& g, size_t nV, size_t nE) in gen_rand_graph()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DPassTimingInfo.h56 TimerGroup TG; variable
/third_party/flutter/skia/third_party/externals/icu/source/data/region/
Dzh_Hant_HK.txt84 TG{"多哥共和國"}
Dyi.txt202 TG{"טאגא"}
Dshi.txt197 TG{"ⵟⵓⴳⵓ"}
Dzgh.txt200 TG{"ⵟⵓⴳⵓ"}
Ddyo.txt111 TG{"Togo"}
/third_party/flutter/skia/third_party/externals/angle2/src/tests/test_utils/
DANGLETest.h147 template <typename TR, typename TG, typename TB, typename TA>
148 GLColor MakeGLColor(TR r, TG g, TB b, TA a) in MakeGLColor()
160 template <typename TR, typename TG, typename TB, typename TA>
161 GLColor32F MakeGLColor32F(TR r, TG g, TB b, TA a) in MakeGLColor32F()
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/
DANGLETest.h193 template <typename TR, typename TG, typename TB, typename TA>
194 GLColor MakeGLColor(TR r, TG g, TB b, TA a) in MakeGLColor()
212 template <typename TR, typename TG, typename TB, typename TA>
213 GLColor32F MakeGLColor32F(TR r, TG g, TB b, TA a) in MakeGLColor32F()
/third_party/boost/tools/build/src/tools/
Dvmsdecc.jam300 "$(nl)\"$(f:TG=:R=$(locate))\"" ;
438 LINK-MAINMOD-OPT on $(targets[1]) = $(targets[1]:TG=:R=$(locate):S=$MAINMOD.opt) ;
439 LINK-MAINMOD-JAM on $(targets[1]) = $(targets[1]:TG=:R=$(locate):S=$MAINMOD.jam) ;
484 LINK-MAINMOD-OPT on $(targets[1]) = $(targets[1]:TG=:R=$(locate):S=$MAINMOD.opt) ;
485 LINK-MAINMOD-JAM on $(targets[1]) = $(targets[1]:TG=:R=$(locate):S=$MAINMOD.jam) ;
/third_party/icu/icu4c/source/data/region/
Dyi.txt202 TG{"טאגא"}
/third_party/skia/third_party/externals/icu/source/data/region/
Dyi.txt202 TG{"טאגא"}
Dshi.txt197 TG{"ⵟⵓⴳⵓ"}

12345678910>>...27