/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | CalcSpillWeights.cpp | 96 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/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | CalcSpillWeights.cpp | 167 float totalWeight = 0; in weightCalcHelper() local 191 totalWeight += LiveIntervals::getSpillWeight(true, false, &MBFI, localMBB); in weightCalcHelper() 192 totalWeight += LiveIntervals::getSpillWeight(false, true, &MBFI, localMBB); in weightCalcHelper() 262 totalWeight += weight; in weightCalcHelper() 300 totalWeight *= 1.01F; in weightCalcHelper() 321 totalWeight *= 0.5F; in weightCalcHelper() 324 return normalize(totalWeight, start->distance(*end), numInstr); in weightCalcHelper() 325 return normalize(totalWeight, li.getSize(), numInstr); in weightCalcHelper()
|
/external/v8/tools/ |
D | profile_view.js | 53 var totalWeight = node.totalWeight * samplingRate; 57 selfWeight = totalWeight; 62 var viewNode = createViewNode(node.label, totalWeight, selfWeight, head);
|
D | profile.js | 391 root.totalWeight += node.totalWeight; 396 rec.totalWeight += node.totalWeight; 417 counters.getRoot().totalWeight = root.totalWeight; 763 CallTree.Node.prototype.totalWeight = 0; method in CallTree.Node 783 var totalWeight = this.selfWeight; 785 totalWeight += child.computeTotalWeight(); }); 786 return this.totalWeight = totalWeight;
|
/external/llvm/lib/CodeGen/ |
D | CalcSpillWeights.cpp | 137 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/ |
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/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/ |
D | GlitchDetectionThread.java | 250 double totalWeight = 0; in computeCenterOfMass() local 253 totalWeight += fftResult[i]; in computeCenterOfMass() 258 if (totalWeight == 0) { in computeCenterOfMass() 262 return (weightedSum * width) / totalWeight; in computeCenterOfMass()
|
/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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/FuzzMutate/ |
D | Random.h | 42 uint64_t totalWeight() const { return TotalWeight; } in totalWeight() function
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/FuzzMutate/ |
D | RandomIRBuilder.cpp | 61 RS.sample(NewLoad, RS.totalWeight()); in newSource()
|
D | IRMutator.cpp | 65 Strategy->getWeight(CurSize, MaxSize, RS.totalWeight())); in mutateModule()
|
/external/guava/guava-tests/test/com/google/common/cache/ |
D | LocalCacheTest.java | 1680 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/ |
D | effect.c | 1690 totalWeight; in LocalContrastImage() local 1757 totalWeight=(float) ((width+1)*(width+1)); in LocalContrastImage() 1827 *out=sum/totalWeight; in LocalContrastImage() 1910 mult=(srcVal-(sum/totalWeight))*(strength/100.0f); in LocalContrastImage()
|
/external/guava/guava/src/com/google/common/cache/ |
D | LocalCache.java | 2021 long totalWeight; field in LocalCache.Segment 2570 totalWeight += weight; in recordWrite() 2645 totalWeight -= valueReference.getWeight(); in enqueueNotification() 2667 while (totalWeight > maxSegmentWeight) { in evictEntries()
|