HomeSort by relevance Sort by last modified time
    Searched defs:est (Results 26 - 50 of 55) sorted by null

12 3

  /external/iproute2/tc/
tc_qdisc.c 48 struct tc_estimator est; local
63 memset(&est, 0, sizeof(est));
123 if (parse_estimator(&argc, &argv, &est))
143 if (est.ewma_log)
144 addattr_l(&req.n, sizeof(req), TCA_RATE, &est, sizeof(est));
tc_filter.c 58 struct tc_estimator est; local
61 memset(&est, 0, sizeof(est));
130 if (parse_estimator(&argc, &argv, &est) < 0)
167 if (est.ewma_log)
168 addattr_l(&req.n, sizeof(req), TCA_RATE, &est, sizeof(est));
tc_class.c 66 struct tc_estimator est; local
71 memset(&est, 0, sizeof(est));
112 if (parse_estimator(&argc, &argv, &est))
128 if (est.ewma_log)
129 addattr_l(&req.n, sizeof(req), TCA_RATE, &est, sizeof(est));
  /external/srtp/test/
rdbx_driver.c 152 xtd_seq_num_t est; local
154 delta = index_guess(&rdbx->index, &est, idx);
163 * the estimated value est, at this point
184 xtd_seq_num_t est; local
187 delta = index_guess(&rdbx->index, &est, idx);
317 xtd_seq_num_t est; local
330 delta = index_guess(&rdbx.index, &est, i);
  /external/libvncserver/libvncclient/
