Home
last modified time | relevance | path

Searched refs:GT (Results 1 – 25 of 460) sorted by relevance

12345678910>>...19

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DSCCIterator.h41 template <class GraphT, class GT = GraphTraits<GraphT>>
43 scc_iterator<GraphT, GT>, std::forward_iterator_tag,
44 const std::vector<typename GT::NodeRef>, ptrdiff_t> {
45 using NodeRef = typename GT::NodeRef;
46 using ChildItTy = typename GT::ChildIteratorType;
102 return scc_iterator(GT::getEntryNode(G)); in begin()
145 template <class GraphT, class GT>
146 void scc_iterator<GraphT, GT>::DFSVisitOne(NodeRef N) { in DFSVisitOne()
150 VisitStack.push_back(StackElement(N, GT::child_begin(N), visitNum)); in DFSVisitOne()
157 template <class GraphT, class GT>
[all …]
H A DPostOrderIterator.h94 bool ExtStorage = false, class GT = GraphTraits<GraphT>>
98 using value_type = typename GT::NodeRef;
104 using NodeRef = typename GT::NodeRef;
105 using ChildItTy = typename GT::ChildIteratorType;
113 VisitStack.push_back(std::make_pair(BB, GT::child_begin(BB))); in po_iterator()
122 VisitStack.push_back(std::make_pair(BB, GT::child_begin(BB))); in po_iterator()
132 while (VisitStack.back().second != GT::child_end(VisitStack.back().first)) { in traverseChild()
136 VisitStack.push_back(std::make_pair(BB, GT::child_begin(BB))); in traverseChild()
144 return po_iterator(GT::getEntryNode(G)); in begin()
149 return po_iterator(GT::getEntryNode(G), S); in begin()
[all …]
H A DBreadthFirstIterator.h46 class GT = GraphTraits<GraphT>>
50 using value_type = typename GT::NodeRef;
56 using NodeRef = typename GT::NodeRef;
57 using ChildItTy = typename GT::ChildIteratorType;
87 ChildIt.emplace(GT::child_begin(Node)); in toNext()
88 while (*ChildIt != GT::child_end(Node)) { in toNext()
115 return bf_iterator(GT::getEntryNode(G)); in begin()
H A DDepthFirstIterator.h84 bool ExtStorage = false, class GT = GraphTraits<GraphT>>
88 using value_type = typename GT::NodeRef;
94 using NodeRef = typename GT::NodeRef;
95 using ChildItTy = typename GT::ChildIteratorType;
129 Opt.emplace(GT::child_begin(Node)); in toNext()
134 while (*Opt != GT::child_end(Node)) { in toNext()
153 return df_iterator(GT::getEntryNode(G)); in begin()
159 return df_iterator(GT::getEntryNode(G), S); in begin()
/netbsd-src/external/gpl3/gdb/dist/libiberty/testsuite/
H A Drust-demangle-expected46 # ".." translates to "::" "$GT$" to ">" and "$LT$" to "<".
48 _ZN71_$LT$Test$u20$$u2b$$u20$$u27$static$u20$as$u20$foo..Bar$LT$Test$GT$$GT$3bar17h930b740aa94f1d3aE
52 _ZN54_$LT$I$u20$as$u20$core..iter..traits..IntoIterator$GT$9into_iter17h8581507801fb8615E
60 _ZN65_$LT$std..env..Args$u20$as$u20$core..iter..iterator..Iterator$GT$4next17h420a7c8d0c7eef40E
80 _ZN4core3ptr31_$LT$impl$u20$$BP$mut$u20$T$GT$7is_null17h7f9de798bc3f0879E
84 _ZN40_$LT$alloc..raw_vec..RawVec$LT$T$GT$$GT$6double17h4166e2b47539e1ffE
88 _ZN39_$LT$collections..vec..Vec$LT$T$GT$$GT$4push17hd4b6b23c1b88141aE
92 _ZN70_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..DerefMut$GT$9deref_mut17hf299b860dc5…
96 _ZN63_$LT$core..ptr..Unique$LT$T$GT$$u20$as$u20$core..ops..Deref$GT$5deref17hc784b4a166cb5e5cE
100 _ZN40_$LT$alloc..raw_vec..RawVec$LT$T$GT$$GT$3ptr17h7570b6e9070b693bE
[all …]
/netbsd-src/external/gpl3/gdb/dist/sim/testsuite/example-synacor/
H A Dgt.s1 # check the GT insn.
10 GT r0, 3, 2
14 GT r0, 2, 2
18 GT r0, 1, 2
24 GT r0, r2, r3
27 GT r0, r3, r2
/netbsd-src/usr.bin/tset/
H A Dmap.c52 #define GT 0x01 macro
56 #define GE (GT | EQ)
111 if (mapp->conditional & GT) in add_mapping()
118 mapp->conditional |= GT; in add_mapping()
154 mapp->conditional = ~mapp->conditional & (EQ | GT | LT); in add_mapping()
168 if (mapp->conditional & GT) { in add_mapping()
207 case GT: in mapped()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/Utils/
H A DARMBaseInfo.h43 GT, // Greater than Greater than enumerator
63 case GT: return LE; in getOppositeCondition()
64 case LE: return GT; in getOppositeCondition()
81 case ARMCC::LT: return ARMCC::GT; in getSwappedCondition()
82 case ARMCC::GT: return ARMCC::LT; in getSwappedCondition()
160 case ARMCC::GT: return "gt"; in ARMCondCodeToString()
183 .Case("gt", ARMCC::GT) in ARMCondCodeFromString()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DIntervalIterator.h87 template<class NodeTy, class OrigContainer_t, class GT = GraphTraits<NodeTy *>,
184 for (typename GT::ChildIteratorType I = GT::child_begin(Node), in ProcessInterval()
185 E = GT::child_end(Node); I != E; ++I) in ProcessInterval()
235 for (typename GT::ChildIteratorType It = GT::child_begin(Node), in ProcessNode()
236 End = GT::child_end(Node); It != End; ++It) in ProcessNode()
H A DCFG.h147 class GT = GraphTraits<NodeT>>
163 for (NodeT Succ : make_range(GT::child_begin(Node), GT::child_end(Node))) { in containsIrreducibleCFG()
/netbsd-src/sys/external/bsd/drm2/dist/drm/i915/gt/
H A Dintel_gt_irq.c350 GEN8_IRQ_RESET_NDX(uncore, GT, 0); in gen8_gt_irq_reset()
351 GEN8_IRQ_RESET_NDX(uncore, GT, 1); in gen8_gt_irq_reset()
352 GEN8_IRQ_RESET_NDX(uncore, GT, 2); in gen8_gt_irq_reset()
353 GEN8_IRQ_RESET_NDX(uncore, GT, 3); in gen8_gt_irq_reset()
380 GEN8_IRQ_INIT_NDX(uncore, GT, 0, ~gt_interrupts[0], gt_interrupts[0]); in gen8_gt_irq_postinstall()
381 GEN8_IRQ_INIT_NDX(uncore, GT, 1, ~gt_interrupts[1], gt_interrupts[1]); in gen8_gt_irq_postinstall()
386 GEN8_IRQ_INIT_NDX(uncore, GT, 2, gt->pm_imr, gt->pm_ier); in gen8_gt_irq_postinstall()
387 GEN8_IRQ_INIT_NDX(uncore, GT, 3, ~gt_interrupts[3], gt_interrupts[3]); in gen8_gt_irq_postinstall()
418 GEN3_IRQ_RESET(uncore, GT); in gen5_gt_irq_reset()
442 GEN3_IRQ_INIT(uncore, GT, gt->gt_imr, gt_irqs); in gen5_gt_irq_postinstall()
H A Dintel_reset.h71 #define intel_wedge_on_timeout(W, GT, TIMEOUT) \ argument
72 for (__intel_init_wedge((W), (GT), (TIMEOUT), __func__); \
/netbsd-src/external/bsd/flex/dist/tests/
H A Dbison_yylval_parser.y64 %token GT
76 starttag: LT TAGNAME GT { process_text($2); free($2);} ;
77 endtag: LTSLASH TAGNAME GT { process_text($2);free($2);} ;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64ConditionOptimizer.cpp232 case AArch64CC::GT: return AArch64CC::GE; in getAdjustedCmp()
233 case AArch64CC::GE: return AArch64CC::GT; in getAdjustedCmp()
251 int Correction = (Cmp == AArch64CC::GT) ? 1 : -1; in adjustCmp()
398 if (((HeadCmp == AArch64CC::GT && TrueCmp == AArch64CC::LT) || in runOnMachineFunction()
399 (HeadCmp == AArch64CC::LT && TrueCmp == AArch64CC::GT)) && in runOnMachineFunction()
419 } else if (((HeadCmp == AArch64CC::GT && TrueCmp == AArch64CC::GT) || in runOnMachineFunction()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
H A Dpaired.h62 #define GT 1 macro
69 #define paired_cmpu0_gt(a,b) __builtin_paired_cmpu0 (GT, (a), (b))
73 #define paired_cmpu1_gt(a,b) __builtin_paired_cmpu1 (GT, (a), (b))
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/s390/
H A Ds390-modes.def48 CCS: EQ LT GT UNORDERED (LTGFR, LTGR, LTR, ICM/Y,
54 CCSR: EQ GT LT UNORDERED (CGF/R, CH/Y)
55 CCSFPS: EQ LT GT UNORDERED (KEB/R, KDB/R, KXBR, KDTR,
60 CCA: EQ LT GT Overflow
61 CCAP: EQ LT GT LT (AGHI, AHI)
62 CCAN: EQ LT GT GT (AGHI, AHI)
147 This mode is used for signaling rtxes: LT, LE, GT, GE and LTGT.
196 invert the condition correctly (int: GT -> LE, float: GT -> UNLE).
208 context of EQ, GT, GE while for the inverted codes it actually means
/netbsd-src/external/gpl3/gcc/dist/gcc/config/s390/
H A Ds390-modes.def51 CCS: EQ LT GT UNORDERED (LTGFR, LTGR, LTR, ICM/Y,
57 CCSR: EQ GT LT UNORDERED (CGF/R, CH/Y)
58 CCSFPS: EQ LT GT UNORDERED (KEB/R, KDB/R, KXBR, KDTR,
63 CCA: EQ LT GT Overflow
64 CCAP: EQ LT GT LT (AGHI, AHI)
65 CCAN: EQ LT GT GT (AGHI, AHI)
150 This mode is used for signaling rtxes: LT, LE, GT, GE and LTGT.
199 invert the condition correctly (int: GT -> LE, float: GT -> UNLE).
211 context of EQ, GT, GE while for the inverted codes it actually means
/netbsd-src/external/gpl3/gdb/dist/sim/testsuite/bfin/
H A Dc_dsp32alu_search.s19 ( R2 , R3 ) = SEARCH R4 (GT);
40 ( R6 , R3 ) = SEARCH R5 (GT);
60 ( R3 , R4 ) = SEARCH R5 (GT);
H A Drandom_0007.S35 (R5, R1) = SEARCH R7 (GT);
52 (R5, R1) = SEARCH R7 (GT);
/netbsd-src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
H A Dexynos4412-i9300.dts3 * Samsung's Exynos4412 based M0 (GT-I9300) board device tree source
13 model = "Samsung Galaxy S3 (GT-I9300) based on Exynos4412";
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Djump.cc503 case GT: in reverse_condition()
510 return GT; in reverse_condition()
550 case GT: in reverse_condition_maybe_unordered()
567 return GT; in reverse_condition_maybe_unordered()
596 case GT: in swap_condition()
601 return GT; in swap_condition()
643 case GT: in unsigned_condition()
666 case GT: in signed_condition()
673 return GT; in signed_condition()
729 case GT: in comparison_dominates_p()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Djump.c503 case GT: in reverse_condition()
510 return GT; in reverse_condition()
550 case GT: in reverse_condition_maybe_unordered()
567 return GT; in reverse_condition_maybe_unordered()
596 case GT: in swap_condition()
601 return GT; in swap_condition()
643 case GT: in unsigned_condition()
666 case GT: in signed_condition()
673 return GT; in signed_condition()
729 case GT: in comparison_dominates_p()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
H A DNVPTX.h32 GT, enumerator
154 GT, enumerator
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/mmix/
H A Dpredicates.md42 && (code == NE || code == EQ || code == GE || code == GT
77 && (code == GT || code == LT))
83 && (code == NE || code == EQ || code == GE || code == GT
86 && (code == NE || code == EQ || code == GE || code == GT
/netbsd-src/external/gpl3/gcc/dist/gcc/config/mmix/
H A Dpredicates.md42 && (code == NE || code == EQ || code == GE || code == GT
77 && (code == GT || code == LT))
83 && (code == NE || code == EQ || code == GE || code == GT
86 && (code == NE || code == EQ || code == GE || code == GT

12345678910>>...19