HomeSort by: relevance | last modified time | path
    Searched refs:Delta (Results 1 - 25 of 76) sorted by relevancy

1 2 3 4

  /src/external/apache2/llvm/dist/clang/lib/Rewrite/
DeltaTree.cpp 1 //===- DeltaTree.cpp - B-Tree for Rewrite Delta tracking ------------------===//
25 /// DeltaTree implements a key/value mapping from FileIndex to Delta, allowing
27 /// can also efficiently tell us the full accumulated delta for a specific
32 /// former and adds children pointers. Each node knows the full delta of all
34 /// full delta implied by a whole subtree in constant time.
43 int Delta;
46 SourceDelta Delta;
47 Delta.FileLoc = Loc;
48 Delta.Delta = D
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Rewrite/Core/
DeltaTree.h 1 //===- DeltaTree.h - B-Tree for Rewrite Delta tracking ----------*- C++ -*-===//
21 /// implements a key/value mapping from index to delta, and allows fast lookup
23 /// efficiently tell us the full accumulated delta for a specific file offset
37 /// getDeltaAt - Return the accumulated delta at the specified file offset.
43 /// this method is used to record that info. It inserts a delta of 'Delta'
45 void AddDelta(unsigned FileIndex, int Delta);
  /src/external/apache2/llvm/dist/llvm/lib/Support/
DeltaAlgorithm.cpp 44 DeltaAlgorithm::Delta(const changeset_ty &Changes,
66 return Delta(Changes, SplitSets);
79 Res = Delta(*it, Sets);
95 Res = Delta(Complement, ComplementSets);
109 // Otherwise run the real delta algorithm.
113 return Delta(Changes, Sets);
  /src/external/gpl2/rcs/dist/src/
rcssyn.c 137 * delta tree.
219 /* Get a delta number. */
221 register struct hshentry *delta = getnum(); local
222 if (delta && countnumflds(delta->num)&1)
223 fatserror("%s isn't a delta number", delta->num);
224 return delta;
236 struct hshentry * delta; local
251 if ((delta = getnum())
    [all...]
rlog.c 237 struct hshentry const *delta; variable
407 currlock->delta->num);
462 while (! (delta = readdeltalog())->selector || --revno)
464 if (delta->next && countnumflds(delta->num)==2)
465 /* Read through delta->next to get its insertlns. */
466 while (readdeltalog() != delta->next)
511 /* function: print delta tree (not including trunk) in reverse
562 /* function: Print delta node if node->selector is set. */
630 * Return the delta found
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_fdr_controller.h 168 // delta is too large to fit in a 32-bit signed integer, so we write a
262 auto Delta = TSC - LatestTSC;
266 mask(FuncId), Delta);
288 auto Delta = TSC - LatestTSC;
291 mask(FuncId), Delta);
301 auto Delta = TSC - LatestTSC;
308 mask(FuncId), Delta, Arg);
326 auto Delta = TSC - LatestTSC;
331 Delta);
341 auto Delta = TSC - LatestTSC
    [all...]
