Home
last modified time | relevance | path

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

/external/v8/tools/
Dprofile.js352 root.totalWeight += node.totalWeight;
357 rec.totalWeight += node.totalWeight;
378 counters.getRoot().totalWeight = root.totalWeight;
697 CallTree.Node.prototype.totalWeight = 0; method in CallTree.Node
717 var totalWeight = this.selfWeight;
719 totalWeight += child.computeTotalWeight(); });
720 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.cpp117 float totalWeight = 0; in CalculateWeightAndHint() local
156 totalWeight += weight; in CalculateWeightAndHint()
181 totalWeight *= 1.01F; in CalculateWeightAndHint()
199 totalWeight *= 0.5F; in CalculateWeightAndHint()
201 li.weight = normalizeSpillWeight(totalWeight, li.getSize()); in CalculateWeightAndHint()
/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/guava/guava-tests/test/com/google/common/cache/
DLocalCacheTest.java1593 segment.totalWeight = 1; in testClear()
1605 assertEquals(0, segment.totalWeight); in testClear()
1628 segment.totalWeight = 1; in testClear_notification()
1640 assertEquals(0, segment.totalWeight); in testClear_notification()
2155 segment.totalWeight = originalCount; in testEvictEntries()
/external/guava/guava/src/com/google/common/cache/
DLocalCache.java2069 int totalWeight; field in LocalCache.Segment
2598 totalWeight += weight; in recordWrite()
2673 totalWeight -= valueReference.getWeight(); in enqueueNotification()
2695 while (totalWeight > maxSegmentWeight) { in evictEntries()