HomeSort by relevance Sort by last modified time
    Searched defs:Incoming (Results 1 - 12 of 12) sorted by null

  /external/webrtc/webrtc/p2p/base/
tcpport.h 81 // Accepts incoming TCP connection.
86 struct Incoming {
113 std::list<Incoming> incoming_;
  /external/llvm/lib/Transforms/Scalar/
CorrelatedValuePropagation.cpp 109 Value *Incoming = P->getIncomingValue(i);
110 if (isa<Constant>(Incoming)) continue;
112 Value *V = LVI->getConstantOnEdge(Incoming, P->getIncomingBlock(i), BB, P);
114 // Look if the incoming value is a select with a scalar condition for which
115 // LVI can tells us the value. In that case replace the incoming value with
119 SelectInst *SI = dyn_cast<SelectInst>(Incoming);
136 // Look if the select has a constant but LVI tells us that the incoming
137 // value can never be that constant. In that case replace the incoming
225 /// on that edge. Cases that cannot fire no matter what the incoming edge can
226 /// safely be removed. If a case fires on every incoming edge then the entir
    [all...]
IndVarSimplify.cpp 217 /// common dominator for the incoming blocks.
284 // Check incoming value.
504 unsigned Ith; // Ith incoming value.
563 // We would like to be able to RAUW single-incoming value PHI nodes. We
740 Value *Incoming = P->getIncomingValueForBlock(ExitingBlocks[0]);
742 // If the Incoming value of P is found in RewritePhiSet, we know it
748 if (Phi.PN == P && (Phi.PN)->getIncomingValue(i) == Incoming) {
755 if (!found && (I = dyn_cast<Instruction>(Incoming)))
    [all...]
  /external/llvm/lib/Transforms/Utils/
LoopUnroll.cpp 92 // incoming edges. This occurs when there are multiple edges from
351 // the incoming values from the previous block.
375 Value *Incoming = phi->getIncomingValueForBlock(*BB);
376 ValueToValueMapTy::iterator It = LastValueMap.find(Incoming);
378 Incoming = It->second;
379 phi->addIncoming(Incoming, New);
399 // Loop over the PHI nodes in the original block, setting incoming values.
  /external/llvm/lib/CodeGen/SelectionDAG/
StatepointLowering.cpp 146 // All incoming values should have same known stack slot, otherwise result
196 /// Try to find existing copies of the incoming values in stack slots used for
197 /// statepoint spilling. If we can find a spill slot for the incoming value,
204 SDValue Incoming = Builder.getValue(IncomingValue);
206 if (isa<ConstantSDNode>(Incoming) || isa<FrameIndexSDNode>(Incoming)) {
212 SDValue OldLocation = Builder.StatepointLowering.getLocation(Incoming);
245 SDValue Loc = Builder.DAG.getTargetFrameIndex(*Index, Incoming.getValueType());
246 Builder.StatepointLowering.setLocation(Incoming, Loc);
391 /// Bases - base pointers incoming to this statepoin
    [all...]
LegalizeIntegerTypes.cpp     [all...]
  /external/llvm/lib/Target/AMDGPU/
SIAnnotateControlFlow.cpp 225 // Handle all non-constant incoming values first
227 Value *Incoming = Phi->getIncomingValue(i);
229 if (isa<ConstantInt>(Incoming)) {
235 Value *PhiArg = handleLoopCondition(Incoming, Broken, L);
243 Value *Incoming = Phi->getIncomingValue(i);
244 if (Incoming != BoolTrue)
  /packages/apps/Gallery2/src/com/android/gallery3d/anim/
StateTransitionAnimation.java 32 public static final Spec INCOMING;
64 INCOMING = new Spec();
65 INCOMING.overlayAlphaFrom = 1f;
66 INCOMING.overlayAlphaTo = 0f;
67 INCOMING.overlayScaleFrom = 1f;
68 INCOMING.overlayScaleTo = 3f;
69 INCOMING.contentAlphaFrom = 0f;
70 INCOMING.contentAlphaTo = 1f;
71 INCOMING.contentScaleFrom = 0.25f;
72 INCOMING.contentScaleTo = 1f
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
StateManager.java 63 StateTransitionAnimation.Transition.Incoming);
93 StateTransitionAnimation.Transition.Incoming);
238 StateTransitionAnimation.Transition.Incoming);
  /external/llvm/lib/Analysis/
LazyValueInfo.cpp     [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCOpts.cpp 837 // If Arg is a PHI, and one or more incoming values to the
840 // could be pushed up to just those paths with non-null incoming values.
852 // Determine if the PHI has any null operands, or any incoming
857 Value *Incoming =
859 if (IsNullOrUndef(Incoming))
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp     [all...]

Completed in 1357 milliseconds