xray_fdr_log_writer.h 130 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);
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
LineTable.cpp 25 int64_t Delta;
27 DeltaInfo(int64_t D, uint32_t C) : Delta(D), Count(C) {}
30 inline bool operator<(const DeltaInfo &LHS, int64_t Delta) {
31 return LHS.Delta < Delta;
146 if (Pos != End && Pos->Delta == LineDelta)
159 // Set the min and max line delta intelligently based on the counts of
168 const int64_t FirstDelta = DeltaInfos[I].Delta;
172 auto LineRange = DeltaInfos[J].Delta - FirstDelta;
183 MinLineDelta = DeltaInfos[BestIndex].Delta;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
DependenceAnalysis.cpp 99 STATISTIC(DeltaApplications, "Delta applications");
100 STATISTIC(DeltaSuccesses, "Delta successes");
101 STATISTIC(DeltaIndependence, "Delta independence");
102 STATISTIC(DeltaPropagations, "Delta propagations");
991 const SCEV *Delta = SE->getMinusSCEV(X, Y);
994 return Delta->isZero();
996 return SE->isKnownNonZero(Delta);
998 return SE->isKnownNonNegative(Delta);
1000 return SE->isKnownNonPositive(Delta);
1002 return SE->isKnownPositive(Delta);
    [all...]
  /src/external/apache2/llvm/bin/llvm-reduce/
Makefile 16 SRCS+= Delta.cpp \
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
DeltaAlgorithm.h 16 /// DeltaAlgorithm - Implements the delta debugging algorithm (A. Zeller '99)
57 /// Delta - Minimize a set of \p Changes which has been partitioned into
59 changeset_ty Delta(const changeset_ty &Changes,
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
JITLinkGeneric.h 87 uint64_t Delta = (B.getAlignmentOffset() - Addr) % B.getAlignment();
88 return Addr + Delta;
94 uint64_t Delta = (B.getAlignmentOffset() - PAddr) % B.getAlignment();
95 return P + Delta;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
RegisterPressure.cpp 962 RegPressureDelta &Delta,
965 Delta.Excess = PressureChange();
986 Delta.Excess = PressureChange(i);
987 Delta.Excess.setUnitInc(PDiff);
1003 RegPressureDelta &Delta) {
1004 Delta.CriticalMax = PressureChange();
1005 Delta.CurrentMax = PressureChange();
1014 if (!Delta.CriticalMax.isValid()) {
1021 Delta.CriticalMax = PressureChange(i);
1022 Delta.CriticalMax.setUnitInc(PDiff)
    [all...]
MachineFunctionPass.cpp 81 int64_t Delta = static_cast<int64_t>(CountAfter) -
91 << "; Delta: " << NV("Delta", Delta);
InterferenceCache.h 113 void addRef(int Delta) { RefCount += Delta; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/XRay/
FDRRecords.h 237 int32_t Delta = 0;
249 Size(S), Delta(D), Data(std::move(P)) {}
252 int32_t delta() const { return Delta; } function in class:llvm::xray::CustomEventRecordV5
264 int32_t Delta = 0;
277 Size(S), Delta(D), Data(std::move(P)) {}
280 int32_t delta() const { return Delta; } function in class:llvm::xray::TypedEventRecord
375 uint32_t Delta = 0;
384 : Record(RecordKind::RK_Function), Kind(K), FuncId(F), Delta(D) {
390 uint32_t delta() const { return Delta; } function in class:llvm::xray::FunctionRecord
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/PBQP/
ReductionRules.h 108 RawMatrix Delta(YLen, ZLen);
119 Delta[i][j] = Min;
132 YZEId = G.addEdge(YNId, ZNId, Delta);
136 G.updateEdgeCosts(YZEId, Delta + YZECosts);
138 G.updateEdgeCosts(YZEId, Delta.transpose() + YZECosts);
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86InsertPrefetch.cpp 14 // nta, t{0|1|2}) and a delta. The debug info identifies an instruction with a
16 // a location at that memory operand + the delta specified in the
48 int64_t Delta;
69 // are returned as pairs (name, delta).
211 int64_t Delta = PrefInfo.Delta;
231 Delta)
238 CurrentOp, CurrentOp->getOffset() + Delta, CurrentOp->getSize()));
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Core/
Replacement.cpp 369 : MergeSecond(MergeSecond), Delta(D), FilePath(R.getFilePath()),
370 Offset(R.getOffset() + (MergeSecond ? 0 : Delta)),
372 Delta += MergeSecond ? 0 : Text.size() - Length;
381 unsigned REnd = R.getOffset() + Delta + R.getLength();
388 StringRef Head = TextRef.substr(0, R.getOffset() + Delta - Offset);
391 Delta += R.getReplacementText().size() - R.getLength();
411 return Offset + Text.size() < R.getOffset() + Delta;
426 int Delta;
429 // into this element. This is used to update 'Delta' once the
449 // Delta is the amount of characters that replacements from 'Second' need t
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCPseudoProbe.cpp 41 // Flag (bit 7, 0 - code address, 1 - address delta). This indicates whether
42 // the following field is a symbolic code address or an address delta.
51 // Emit the delta between the address label and LastProbe.
54 int64_t Delta;
55 if (AddrDelta->evaluateAsAbsolute(Delta, MCOS->getAssemblerPtr())) {
56 MCOS->emitSLEB128IntValue(Delta);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
LatencyBenchmarkRunner.cpp 41 double Delta = V - Mean;
42 Ret += Delta * Delta;
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldCOFFX86_64.h 50 void write32BitOffset(uint8_t *Target, int64_t Addend, uint64_t Delta) {
51 uint64_t Result = Addend + Delta;
100 // Delta is the distance from the start of the reloc to the end of the
102 uint64_t Delta = 4 + (RE.RelType - COFF::IMAGE_REL_AMD64_REL32);
103 Value -= FinalAddress + Delta;
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
RegisterPressure.h 480 RegPressureDelta &Delta,
486 RegPressureDelta &Delta,
495 RegPressureDelta &Delta,
503 RegPressureDelta &Delta,
507 return getMaxDownwardPressureDelta(MI, Delta, CriticalPSets,
511 return getMaxUpwardPressureDelta(MI, nullptr, Delta, CriticalPSets,
  /src/external/gpl2/groff/dist/font/devps/generate/
symbolchars 16 Delta *D
40 delta *d
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_stack_store.h 28 Delta,

Completed in 40 milliseconds

1 2 3 4