Home
last modified time | relevance | path

Searched refs:totalWeight (Results 1 – 6 of 6) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DCalcSpillWeights.cpp158 float totalWeight = 0; in weightCalcHelper() local
182 totalWeight += LiveIntervals::getSpillWeight(true, false, &MBFI, localMBB); in weightCalcHelper()
183 totalWeight += LiveIntervals::getSpillWeight(false, true, &MBFI, localMBB); in weightCalcHelper()
241 totalWeight += weight; in weightCalcHelper()
278 totalWeight *= 1.01F; in weightCalcHelper()
299 totalWeight *= 0.5F; in weightCalcHelper()
302 return normalize(totalWeight, start->distance(*end), numInstr); in weightCalcHelper()
303 return normalize(totalWeight, li.getSize(), numInstr); in weightCalcHelper()
/third_party/node/deps/npm/node_modules/are-we-there-yet/
Dtracker-group.js13 this.totalWeight = 0
52 this.totalWeight += this.weight[unit.id]
62 var valPerWeight = 1 / this.totalWeight
/third_party/flutter/flutter/packages/flutter/lib/src/animation/
Dtween_sequence.dart59 double totalWeight = 0.0;
61 totalWeight += item.weight;
62 assert(totalWeight > 0.0);
66 final double end = i == _items.length - 1 ? 1.0 : start + _items[i].weight / totalWeight;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/FuzzMutate/
DRandom.h41 uint64_t totalWeight() const { return TotalWeight; } in totalWeight() function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/FuzzMutate/
DRandomIRBuilder.cpp61 RS.sample(NewLoad, RS.totalWeight()); in newSource()
DIRMutator.cpp64 Strategy->getWeight(CurSize, MaxSize, RS.totalWeight())); in mutateModule()