tight.c 364 int est[3]; local
378 est[c] = (int)client->tightPrevRow[x*3+c] + (int)pix[c] -
380 if (est[c] > 0xFF) {
381 est[c] = 0xFF;
382 } else if (est[c] < 0x00) {
383 est[c] = 0x00;
385 pix[c] = (uint8_t)est[c] + client->buffer[(y*client->rectWidth+x)*3+c];
407 int est[3]; local
436 est[c] = (int)thatRow[x*3+c] + (int)pix[c] - (int)thatRow[(x-1)*3+c];
437 if (est[c] > (int)max[c])
    [all...]
  /external/opencv3/samples/cpp/
videostab.cpp 78 " -lp, --lin-prog-motion-est=(yes|no)\n"
119 " -et, --est-trim=(yes|no)\n"
197 Ptr<MotionEstimatorRansacL2> est = makePtr<MotionEstimatorRansacL2>(motionModel(arg(prefix + "model"))); local
199 RansacParams ransac = est->ransacParams();
205 est->setRansacParams(ransac);
207 est->setMinInlierRatio(argf(prefix + "min-inlier-ratio"));
223 Ptr<KeypointBasedMotionEstimatorGpu> kbest = makePtr<KeypointBasedMotionEstimatorGpu>(est);
229 Ptr<KeypointBasedMotionEstimator> kbest = makePtr<KeypointBasedMotionEstimator>(est);
248 Ptr<MotionEstimatorL1> est = makePtr<MotionEstimatorL1>(motionModel(arg(prefix + "model"))); local
264 Ptr<KeypointBasedMotionEstimatorGpu> kbest = makePtr<KeypointBasedMotionEstimatorGpu>(est);
    [all...]
  /frameworks/base/libs/common_time/
common_time_server_api.cpp 327 int32_t est = (ICommonClock::STATE_MASTER != mState) local
330 dump_printf("Error Est. : %.3f msec\n",
331 static_cast<float>(est) / 1000.0);
333 dump_printf("Error Est. : %s\n", "unknown");
  /libcore/ojluni/src/main/java/java/util/stream/
AbstractTask.java 184 long est = sizeEstimate / LEAF_TARGET; local
185 return est > 0L ? est : 1L;
  /external/deqp/modules/gles2/functional/
es2fFlushFinishTests.cpp 298 const float est = (float(MAX_SAMPLE_DURATION_US) - b) / a; local
300 curDrawCount = de::clamp(deFloorFloatToInt32(est), 1, int(MAX_DRAW_CALL_COUNT));
  /external/srtp/srtp/
srtp.c 602 xtd_seq_num_t est; /* estimated xtd_seq_num_t of *hdr */ local
723 delta = rdbx_estimate_index(&stream->rtp_rdbx, &est, ntohs(hdr->seq));
734 high32(est),low32(est));
736 debug_print(mod_srtp, "estimated packet index: %016llx", est);
748 iv.v64[1] = be64_to_cpu(make64((high32(est) << 16) | (low32(est) >> 16),
749 low32(est) << 16));
751 iv.v64[1] = be64_to_cpu(est << 16);
758 /* otherwise, set the index to est */
846 xtd_seq_num_t est; \/* estimated xtd_seq_num_t of *hdr *\/ local
    [all...]
  /external/aac/libSBRenc/src/
mh_det.cpp 306 INT est; local
311 for (est=0; est < noEstPerFrame; est++) {
313 diff(pQuotaBuffer[est+move],
314 tonalityDiff[est+move],
319 calculateFlatnessMeasure(pQuotaBuffer[est+ move],
321 pSfmOrig[est + move],
322 pSfmSbr[est + move],
351 INT i,est; local
541 INT i,j,li, ui,est; local
826 INT est = 0,i; local
978 INT scfBand,est,l,ll,lu,maxPosF,maxPosT; local
1105 int est; local
    [all...]
  /frameworks/base/packages/Osu/src/com/android/hotspot2/est/
ESTHandler.java 1 package com.android.hotspot2.est;
195 Log.d(TAG, "EST Cert: " + cert);
  /libcore/luni/src/main/java/java/util/concurrent/
LinkedBlockingQueue.java 806 long est; // size estimate field in class:LinkedBlockingQueue.LBQSpliterator
809 this.est = queue.size();
812 public long estimateSize() { return est; }
837 est = 0L;
840 else if ((est -= i) < 0L)
841 est = 0L;
    [all...]
LinkedBlockingDeque.java 1107 long est; \/\/ size estimate field in class:LinkedBlockingDeque.LBDSpliterator
    [all...]
ConcurrentSkipListMap.java 3280 int est; \/\/ pseudo-size estimate field in class:ConcurrentSkipListMap.CSLMSpliterator
    [all...]
  /libcore/ojluni/src/main/java/java/util/
LinkedList.java 1180 int est; \/\/ size estimate; -1 until first needed field in class:LinkedList.LLSpliterator
    [all...]
Spliterators.java 1260 private long est; \/\/ size estimate field in class:Spliterators.AbstractSpliterator
1383 private long est; \/\/ size estimate field in class:Spliterators.AbstractIntSpliterator
1493 private long est; \/\/ size estimate field in class:Spliterators.AbstractLongSpliterator
1603 private long est; \/\/ size estimate field in class:Spliterators.AbstractDoubleSpliterator
1697 private long est; \/\/ size estimate field in class:Spliterators.IteratorSpliterator
1848 private long est; \/\/ size estimate field in class:Spliterators.IntIteratorSpliterator
1942 private long est; \/\/ size estimate field in class:Spliterators.LongIteratorSpliterator
2036 private long est; \/\/ size estimate field in class:Spliterators.DoubleIteratorSpliterator
    [all...]
HashMap.java 903 int est; // size estimate field in class:HashMap.HashMapSpliterator
907 int fence, int est,
912 this.est = est;
    [all...]
IdentityHashMap.java 1390 int est; \/\/ size estimate field in class:IdentityHashMap.IdentityHashMapSpliterator
    [all...]
WeakHashMap.java 1043 int est; \/\/ size estimate field in class:WeakHashMap.WeakHashMapSpliterator
    [all...]
TreeMap.java 2722 int est; \/\/ size estimate (exact only for top-level) field in class:TreeMap.TreeMapSpliterator
    [all...]
  /external/e2fsprogs/misc/
e2image.c 636 time_t est = (duration * meta_blocks_count / local
639 strftime(buff, 30, "%T", gmtime(&est));
    [all...]
  /external/iputils/
ping_common.c 442 int est = rtt ? rtt/8 : interval*1000; local
444 interval = (est+rtt_addend+500)/1000;
  /external/wpa_supplicant_8/wpa_supplicant/
scan.c 1999 unsigned int est, tmp; local
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
FastMath.java 2236 double est = sina\/cosa; local
3255 double est = -0.010714690733195933; local
    [all...]

Completed in 893 milliseconds

12 3