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

  /external/llvm/lib/Target/Hexagon/
HexagonFixupHwLoops.cpp 136 unsigned Dist = Sub > 0 ? Sub : -Sub;
137 if (Dist > MAX_LOOP_DISTANCE) {
HexagonHardwareLoops.cpp 662 int64_t Dist = EndV - StartV;
663 if (Dist == 0)
666 bool Exact = (Dist % IVBump) == 0;
671 if ((Dist < 0) ^ (IVBump < 0))
678 Dist = Dist > 0 ? Dist+1 : Dist-1;
680 // assert (CmpLess => Dist > 0);
681 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 96 bool noUseAfterLastDef(unsigned Reg, unsigned Dist, unsigned &LastDef);
99 MachineInstr *MI, unsigned Dist);
102 unsigned RegB, unsigned RegC, unsigned Dist);
108 unsigned RegA, unsigned RegB, unsigned Dist);
110 bool isDefTooClose(unsigned Reg, unsigned Dist, MachineInstr *MI);
122 unsigned Dist, bool shouldOnlyCommute);
131 void processTiedPairs(MachineInstr *MI, TiedPairList&, unsigned &Dist);
307 bool TwoAddressInstructionPass::noUseAfterLastDef(unsigned Reg, unsigned Dist,
310 unsigned LastUse = Dist;
326 return !(LastUse > LastDef && LastUse < Dist);
    [all...]

Completed in 211 milliseconds