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

  /external/clang/lib/AST/
ASTTypeTraits.cpp 53 unsigned Dist = 0;
56 ++Dist;
59 *Distance = Dist;
  /external/llvm/lib/Target/Hexagon/
HexagonFixupHwLoops.cpp 138 unsigned Dist = Sub > 0 ? Sub : -Sub;
139 if (Dist > MAX_LOOP_DISTANCE) {
HexagonHardwareLoops.cpp 651 int64_t Dist = EndV - StartV;
652 if (Dist == 0)
655 bool Exact = (Dist % IVBump) == 0;
660 if ((Dist < 0) ^ (IVBump < 0))
667 Dist = Dist > 0 ? Dist+1 : Dist-1;
669 // assert (CmpLess => Dist > 0);
670 assert ((!CmpLess || Dist > 0) && "Loop should never iterate!")
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Reverb/src/
LVREV_ApplyNewSettings.c 429 LVM_INT32 Tot_Dist,Dist;
432 Dist=RoomSize-LVREV_GainPolyTable[Index-1][0];
454 Gain = Gain1+ (((Gain2-Gain1)*Dist)/(Tot_Dist));
  /external/llvm/lib/CodeGen/
LiveVariables.cpp 202 unsigned Dist = DistanceMap[Def];
203 if (Dist > LastDefDist) {
206 LastDefDist = Dist;
296 unsigned Dist = DistanceMap[Def];
297 if (Dist > LastPartDefDist)
298 LastPartDefDist = Dist;
300 unsigned Dist = DistanceMap[Use];
301 if (Dist > LastRefOrPartRefDist) {
302 LastRefOrPartRefDist = Dist;
345 unsigned Dist = DistanceMap[Def]
    [all...]
TwoAddressInstructionPass.cpp 108 bool noUseAfterLastDef(unsigned Reg, unsigned Dist, unsigned &LastDef);
111 MachineInstr *MI, unsigned Dist);
114 unsigned RegB, unsigned RegC, unsigned Dist);
120 unsigned RegA, unsigned RegB, unsigned Dist);
122 bool isDefTooClose(unsigned Reg, unsigned Dist, MachineInstr *MI);
134 unsigned Dist, bool shouldOnlyCommute);
143 void processTiedPairs(MachineInstr *MI, TiedPairList&, unsigned &Dist);
358 bool TwoAddressInstructionPass::noUseAfterLastDef(unsigned Reg, unsigned Dist,
361 unsigned LastUse = Dist;
375 return !(LastUse > LastDef && LastUse < Dist);
    [all...]
  /external/llvm/lib/Analysis/
LoopAccessAnalysis.cpp 711 const SCEV *Dist = SE->getMinusSCEV(Sink, Src);
716 << *InstMap[BIdx] << ": " << *Dist << "\n");
726 const SCEVConstant *C = dyn_cast<SCEVConstant>(Dist);
    [all...]
  /external/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 380 /// Adds all edges from LocalLoopHead to Dist. Calls addToDist() to add each
385 Distribution &Dist);
389 /// Adds an edge to Succ to Dist. If \c LoopHead.isValid(), then whether the
394 bool addToDist(Distribution &Dist, const LoopData *OuterLoop,
424 /// Distributes the mass in Source according to Dist. If LoopHead.isValid(),
429 Distribution &Dist);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3dx9mesh.h 264 FLOAT Dist;
689 DWORD *face_index, FLOAT *u, FLOAT *v, FLOAT *dist) PURE;
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp     [all...]

Completed in 242 milliseconds