HomeSort by relevance Sort by last modified time
    Searched defs:Cond (Results 1 - 25 of 165) sorted by null

1 2 3 4 5 6 7

  /prebuilts/go/darwin-x86/src/sync/
cond.go 12 // Cond implements a condition variable, a rendezvous point
16 // Each Cond has an associated Locker L (often a *Mutex or *RWMutex),
20 // A Cond can be created as part of other structures.
21 // A Cond must not be copied after first use.
22 type Cond struct {
32 // NewCond returns a new Cond with Locker l.
33 func NewCond(l Locker) *Cond {
34 return &Cond{L: l}
53 func (c *Cond) Wait() {
65 func (c *Cond) Signal()
    [all...]
  /prebuilts/go/linux-x86/src/sync/
cond.go 12 // Cond implements a condition variable, a rendezvous point
16 // Each Cond has an associated Locker L (often a *Mutex or *RWMutex),
20 // A Cond can be created as part of other structures.
21 // A Cond must not be copied after first use.
22 type Cond struct {
32 // NewCond returns a new Cond with Locker l.
33 func NewCond(l Locker) *Cond {
34 return &Cond{L: l}
53 func (c *Cond) Wait() {
65 func (c *Cond) Signal()
    [all...]
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyLowerBrUnless.cpp 69 unsigned Cond = MI->getOperand(1).getReg();
73 if (MFI.isVRegStackified(Cond)) {
74 assert(MRI.hasOneDef(Cond));
75 MachineInstr *Def = MRI.getVRegDef(Cond);
112 .addReg(Cond);
113 Cond = Tmp;
122 .addReg(Cond);
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_emulate_loops.h 12 struct rc_instruction * Cond;
  /external/llvm/lib/Target/MSP430/
MSP430BranchSelector.cpp 153 SmallVector<MachineOperand, 1> Cond;
154 Cond.push_back(I->getOperand(1));
157 TII->ReverseBranchCondition(Cond);
159 .addImm(4).addOperand(Cond[0]);
  /external/swiftshader/third_party/LLVM/lib/Target/MSP430/
MSP430BranchSelector.cpp 150 SmallVector<MachineOperand, 1> Cond;
151 Cond.push_back(I->getOperand(1));
154 TII->ReverseBranchCondition(Cond);
156 .addImm(4).addOperand(Cond[0]);
  /external/llvm/lib/Target/AArch64/
AArch64A53Fix835769.cpp 136 SmallVector<MachineOperand, 2> Cond;
140 if (S == PrevBB && !TII->analyzeBranch(*PrevBB, TBB, FBB, Cond) && !TBB &&
AArch64BranchRelaxation.cpp 417 SmallVector<MachineOperand, 2> Cond;
418 TII->analyzeBranch(*MBB, TBB, FBB, Cond, false);
  /external/llvm/lib/Target/Hexagon/
HexagonBranchRelaxation.cpp 148 SmallVector<MachineOperand, 4> Cond;
151 if (HII->analyzeBranch(B, TBB, FBB, Cond, false)) {
  /external/llvm/lib/Transforms/Utils/
Evaluator.cpp 479 ConstantInt *Cond =
481 if (!Cond) return false; // Cannot determine.
483 NextBB = BI->getSuccessor(!Cond->getZExtValue());
CloneFunction.cpp 332 ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition());
334 if (!Cond) {
336 Cond = dyn_cast_or_null<ConstantInt>(V);
340 if (Cond) {
341 BasicBlock *Dest = BI->getSuccessor(!Cond->getZExtValue());
349 ConstantInt *Cond = dyn_cast<ConstantInt>(SI->getCondition());
350 if (!Cond) { // Or known constant after constant prop in the callee...
352 Cond = dyn_cast_or_null<ConstantInt>(V);
354 if (Cond) { // Constant fold to uncond branch!
355 SwitchInst::ConstCaseIt Case = SI->findCaseValue(Cond);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
CodePlacementOpt.cpp 81 SmallVector<MachineOperand, 4> Cond;
82 if (TII->AnalyzeBranch(*MBB, TBB, FBB, Cond))
88 if (Cond.empty() && TBB)
110 SmallVector<MachineOperand, 4> Cond;
112 if (TII->AnalyzeBranch(*MBB, TBB, FBB, Cond))
120 if (1u + !Cond.empty() != MBB->succ_size())
123 if (!Cond.empty() && TII->ReverseBranchCondition(Cond))
  /external/clang/test/SemaTemplate/
instantiate-expr-2.cpp 77 struct Cond {
81 enum { resultT = Cond<true>::is,
82 resultF = Cond<false>::is };
92 struct Cond {
97 typedef Cond<true, int, char>::True True;
98 typedef Cond<true, int, char>::False False;
112 struct Cond {
117 //Cond<true, int*, double> C; // Errors
119 //typedef Cond<true, int*, double>::Type Type; // Errors
120 typedef Cond<true, int, double>::Type Type
    [all...]
  /external/deqp/modules/glshared/
glsAttributeLocationTests.hpp 60 class Cond
69 Cond (ConstCond cond);
70 explicit Cond (const std::string& name, bool negate = true);
71 bool operator== (const Cond& other) const { return m_negate == other.m_negate && m_name == other.m_name; }
72 bool operator!= (const Cond& other) const { return !(*this == other); }
99 const Cond& cond = Cond::COND_ALWAYS,
105 const Cond& getCondition (void) const { return m_cond;
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorMeta.h 15 template<bool cond> struct Cond {};
18 const T1& choose(Cond<true>, const T1& first, const T2&) {
23 const T2& choose(Cond<false>, const T1&, const T2& second) {
  /external/llvm/lib/Transforms/Scalar/
CorrelatedValuePropagation.cpp 219 Value *Cond = SI->getCondition();
224 if (isa<Instruction>(Cond) && cast<Instruction>(Cond)->getParent() == BB)
244 Cond, Case, *PI,
274 Cond = SI->getCondition();
  /external/mesa3d/src/gallium/drivers/radeon/
R600ISelLowering.cpp 445 SDValue Cond = (isZero(LHS) ? RHS : LHS);
463 return DAG.getNode(ISD::SELECT, DL, VT, Cond, True, False);
488 SDValue Cond = DAG.getNode(ISD::SELECT_CC, DL, VT, LHS, RHS, HWTrue, HWFalse, CC);
492 Cond = DAG.getNode(ISD::FP_TO_SINT, DL, MVT::i32,
493 DAG.getNode(ISD::FNEG, DL, VT, Cond));
496 return DAG.getNode(ISD::SELECT, DL, VT, Cond, True, False);
501 SDValue Cond;
507 Cond = DAG.getNode(
515 Cond = DAG.getNode(
520 Cond);
    [all...]
SIISelLowering.cpp 384 SDValue Cond = DAG.getNode(ISD::SETCC, DL, MVT::i1, LHS, RHS, CC);
385 return DAG.getNode(ISD::SELECT, DL, VT, Cond, True, False);
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 70 // "select cond, X, 0" can simplify to "X".
299 // div/rem X, (Cond ? 0 : Y) -> div/rem X, Y
304 // div/rem X, (Cond ? Y : 0) -> div/rem X, Y
379 // Handle cases involving: [su]div X, (select Cond, Y, Z)
476 // udiv X, (Select Cond, C1, C2) --> Select Cond, (shr X, C1), (shr X, C2)
478 { Value *Cond; const APInt *C1, *C2;
479 if (match(Op1, m_Select(m_Value(Cond), m_Power2(C1), m_Power2(C2)))) {
489 return SelectInst::Create(Cond, TSI, FSI);
590 // Handle cases involving: rem X, (select Cond, Y, Z
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
CloneFunction.cpp 261 ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition());
263 if (Cond == 0) {
265 Cond = dyn_cast_or_null<ConstantInt>(V);
269 if (Cond) {
270 BasicBlock *Dest = BI->getSuccessor(!Cond->getZExtValue());
278 ConstantInt *Cond = dyn_cast<ConstantInt>(SI->getCondition());
279 if (Cond == 0) { // Or known constant after constant prop in the callee...
281 Cond = dyn_cast_or_null<ConstantInt>(V);
283 if (Cond) { // Constant fold to uncond branch!
284 BasicBlock *Dest = SI->getSuccessor(SI->findCaseValue(Cond));
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/bsddb/
dbtables.py 68 class Cond:
73 class ExactCond(Cond):
80 class PrefixCond(Cond):
87 class PostfixCond(Cond):
94 class LikeCond(Cond):
  /prebuilts/gdb/linux-x86/lib/python2.7/bsddb/
dbtables.py 68 class Cond:
73 class ExactCond(Cond):
80 class PrefixCond(Cond):
87 class PostfixCond(Cond):
94 class LikeCond(Cond):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
dbtables.py 68 class Cond:
73 class ExactCond(Cond):
80 class PrefixCond(Cond):
87 class PostfixCond(Cond):
94 class LikeCond(Cond):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
dbtables.py 68 class Cond:
73 class ExactCond(Cond):
80 class PrefixCond(Cond):
87 class PostfixCond(Cond):
94 class LikeCond(Cond):
  /external/clang/lib/Analysis/
ReachableCode.cpp 54 const Expr *Cond = DS->getCond()->IgnoreParenCasts();
55 return Cond == S && isTrivialExpression(Cond);
263 const Stmt *Cond = B->getTerminatorCondition(/* stripParens */ false);
264 return isConfigurationValue(Cond, PP);

Completed in 1722 milliseconds

1 2 3 4 5 6 7