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

1 2

  /external/clang/lib/AST/
ASTTypeTraits.cpp 49 unsigned Dist = 0;
52 ++Dist;
55 *Distance = Dist;
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
ExecutionDepsFix.cpp 61 unsigned Dist;
98 Refs = AvailableDomains = Dist = 0;
172 dv->Dist = Distance;
266 A->Dist = std::max(A->Dist, B->Dist);
392 else if (dv->Dist < (*i)->Dist) {
422 dv->Dist = Distance;
LiveVariables.cpp 198 unsigned Dist = DistanceMap[Def];
199 if (Dist > LastDefDist) {
202 LastDefDist = Dist;
295 unsigned Dist = DistanceMap[Def];
296 if (Dist > LastPartDefDist)
297 LastPartDefDist = Dist;
299 unsigned Dist = DistanceMap[Use];
300 if (Dist > LastRefOrPartRefDist) {
301 LastRefOrPartRefDist = Dist;
344 unsigned Dist = DistanceMap[Def]
    [all...]
TwoAddressInstructionPass.cpp 94 bool NoUseAfterLastDef(unsigned Reg, MachineBasicBlock *MBB, unsigned Dist,
98 unsigned Dist);
102 unsigned Dist);
106 unsigned RegB, unsigned RegC, unsigned Dist);
113 unsigned RegA, unsigned RegB, unsigned Dist);
118 MachineBasicBlock *MBB, unsigned Dist);
121 MachineFunction::iterator &mbbi, unsigned Dist);
127 unsigned Dist,
342 MachineBasicBlock *MBB, unsigned Dist,
345 unsigned LastUse = Dist;
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Reverb/src/
LVREV_ApplyNewSettings.c 430 LVM_INT32 Tot_Dist,Dist;
433 Dist=RoomSize-LVREV_GainPolyTable[Index-1][0];
455 Gain = Gain1+ (((Gain2-Gain1)*Dist)/(Tot_Dist));
    [all...]
  /build/soong/ui/build/
