Home
last modified time | relevance | path

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

/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
180 totalWeight += weight; in calculateSpillWeightAndHint()
209 totalWeight *= 1.01F; in calculateSpillWeightAndHint()
227 totalWeight *= 0.5F; in calculateSpillWeightAndHint()
229 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/v8/test/mjsunit/tools/
Dprofile.js194 assertEquals(totalTicks, node.totalWeight, 'total of ' + stack);
289 assertEquals(testDriver.root.total, flatProfileRoot.totalWeight);
298 assertEquals(reference.total, rec.totalWeight, 'total of ' + rec.label);
335 assertEquals(5, flatProfileRoot.totalWeight);
344 assertEquals(reference[1], rec.totalWeight, 'total of ' + rec.label);
/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()