HomeSort by relevance Sort by last modified time
    Searched full:totalweight (Results 1 - 25 of 25) sorted by null

  /external/opencv3/modules/video/src/opencl/
bgfg_mog2.cl 72 float totalWeight = 0.0f;
91 if (totalWeight < c_TB && dist2 < c_Tb * c_var)
120 totalWeight += c_weight;
130 totalWeight += c_weight;
145 totalWeight += c_weight;
148 if (0.f < totalWeight)
150 totalWeight = 1.f / totalWeight;
152 _weight[mad24(mode, idx_step, pt_idx)] *= totalWeight;
248 float totalWeight = 0.0f
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NoisyVelocityTracker.java 73 float totalweight = 0f; local
98 totalweight += weight;
104 if (totalweight > 0) {
105 mVX /= totalweight;
106 mVY /= totalweight;
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/prefill/
BitmapPreFiller.java 58 int totalWeight = 0;
60 totalWeight += size.getWeight();
63 final float bytesPerWeight = maxSize / (float) totalWeight;
  /external/v8/tools/
profile_view.js 53 var totalWeight = node.totalWeight * samplingRate;
57 selfWeight = totalWeight;
62 var viewNode = createViewNode(node.label, totalWeight, selfWeight, head);
profile.js 371 root.totalWeight += node.totalWeight;
376 rec.totalWeight += node.totalWeight;
397 counters.getRoot().totalWeight = root.totalWeight;
736 CallTree.Node.prototype.totalWeight = 0;
756 var totalWeight = this.selfWeight;
758 totalWeight += child.computeTotalWeight(); });
759 return this.totalWeight = totalWeight
    [all...]
  /external/opencv3/modules/cudabgsegm/src/cuda/
mog2.cu 158 float totalWeight = 0.0f;
180 if (totalWeight < c_TB && dist2 < c_Tb * var)
236 totalWeight += weight;
241 totalWeight = 1.f / totalWeight;
243 gmm_weight(mode * frame.rows + y, x) *= totalWeight;
389 float totalWeight = 0.0f;
398 totalWeight += weight;
400 if(totalWeight > c_TB)
404 meanVal = meanVal * (1.f / totalWeight);
    [all...]
mog.cu 375 float totalWeight = 0.0f;
384 totalWeight += weight;
386 if(totalWeight > backgroundRatio)
390 meanVal = meanVal * (1.f / totalWeight);
  /external/llvm/lib/CodeGen/
CalcSpillWeights.cpp 137 float totalWeight = 0;
180 totalWeight += weight;
209 totalWeight *= 1.01F;
227 totalWeight *= 0.5F;
229 li.weight = normalize(totalWeight, li.getSize(), numInstr);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
PiecewiseLinearIndentationFunctor.java 68 int totalWeight = 0;
71 totalWeight += (mMaxItemsInStack - i - 1) * (mMaxItemsInStack - i - 1);
72 mBaseValues.add((float) totalWeight / sumOfSquares);
  /external/v8/test/mjsunit/tools/
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/
MicrosphereInterpolatingFunction.java 219 double totalWeight = 0;
225 totalWeight += iV;
229 return value / totalWeight;
  /external/opencv3/modules/video/src/
bgfg_gaussmix2.cpp 582 float totalWeight = 0.f;
620 if( totalWeight < TB && dist2 < Tb*var )
675 totalWeight += weight;
681 totalWeight = 1.f/totalWeight;
684 gmm[mode].weight *= totalWeight;
    [all...]
  /frameworks/base/services/core/java/com/android/server/display/
AutomaticBrightnessController.java 357 float totalWeight = 0;
368 totalWeight += weight;
373 Slog.d(TAG, "calculateAmbientLux: totalWeight=" + totalWeight +
374 ", newAmbientLux=" + (sum / totalWeight));
376 return sum / totalWeight;
  /external/opencv3/modules/video/
opencl_kernels_video.cpp 69 "float totalWeight = 0.0f;\n"
82 "if (totalWeight < c_TB && dist2 < c_Tb * c_var)\n"
104 "totalWeight += c_weight;\n"
111 "totalWeight += c_weight;\n"
124 "totalWeight += c_weight;\n"
126 "if (0.f < totalWeight)\n"
128 "totalWeight = 1.f / totalWeight;\n"
130 "_weight[mad24(mode, idx_step, pt_idx)] *= totalWeight;\n"
205 "float totalWeight = 0.0f;\n
    [all...]
  /external/llvm/lib/Transforms/IPO/
SampleProfile.cpp 861 uint64_t TotalWeight = 0;
    [all...]
  /frameworks/base/core/java/android/widget/
LinearLayout.java 698 float totalWeight = 0;
733 totalWeight += lp.weight;
757 final int usedHeight = totalWeight == 0 ? mTotalLength : 0;
    [all...]
GridLayout.java     [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
LinearLayoutCompat.java 594 float totalWeight = 0;
629 totalWeight += lp.weight;
656 totalWeight == 0 ? mTotalLength : 0);
768 if (skippedMeasure || delta != 0 && totalWeight > 0.0f) {
769 float weightSum = mWeightSum > 0.0f ? mWeightSum : totalWeight;
    [all...]
  /packages/apps/Settings/src/com/android/settings/widget/
MatchParentShrinkingLinearLayout.java 648 float totalWeight = 0;
683 totalWeight += lp.weight;
710 totalWeight == 0 ? mTotalLength : 0);
821 if (skippedMeasure || delta != 0 && totalWeight > 0.0f) {
822 float weightSum = mWeightSum > 0.0f ? mWeightSum : totalWeight;
    [all...]
  /frameworks/support/v7/gridlayout/src/android/support/v7/widget/
GridLayout.java     [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
LocalCacheTest.java     [all...]
  /external/guava/guava/src/com/google/common/cache/
LocalCache.java     [all...]
  /prebuilts/sdk/current/support/v7/gridlayout/libs/
android-support-v7-gridlayout.jar 
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp     [all...]
  /packages/apps/TV/usbtuner/libs/
exoplayer_1.5.6.jar 

Completed in 1499 milliseconds