config.go 40 dist bool
138 log.Println("The absolute path of your dist directory ($DIST_DIR) contains a space character:")
156 } else if arg == "dist" {
157 c.dist = true
264 return filepath.Join(c.OutDir(), "dist")
286 func (c *configImpl) Dist() bool {
287 return c.dist
436 if c.HostAsan() || (c.Dist() && name == "ckati") {
  /external/llvm/lib/Target/X86/
X86OptimizeLEAs.cpp 241 /// \p AddrDispShift and \p Dist.
244 int64_t &AddrDispShift, int &Dist);
308 int64_t &AddrDispShift, int &Dist) {
350 Dist = DistTemp;
489 int Dist;
491 Dist))
500 if (Dist < 0) {
  /external/llvm/lib/Analysis/
BlockFrequencyInfoImpl.cpp 78 DitheringDistributer(Distribution &Dist, const BlockMass &Mass);
85 DitheringDistributer::DitheringDistributer(Distribution &Dist,
87 Dist.normalize();
88 RemWeight = Dist.Total;
266 bool BlockFrequencyInfoImplBase::addToDist(Distribution &Dist,
295 Dist.addBackedge(Resolved, Weight);
301 Dist.addExit(Resolved, Weight);
324 Dist.addLocal(Resolved, Weight);
329 const LoopData *OuterLoop, LoopData &Loop, Distribution &Dist) {
330 // Copy the exit map into Dist
    [all...]
LoopAccessAnalysis.cpp     [all...]
  /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 107 bool noUseAfterLastDef(unsigned Reg, unsigned Dist, unsigned &LastDef);
110 MachineInstr *MI, unsigned Dist);
113 unsigned RegBIdx, unsigned RegCIdx, unsigned Dist);
119 unsigned RegA, unsigned RegB, unsigned Dist);
121 bool isDefTooClose(unsigned Reg, unsigned Dist, MachineInstr *MI);
133 unsigned Dist, bool shouldOnlyCommute);
139 unsigned Dist);
147 void processTiedPairs(MachineInstr *MI, TiedPairList&, unsigned &Dist);
356 bool TwoAddressInstructionPass::noUseAfterLastDef(unsigned Reg, unsigned Dist,
359 unsigned LastUse = Dist;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopLoadElimination.cpp 92 auto *Dist = cast<SCEVConstant>(
94 const APInt &Val = Dist->getAPInt();
  /external/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 395 /// Adds all edges from LocalLoopHead to Dist. Calls addToDist() to add each
400 Distribution &Dist);
404 /// Adds an edge to Succ to Dist. If \c LoopHead.isValid(), then whether the
409 bool addToDist(Distribution &Dist, const LoopData *OuterLoop,
439 /// Distributes the mass in Source according to Dist. If LoopHead.isValid(),
444 Distribution &Dist);
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp 743 int64_t Dist = EndV - StartV;
744 if (Dist == 0)
747 bool Exact = (Dist % IVBump) == 0;
752 if ((Dist < 0) ^ (IVBump < 0))
759 Dist = Dist > 0 ? Dist+1 : Dist-1;
761 // For the loop to iterate, CmpLess should imply Dist > 0. Similarly,
762 // CmpGreater should imply Dist < 0. These conditions could actuall
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 395 /// Adds all edges from LocalLoopHead to Dist. Calls addToDist() to add each
400 Distribution &Dist);
404 /// Adds an edge to Succ to Dist. If \c LoopHead.isValid(), then whether the
409 bool addToDist(Distribution &Dist, const LoopData *OuterLoop,
439 /// Distributes the mass in Source according to Dist. If LoopHead.isValid(),
444 Distribution &Dist);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 395 /// Adds all edges from LocalLoopHead to Dist. Calls addToDist() to add each
400 Distribution &Dist);
404 /// Adds an edge to Succ to Dist. If \c LoopHead.isValid(), then whether the
409 bool addToDist(Distribution &Dist, const LoopData *OuterLoop,
439 /// Distributes the mass in Source according to Dist. If LoopHead.isValid(),
444 Distribution &Dist);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 395 /// Adds all edges from LocalLoopHead to Dist. Calls addToDist() to add each
400 Distribution &Dist);
404 /// Adds an edge to Succ to Dist. If \c LoopHead.isValid(), then whether the
409 bool addToDist(Distribution &Dist, const LoopData *OuterLoop,
439 /// Distributes the mass in Source according to Dist. If LoopHead.isValid(),
444 Distribution &Dist);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 395 /// Adds all edges from LocalLoopHead to Dist. Calls addToDist() to add each
400 Distribution &Dist);
404 /// Adds an edge to Succ to Dist. If \c LoopHead.isValid(), then whether the
409 bool addToDist(Distribution &Dist, const LoopData *OuterLoop,
439 /// Distributes the mass in Source according to Dist. If LoopHead.isValid(),
444 Distribution &Dist);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 395 /// Adds all edges from LocalLoopHead to Dist. Calls addToDist() to add each
400 Distribution &Dist);
404 /// Adds an edge to Succ to Dist. If \c LoopHead.isValid(), then whether the
409 bool addToDist(Distribution &Dist, const LoopData *OuterLoop,
439 /// Distributes the mass in Source according to Dist. If LoopHead.isValid(),
444 Distribution &Dist);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 395 /// Adds all edges from LocalLoopHead to Dist. Calls addToDist() to add each
400 Distribution &Dist);
404 /// Adds an edge to Succ to Dist. If \c LoopHead.isValid(), then whether the
409 bool addToDist(Distribution &Dist, const LoopData *OuterLoop,
439 /// Distributes the mass in Source according to Dist. If LoopHead.isValid(),
444 Distribution &Dist);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 395 /// Adds all edges from LocalLoopHead to Dist. Calls addToDist() to add each
400 Distribution &Dist);
404 /// Adds an edge to Succ to Dist. If \c LoopHead.isValid(), then whether the
409 bool addToDist(Distribution &Dist, const LoopData *OuterLoop,
439 /// Distributes the mass in Source according to Dist. If LoopHead.isValid(),
444 Distribution &Dist);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 395 /// Adds all edges from LocalLoopHead to Dist. Calls addToDist() to add each
400 Distribution &Dist);
404 /// Adds an edge to Succ to Dist. If \c LoopHead.isValid(), then whether the
409 bool addToDist(Distribution &Dist, const LoopData *OuterLoop,
439 /// Distributes the mass in Source according to Dist. If LoopHead.isValid(),
444 Distribution &Dist);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3dx9mesh.h 264 FLOAT Dist;
694 const D3DXVECTOR3 *ray_dir, DWORD *face_index, FLOAT *u, FLOAT *v, FLOAT *dist) PURE;
    [all...]
  /prebuilts/go/darwin-x86/src/reflect/
all_test.go     [all...]
  /prebuilts/go/linux-x86/src/reflect/
all_test.go     [all...]

Completed in 2004 milliseconds

1 2