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

1 2 3 4 5 6 7 8 9

  /external/swiftshader/third_party/subzero/src/
IceConditionCodesARM32.h 31 enum Cond {
37 static bool isDefined(Cond C) { return C != kNone; }
39 static bool isUnconditional(Cond C) { return !isDefined(C) || C == AL; }
IceConditionCodesMIPS32.h 31 enum Cond {
37 static bool isDefined(Cond C) { return C != kNone; }
39 static bool isUnconditional(Cond C) { return !isDefined(C) || C == AL; }
  /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 must not be copied after first use.
21 type Cond struct {
31 // NewCond returns a new Cond with Locker l.
32 func NewCond(l Locker) *Cond {
33 return &Cond{L: l}
52 func (c *Cond) Wait() {
64 func (c *Cond) Signal() {
73 func (c *Cond) Broadcast()
    [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 must not be copied after first use.
21 type Cond struct {
31 // NewCond returns a new Cond with Locker l.
32 func NewCond(l Locker) *Cond {
33 return &Cond{L: l}
52 func (c *Cond) Wait() {
64 func (c *Cond) Signal() {
73 func (c *Cond) Broadcast()
    [all...]
  /external/libxcam/xcore/
xcam_mutex.h 31 friend class Cond;
66 class Cond {
68 XCAM_DEAD_COPY (Cond);
71 Cond () {
74 ~Cond () {
  /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 37 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 &&
  /external/llvm/lib/Target/Hexagon/
HexagonBranchRelaxation.cpp 148 SmallVector<MachineOperand, 4> Cond;
151 if (HII->analyzeBranch(B, TBB, FBB, Cond, false)) {
  /external/swiftshader/third_party/subzero/crosstest/
test_select_main.cpp 45 TyI1 Cond;
48 setElement(Cond, j, Index() % 2);
52 Ty ResultLlc = select(Cond, Value1, Value2);
53 Ty ResultSz = Subzero_::select(Cond, Value1, Value2);
59 std::cout << "select<" << Vectors<T>::TypeName << ">(Cond=";
60 std::cout << vectAsString<TI1>(Cond)
81 v4si32 Cond;
84 setElement(Cond, j, Index() % 2);
88 v4f32 ResultLlc = select(Cond, Value1, Value2);
89 v4f32 ResultSz = Subzero_::select(Cond, Value1, Value2)
    [all...]
  /external/llvm/lib/Transforms/Utils/
Evaluator.cpp 479 ConstantInt *Cond =
481 if (!Cond) return false; // Cannot determine.
483 NextBB = BI->getSuccessor(!Cond->getZExtValue());
  /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))
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
Parallel.h 52 mutable std::condition_variable Cond;
66 Cond.notify_all();
71 Cond.wait(lock, [&] { return Count == 0; });
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
Parallel.h 52 mutable std::condition_variable Cond;
66 Cond.notify_all();
71 Cond.wait(lock, [&] { return Count == 0; });
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
Parallel.h 52 mutable std::condition_variable Cond;
66 Cond.notify_all();
71 Cond.wait(lock, [&] { return Count == 0; });
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
Parallel.h 52 mutable std::condition_variable Cond;
66 Cond.notify_all();
71 Cond.wait(lock, [&] { return Count == 0; });
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
Parallel.h 52 mutable std::condition_variable Cond;
66 Cond.notify_all();
71 Cond.wait(lock, [&] { return Count == 0; });
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Support/
Parallel.h 52 mutable std::condition_variable Cond;
66 Cond.notify_all();
71 Cond.wait(lock, [&] { return Count == 0; });
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Support/
Parallel.h 52 mutable std::condition_variable Cond;
66 Cond.notify_all();
71 Cond.wait(lock, [&] { return Count == 0; });
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Support/
Parallel.h 52 mutable std::condition_variable Cond;
66 Cond.notify_all();
71 Cond.wait(lock, [&] { return Count == 0; });
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Support/
Parallel.h 52 mutable std::condition_variable Cond;
66 Cond.notify_all();
71 Cond.wait(lock, [&] { return Count == 0; });
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Support/
Parallel.h 52 mutable std::condition_variable Cond;
66 Cond.notify_all();
71 Cond.wait(lock, [&] { return Count == 0; });
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Support/
Parallel.h 52 mutable std::condition_variable Cond;
66 Cond.notify_all();
71 Cond.wait(lock, [&] { return Count == 0; });

Completed in 747 milliseconds

1 2 3 4 5 6 7 8 9