Home
last modified time | relevance | path

Searched refs:Delta (Results 1 – 25 of 118) sorted by relevance

12345

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DRegisterPressure.cpp960 RegPressureDelta &Delta, in computeExcessPressureDelta() argument
963 Delta.Excess = PressureChange(); in computeExcessPressureDelta()
984 Delta.Excess = PressureChange(i); in computeExcessPressureDelta()
985 Delta.Excess.setUnitInc(PDiff); in computeExcessPressureDelta()
1001 RegPressureDelta &Delta) { in computeMaxPressureDelta() argument
1002 Delta.CriticalMax = PressureChange(); in computeMaxPressureDelta()
1003 Delta.CurrentMax = PressureChange(); in computeMaxPressureDelta()
1012 if (!Delta.CriticalMax.isValid()) { in computeMaxPressureDelta()
1019 Delta.CriticalMax = PressureChange(i); in computeMaxPressureDelta()
1020 Delta.CriticalMax.setUnitInc(PDiff); in computeMaxPressureDelta()
[all …]
DMachineFunctionPass.cpp82 int64_t Delta = static_cast<int64_t>(CountAfter) - in runOnFunction() local
92 << "; Delta: " << NV("Delta", Delta); in runOnFunction()
DInterferenceCache.h113 void addRef(int Delta) { RefCount += Delta; } in addRef() argument
DMIRCanonicalizerPass.cpp227 const unsigned Delta = (UseLoc - DefLoc); in rescheduleCanonically() local
234 if (Delta < Distance) { in rescheduleCanonically()
235 Distance = Delta; in rescheduleCanonically()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DDependenceAnalysis.cpp989 const SCEV *Delta = SE->getMinusSCEV(X, Y); in isKnownPredicate() local
992 return Delta->isZero(); in isKnownPredicate()
994 return SE->isKnownNonZero(Delta); in isKnownPredicate()
996 return SE->isKnownNonNegative(Delta); in isKnownPredicate()
998 return SE->isKnownNonPositive(Delta); in isKnownPredicate()
1000 return SE->isKnownPositive(Delta); in isKnownPredicate()
1002 return SE->isKnownNegative(Delta); in isKnownPredicate()
1158 const SCEV *Delta = SE->getMinusSCEV(SrcConst, DstConst); in strongSIVtest() local
1159 LLVM_DEBUG(dbgs() << "\t Delta = " << *Delta); in strongSIVtest()
1160 LLVM_DEBUG(dbgs() << ", " << *Delta->getType() << "\n"); in strongSIVtest()
[all …]
DLoopPass.cpp233 int64_t Delta = static_cast<int64_t>(NewSize) - in runOnFunction() local
235 emitInstrCountChangedRemark(P, M, Delta, InstrCount, in runOnFunction()
237 InstrCount = static_cast<int64_t>(InstrCount) + Delta; in runOnFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/GSYM/
DLineTable.cpp25 int64_t Delta; member
27 DeltaInfo(int64_t D, uint32_t C) : Delta(D), Count(C) {} in DeltaInfo()
30 inline bool operator<(const DeltaInfo &LHS, int64_t Delta) { in operator <() argument
31 return LHS.Delta < Delta; in operator <()
146 if (Pos != End && Pos->Delta == LineDelta) in encode()
168 const int64_t FirstDelta = DeltaInfos[I].Delta; in encode()
172 auto LineRange = DeltaInfos[J].Delta - FirstDelta; in encode()
183 MinLineDelta = DeltaInfos[BestIndex].Delta; in encode()
184 MaxLineDelta = DeltaInfos[BestEndIndex].Delta; in encode()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DDeltaAlgorithm.cpp44 DeltaAlgorithm::Delta(const changeset_ty &Changes, in Delta() function in DeltaAlgorithm
66 return Delta(Changes, SplitSets); in Delta()
79 Res = Delta(*it, Sets); in Search()
95 Res = Delta(Complement, ComplementSets); in Search()
113 return Delta(Changes, Sets); in Run()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/XRay/
DFDRRecords.h237 int32_t Delta = 0; variable
249 Size(S), Delta(D), Data(std::move(P)) {} in CustomEventRecordV5()
252 int32_t delta() const { return Delta; } in delta()
264 int32_t Delta = 0; variable
277 Size(S), Delta(D), Data(std::move(P)) {} in TypedEventRecord()
280 int32_t delta() const { return Delta; } in delta()
375 uint32_t Delta = 0; variable
384 : Record(RecordKind::RK_Function), Kind(K), FuncId(F), Delta(D) {} in FunctionRecord()
390 uint32_t delta() const { return Delta; } in delta()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86InsertPrefetch.cpp48 int64_t Delta; member
211 int64_t Delta = PrefInfo.Delta; in runOnMachineFunction() local
231 Delta) in runOnMachineFunction()
238 CurrentOp, CurrentOp->getOffset() + Delta, CurrentOp->getSize())); in runOnMachineFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/PBQP/
DReductionRules.h108 RawMatrix Delta(YLen, ZLen); in applyR2()
119 Delta[i][j] = Min; in applyR2()
132 YZEId = G.addEdge(YNId, ZNId, Delta); in applyR2()
136 G.updateEdgeCosts(YZEId, Delta + YZECosts); in applyR2()
138 G.updateEdgeCosts(YZEId, Delta.transpose() + YZECosts); in applyR2()
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/
Dcolor_space.inl69 float Delta = Max - Min; local
75 hsv.y = Delta / hsv.z;
80 h = static_cast<T>(0) + T(60) * (rgbColor.g - rgbColor.b) / Delta;
83 h = static_cast<T>(120) + T(60) * (rgbColor.b - rgbColor.r) / Delta;
86 h = static_cast<T>(240) + T(60) * (rgbColor.r - rgbColor.g) / Delta;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/
DJITLinkGeneric.h85 uint64_t Delta = (B.getAlignmentOffset() - Addr) % B.getAlignment(); in alignToBlock() local
86 return Addr + Delta; in alignToBlock()
92 uint64_t Delta = (B.getAlignmentOffset() - PAddr) % B.getAlignment(); in alignToBlock() local
93 return P + Delta; in alignToBlock()
DMachO_x86_64.cpp303 JITTargetAddress Delta = in addRelocations() local
306 FixupAddress + 4 + Delta + *(const little32_t *)FixupContent; in addRelocations()
495 int Delta = 4 + (1 << (E.getKind() - PCRel32Minus1)); in applyFixup() local
497 E.getTarget().getAddress() - (FixupAddress + Delta) + E.getAddend(); in applyFixup()
507 int Delta = 4 + (1 << (E.getKind() - PCRel32Minus1Anon)); in applyFixup() local
509 E.getTarget().getAddress() - (FixupAddress + Delta) + E.getAddend(); in applyFixup()
DMachO_arm64.cpp622 int64_t Delta = E.getTarget().getAddress() - FixupAddress; in applyFixup() local
623 if (Delta & 0x3) in applyFixup()
626 if (Delta < -(1 << 20) || Delta > ((1 << 20) - 1)) in applyFixup()
629 uint32_t EncodedImm = (static_cast<uint32_t>(Delta) >> 2) << 5; in applyFixup()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldELF.cpp779 uint64_t Delta = Value - FinalAddress + Addend; in resolvePPC64Relocation() local
780 writeInt16BE(LocalAddress, applyPPClo(Delta)); in resolvePPC64Relocation()
784 uint64_t Delta = Value - FinalAddress + Addend; in resolvePPC64Relocation() local
785 writeInt16BE(LocalAddress, applyPPChi(Delta)); in resolvePPC64Relocation()
789 uint64_t Delta = Value - FinalAddress + Addend; in resolvePPC64Relocation() local
790 writeInt16BE(LocalAddress, applyPPCha(Delta)); in resolvePPC64Relocation()
816 uint64_t Delta = Value - FinalAddress + Addend; in resolvePPC64Relocation() local
817 writeInt64BE(LocalAddress, Delta); in resolvePPC64Relocation()
835 int64_t Delta = (Value + Addend) - Section.getLoadAddressWithOffset(Offset); in resolveSystemZRelocation() local
836 assert(int16_t(Delta / 2) * 2 == Delta && "R_390_PC16DBL overflow"); in resolveSystemZRelocation()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DRegisterPressure.h480 RegPressureDelta &Delta,
486 RegPressureDelta &Delta,
495 RegPressureDelta &Delta,
503 RegPressureDelta &Delta, in getMaxPressureDelta() argument
507 return getMaxDownwardPressureDelta(MI, Delta, CriticalPSets, in getMaxPressureDelta()
511 return getMaxUpwardPressureDelta(MI, nullptr, Delta, CriticalPSets, in getMaxPressureDelta()
/third_party/lzma/CPP/7zip/Archive/7z/
D7zUpdate.cpp34 UInt32 Delta; // required File Size alignment, if Id is not k_Delta. member
41 Delta(0), in CFilterMode()
49 Delta = 0; in ClearFilterMode()
59 Delta = 16; in SetDelta()
61 Delta = 4; in SetDelta()
63 Delta = 2; in SetDelta()
65 Delta = 1; // do we need it? in SetDelta()
67 Delta = 0; in SetDelta()
360 filterMode->Delta = delta; in Parse_WAV()
421 if (Delta < m.Delta) return -1; in Compare()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonMachineScheduler.cpp578 RegPressureDelta &Delta, in SchedulingCost() argument
667 ResCount -= (Delta.Excess.getUnitInc()*PriorityOne); in SchedulingCost()
669 ResCount -= (Delta.CriticalMax.getUnitInc()*PriorityOne); in SchedulingCost()
672 ResCount -= (Delta.CurrentMax.getUnitInc()*PriorityTwo); in SchedulingCost()
677 (Delta.Excess.getUnitInc() || Delta.CriticalMax.getUnitInc() || in SchedulingCost()
678 Delta.CurrentMax.getUnitInc())) in SchedulingCost()
681 dbgs() << "RP " << Delta.Excess.getUnitInc() << "/" in SchedulingCost()
682 << Delta.CriticalMax.getUnitInc() << "/" in SchedulingCost()
683 << Delta.CurrentMax.getUnitInc() << ")|"; in SchedulingCost()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
DRuntimeDyldCOFFX86_64.h50 void write32BitOffset(uint8_t *Target, int64_t Addend, uint64_t Delta) { in write32BitOffset() argument
51 uint64_t Result = Addend + Delta; in write32BitOffset()
101 uint64_t Delta = 4 + (RE.RelType - COFF::IMAGE_REL_AMD64_REL32); in resolveRelocation() local
102 Value -= FinalAddress + Delta; in resolveRelocation()
/third_party/skia/third_party/externals/freetype/src/pshinter/
Dpshglob.c504 FT_Pos Delta; in psh_blues_scale_zones() local
507 Delta = zone1->org_ref - zone2->org_ref; in psh_blues_scale_zones()
508 if ( Delta < 0 ) in psh_blues_scale_zones()
509 Delta = -Delta; in psh_blues_scale_zones()
511 if ( FT_MulFix( Delta, scale ) < 64 ) in psh_blues_scale_zones()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/MSP430/
DMSP430InstrFormats.td111 let DecoderNamespace = "Delta";
117 let DecoderNamespace = "Delta";
174 let DecoderNamespace = "Delta";
183 let DecoderNamespace = "Delta";
238 let DecoderNamespace = "Delta";
244 let DecoderNamespace = "Delta";
301 let DecoderNamespace = "Delta";
310 let DecoderNamespace = "Delta";
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
DDynamicTags.def159 MIPS_DYNAMIC_TAG(MIPS_DELTA_CLASS, 0x70000017) // Delta C++ class definition.
162 MIPS_DYNAMIC_TAG(MIPS_DELTA_INSTANCE, 0x70000019) // Delta C++ class instances.
165 MIPS_DYNAMIC_TAG(MIPS_DELTA_RELOC, 0x7000001B) // Delta relocations.
168 MIPS_DYNAMIC_TAG(MIPS_DELTA_SYM, 0x7000001D) // Delta symbols that Delta
172 MIPS_DYNAMIC_TAG(MIPS_DELTA_CLASSSYM, 0x70000020) // Delta symbols that hold
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DValueTracking.h286 void move(uint64_t Delta) { in move()
287 assert(Delta < Length); in move()
288 Offset += Delta; in move()
289 Length -= Delta; in move()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceTimerTree.cpp185 double Delta = Current - LastTimestamp; in update() local
192 LeafTimes[Leaf] += Delta; in update()
198 Nodes[Prefix].Time += Delta; in update()

12345