Home
last modified time | relevance | path

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

123456

/netbsd-src/external/apache2/llvm/dist/clang/lib/Rewrite/
H A DDeltaTree.cpp43 int Delta; member
46 SourceDelta Delta; in get() local
47 Delta.FileLoc = Loc; in get()
48 Delta.Delta = D; in get()
49 return Delta; in get()
109 bool DoInsertion(unsigned FileIndex, int Delta, InsertResult *InsertRes);
141 FullDelta = IR.LHS->getFullDelta()+IR.RHS->getFullDelta()+IR.Split.Delta; in DeltaTreeInteriorNode()
173 NewFullDelta += Values[i].Delta; in RecomputeFullDeltaLocally()
184 bool DeltaTreeNode::DoInsertion(unsigned FileIndex, int Delta, in DoInsertion() argument
187 FullDelta += Delta; in DoInsertion()
[all …]
/netbsd-src/external/gpl2/rcs/dist/src/
H A Drcssyn.c408 register struct hshentry * Delta, * num; in getdelta() local
411 if (!(Delta = getdnum())) in getdelta()
415 Delta->date = getkeyval(Kdate, NUM, false); in getdelta()
418 Delta->author = getkeyval(Kauthor, ID, false); in getdelta()
420 Delta->state = getkeyval(Kstate, ID, true); in getdelta()
423 LastBranch = &Delta->branches; in getdelta()
434 Delta->next = num = getdnum(); in getdelta()
438 Delta->commitid = NextString; in getdelta()
442 Delta->commitid = NULL; in getdelta()
446 Delta->commitid = NULL; in getdelta()
[all …]
H A Drlog.c635 register struct hshentry * Delta; in readdeltalog() local
642 if (!(Delta = getnum())) in readdeltalog()
645 if (Delta->log.string) in readdeltalog()
649 Delta->log = bufremember(&logbuf, cb.size); in readdeltalog()
653 Delta->insertlns = Delta->deletelns = 0; in readdeltalog()
654 if ( Delta != Head) in readdeltalog()
655 getscript(Delta); in readdeltalog()
658 return Delta; in readdeltalog()
663 getscript(Delta) in getscript() argument
664 struct hshentry * Delta; in getscript()
[all …]
H A Drcs.c1013 sendmail(Delta, who) in sendmail() argument
1014 char const *Delta, *who; in sendmail()
1027 aprintf(stderr, "Revision %s is already locked by %s.\n", Delta, who);
1041 basefilename(RCSname), Delta, getfullRCSname(), getcaller()
1577 struct hshentry * Delta; in buildtree() local
1600 Delta = delstrt; in buildtree()
1601 while( Delta) { in buildtree()
1602 Delta->selector = true; in buildtree()
1603 Delta = Delta->next; in buildtree()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DRegisterPressure.cpp962 RegPressureDelta &Delta, in computeExcessPressureDelta() argument
965 Delta.Excess = PressureChange(); in computeExcessPressureDelta()
986 Delta.Excess = PressureChange(i); in computeExcessPressureDelta()
987 Delta.Excess.setUnitInc(PDiff); in computeExcessPressureDelta()
1003 RegPressureDelta &Delta) { in computeMaxPressureDelta() argument
1004 Delta.CriticalMax = PressureChange(); in computeMaxPressureDelta()
1005 Delta.CurrentMax = PressureChange(); in computeMaxPressureDelta()
1014 if (!Delta.CriticalMax.isValid()) { in computeMaxPressureDelta()
1021 Delta.CriticalMax = PressureChange(i); in computeMaxPressureDelta()
1022 Delta.CriticalMax.setUnitInc(PDiff); in computeMaxPressureDelta()
[all …]
H A DMachineFunctionPass.cpp81 int64_t Delta = static_cast<int64_t>(CountAfter) - in runOnFunction() local
91 << "; Delta: " << NV("Delta", Delta); in runOnFunction()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/xray/
H A Dxray_fdr_controller.h262 auto Delta = TSC - LatestTSC; in functionEnter() local
266 mask(FuncId), Delta); in functionEnter()
288 auto Delta = TSC - LatestTSC; in functionTailExit() local
291 mask(FuncId), Delta); in functionTailExit()
301 auto Delta = TSC - LatestTSC; in functionEnterArg() local
308 mask(FuncId), Delta, Arg); in functionEnterArg()
326 auto Delta = TSC - LatestTSC; in functionExit() local
331 Delta); in functionExit()
341 auto Delta = TSC - LatestTSC; in customEvent() local
345 return W.writeCustomEvent(Delta, Event, EventSize); in customEvent()
[all …]
H A Dxray_fdr_log_writer.h130 bool writeFunction(FunctionRecordKind Kind, int32_t FuncId, int32_t Delta) {
135 R.TSCDelta = Delta;
141 int32_t Delta, uint64_t Arg) {
150 R.TSCDelta = Delta;
168 bool writeCustomEvent(int32_t Delta, const void *Event, int32_t EventSize) {
176 EventSize, Delta);
193 bool writeTypedEvent(int32_t Delta, uint16_t EventType, const void *Event,
199 EventSize, Delta, EventType);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp991 const SCEV *Delta = SE->getMinusSCEV(X, Y); in isKnownPredicate() local
994 return Delta->isZero(); in isKnownPredicate()
996 return SE->isKnownNonZero(Delta); in isKnownPredicate()
998 return SE->isKnownNonNegative(Delta); in isKnownPredicate()
1000 return SE->isKnownNonPositive(Delta); in isKnownPredicate()
1002 return SE->isKnownPositive(Delta); in isKnownPredicate()
1004 return SE->isKnownNegative(Delta); in isKnownPredicate()
1160 const SCEV *Delta = SE->getMinusSCEV(SrcConst, DstConst); in strongSIVtest() local
1161 LLVM_DEBUG(dbgs() << "\t Delta = " << *Delta); in strongSIVtest()
1162 LLVM_DEBUG(dbgs() << ", " << *Delta->getType() << "\n"); in strongSIVtest()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
H A 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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A 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()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Core/
H A DReplacement.cpp369 : MergeSecond(MergeSecond), Delta(D), FilePath(R.getFilePath()), in MergedReplacement()
370 Offset(R.getOffset() + (MergeSecond ? 0 : Delta)), in MergedReplacement()
372 Delta += MergeSecond ? 0 : Text.size() - Length; in MergedReplacement()
381 unsigned REnd = R.getOffset() + Delta + R.getLength(); in merge()
388 StringRef Head = TextRef.substr(0, R.getOffset() + Delta - Offset); in merge()
391 Delta += R.getReplacementText().size() - R.getLength(); in merge()
411 return Offset + Text.size() < R.getOffset() + Delta; in endsBefore()
426 int Delta; member in __anonf7f444380211::MergedReplacement
451 int Delta = 0; in merge() local
462 FirstI->getOffset() < SecondI->getOffset() + Delta); in merge()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/XRay/
H A 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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
H A DJITLinkGeneric.h87 uint64_t Delta = (B.getAlignmentOffset() - Addr) % B.getAlignment(); in alignToBlock() local
88 return Addr + Delta; in alignToBlock()
94 uint64_t Delta = (B.getAlignmentOffset() - PAddr) % B.getAlignment(); in alignToBlock() local
95 return P + Delta; in alignToBlock()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A 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()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/PBQP/
H A 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()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A 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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp844 uint64_t Delta = Value - FinalAddress + Addend; in resolvePPC64Relocation() local
845 writeInt16BE(LocalAddress, applyPPClo(Delta)); in resolvePPC64Relocation()
849 uint64_t Delta = Value - FinalAddress + Addend; in resolvePPC64Relocation() local
850 writeInt16BE(LocalAddress, applyPPChi(Delta)); in resolvePPC64Relocation()
854 uint64_t Delta = Value - FinalAddress + Addend; in resolvePPC64Relocation() local
855 writeInt16BE(LocalAddress, applyPPCha(Delta)); in resolvePPC64Relocation()
881 uint64_t Delta = Value - FinalAddress + Addend; in resolvePPC64Relocation() local
882 writeInt64BE(LocalAddress, Delta); in resolvePPC64Relocation()
900 int64_t Delta = (Value + Addend) - Section.getLoadAddressWithOffset(Offset); in resolveSystemZRelocation() local
901 assert(int16_t(Delta / 2) * 2 == Delta && "R_390_PC16DBL overflow"); in resolveSystemZRelocation()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
H A DLatencyBenchmarkRunner.cpp41 double Delta = V - Mean; in computeVariance() local
42 Ret += Delta * Delta; in computeVariance()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A 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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A 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()
102 uint64_t Delta = 4 + (RE.RelType - COFF::IMAGE_REL_AMD64_REL32); in resolveRelocation() local
103 Value -= FinalAddress + Delta; in resolveRelocation()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCPseudoProbe.cpp54 int64_t Delta; in emit() local
55 if (AddrDelta->evaluateAsAbsolute(Delta, MCOS->getAssemblerPtr())) { in emit()
56 MCOS->emitSLEB128IntValue(Delta); in emit()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/
H A 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";
/netbsd-src/sys/external/bsd/acpica/dist/compiler/
H A Daslcompile.c708 UINT32 Delta; in CmDumpAllEvents()
726 /* Delta will be in 100-nanosecond units */ in CmDumpAllEvents()
728 Delta = (UINT32) (Event->EndTime - Event->StartTime); in CmDumpAllEvents()
730 MicroSeconds = Delta / ACPI_100NSEC_PER_USEC; in CmDumpAllEvents()
731 MilliSeconds = Delta / ACPI_100NSEC_PER_MSEC; in CmDumpAllEvents()
702 UINT32 Delta; CmDumpAllEvents() local
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
H A DDynamicTags.def160 MIPS_DYNAMIC_TAG(MIPS_DELTA_CLASS, 0x70000017) // Delta C++ class definition.
163 MIPS_DYNAMIC_TAG(MIPS_DELTA_INSTANCE, 0x70000019) // Delta C++ class instances.
166 MIPS_DYNAMIC_TAG(MIPS_DELTA_RELOC, 0x7000001B) // Delta relocations.
169 MIPS_DYNAMIC_TAG(MIPS_DELTA_SYM, 0x7000001D) // Delta symbols that Delta
173 MIPS_DYNAMIC_TAG(MIPS_DELTA_CLASSSYM, 0x70000020) // Delta symbols that hold

123456