Lines Matching refs:Delta
41 int Delta; member
44 SourceDelta Delta; in get() local
45 Delta.FileLoc = Loc; in get()
46 Delta.Delta = D; in get()
47 return Delta; in get()
106 bool DoInsertion(unsigned FileIndex, int Delta, InsertResult *InsertRes);
137 FullDelta = IR.LHS->getFullDelta()+IR.RHS->getFullDelta()+IR.Split.Delta; in DeltaTreeInteriorNode()
168 NewFullDelta += Values[i].Delta; in RecomputeFullDeltaLocally()
179 bool DeltaTreeNode::DoInsertion(unsigned FileIndex, int Delta, in DoInsertion() argument
182 FullDelta += Delta; in DoInsertion()
196 Values[i].Delta += Delta; in DoInsertion()
208 Values[i] = SourceDelta::get(FileIndex, Delta); in DoInsertion()
219 InsertRes->LHS->DoInsertion(FileIndex, Delta, nullptr /*can't fail*/); in DoInsertion()
221 InsertRes->RHS->DoInsertion(FileIndex, Delta, nullptr /*can't fail*/); in DoInsertion()
227 if (!IN->Children[i]->DoInsertion(FileIndex, Delta, InsertRes)) in DoInsertion()
286 InsertSide->FullDelta += SubSplit.Delta + SubRHS->getFullDelta(); in DoInsertion()
351 FullDelta += N->getValue(i).Delta; in VerifyTree()
365 FullDelta += IVal.Delta; in VerifyTree()
421 Result += Val.Delta; in getDeltaAt()
451 void DeltaTree::AddDelta(unsigned FileIndex, int Delta) { in AddDelta() argument
452 assert(Delta && "Adding a noop?"); in AddDelta()
456 if (MyRoot->DoInsertion(FileIndex, Delta, &InsertRes)) { in AddDelta()