Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/CodeGen/
DCalcSpillWeights.cpp96 float totalWeight = 0; in CalculateWeightAndHint() local
135 totalWeight += weight; in CalculateWeightAndHint()
160 totalWeight *= 1.01F; in CalculateWeightAndHint()
181 totalWeight *= 0.9F; in CalculateWeightAndHint()
183 totalWeight *= 0.5F; in CalculateWeightAndHint()
186 li.weight = normalizeSpillWeight(totalWeight, li.getSize()); in CalculateWeightAndHint()
/external/v8/tools/
Dprofile.js371 root.totalWeight += node.totalWeight;
376 rec.totalWeight += node.totalWeight;
397 counters.getRoot().totalWeight = root.totalWeight;
736 CallTree.Node.prototype.totalWeight = 0; method in CallTree.Node
756 var totalWeight = this.selfWeight;
758 totalWeight += child.computeTotalWeight(); });
759 return this.totalWeight = totalWeight;
Dprofile_view.js53 var totalWeight = node.totalWeight * samplingRate;
57 selfWeight = totalWeight;
62 var viewNode = createViewNode(node.label, totalWeight, selfWeight, head);
/external/llvm/lib/CodeGen/
DCalcSpillWeights.cpp137 float totalWeight = 0; in calculateSpillWeightAndHint() local
179 totalWeight += weight; in calculateSpillWeightAndHint()
212 totalWeight *= 1.01F; in calculateSpillWeightAndHint()
233 totalWeight *= 0.5F; in calculateSpillWeightAndHint()
235 li.weight = normalize(totalWeight, li.getSize(), numInstr); in calculateSpillWeightAndHint()
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/prefill/
DBitmapPreFiller.java58 int totalWeight = 0; in generateAllocationOrder() local
60 totalWeight += size.getWeight(); in generateAllocationOrder()
63 final float bytesPerWeight = maxSize / (float) totalWeight; in generateAllocationOrder()
/external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
DGlitchDetectionThread.java249 double totalWeight = 0; in computeCenterOfMass() local
252 totalWeight += fftResult[i]; in computeCenterOfMass()
257 if (totalWeight == 0) { in computeCenterOfMass()
261 return (weightedSum * width) / totalWeight; in computeCenterOfMass()
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/
DMicrosphereInterpolatingFunction.java219 double totalWeight = 0; in value() local
225 totalWeight += iV; in value()
229 return value / totalWeight; in value()
/external/guava/guava-tests/test/com/google/common/cache/
DLocalCacheTest.java1680 segment.totalWeight = 1; in testClear()
1692 assertEquals(0, segment.totalWeight); in testClear()
1715 segment.totalWeight = 1; in testClear_notification()
1727 assertEquals(0, segment.totalWeight); in testClear_notification()
2242 segment.totalWeight = originalCount; in testEvictEntries()
/external/ImageMagick/MagickCore/
Deffect.c1688 totalWeight; in LocalContrastImage() local
1755 totalWeight=(float) ((width+1)*(width+1)); in LocalContrastImage()
1825 *out=sum/totalWeight; in LocalContrastImage()
1905 mult=(srcVal-(sum/totalWeight))*(strength/100.0f); in LocalContrastImage()
/external/guava/guava/src/com/google/common/cache/
DLocalCache.java2021 long totalWeight; field in LocalCache.Segment
2570 totalWeight += weight; in recordWrite()
2645 totalWeight -= valueReference.getWeight(); in enqueueNotification()
2667 while (totalWeight > maxSegmentWeight) { in evictEntries()