Searched refs:totalWeight (Results 1 – 8 of 8) sorted by relevance
/external/v8/tools/ |
D | profile.js | 352 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;
|
D | profile_view.js | 53 var totalWeight = node.totalWeight * samplingRate; 57 selfWeight = totalWeight; 62 var viewNode = createViewNode(node.label, totalWeight, selfWeight, head);
|
/external/llvm/lib/CodeGen/ |
D | CalcSpillWeights.cpp | 102 float totalWeight = 0; in calculateSpillWeightAndHint() local 145 totalWeight += weight; in calculateSpillWeightAndHint() 174 totalWeight *= 1.01F; in calculateSpillWeightAndHint() 192 totalWeight *= 0.5F; in calculateSpillWeightAndHint() 194 li.weight = normalize(totalWeight, li.getSize(), numInstr); in calculateSpillWeightAndHint()
|
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/prefill/ |
D | BitmapPreFiller.java | 58 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/ |
D | profile.js | 194 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/ |
D | MicrosphereInterpolatingFunction.java | 219 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/ |
D | LocalCacheTest.java | 1679 segment.totalWeight = 1; in testClear() 1691 assertEquals(0, segment.totalWeight); in testClear() 1714 segment.totalWeight = 1; in testClear_notification() 1726 assertEquals(0, segment.totalWeight); in testClear_notification() 2241 segment.totalWeight = originalCount; in testEvictEntries()
|
/external/guava/guava/src/com/google/common/cache/ |
D | LocalCache.java | 2019 int totalWeight; field in LocalCache.Segment 2568 totalWeight += weight; in recordWrite() 2643 totalWeight -= valueReference.getWeight(); in enqueueNotification() 2665 while (totalWeight > maxSegmentWeight) { in evictEntries()
|