Searched refs:est (Results 1 - 25 of 25) sorted by relevance

/external/iproute2/tc/
H A Dtc_estimator.c26 int tc_setup_estimator(unsigned A, unsigned time_const, struct tc_estimator *est) argument
28 for (est->interval=0; est->interval<=5; est->interval++) {
29 if (A <= (1<<est->interval)*(TIME_UNITS_PER_SEC/4))
32 if (est->interval > 5)
34 est->interval -= 2;
35 for (est->ewma_log=1; est->ewma_log<32; est
[all...]
H A Dm_estimator.c33 fprintf(stderr, "Example: ... est 1sec 8sec\n");
37 int parse_estimator(int *p_argc, char ***p_argv, struct tc_estimator *est) argument
44 if (est->ewma_log)
55 if (tc_setup_estimator(A, time_const, est) < 0) {
60 fprintf(stderr, "[estimator i=%u e=%u]\n", est->interval, est->ewma_log);
H A Dtc_core.h27 int tc_setup_estimator(unsigned A, unsigned time_const, struct tc_estimator *est);
H A Dtc_common.h17 extern int parse_estimator(int *p_argc, char ***p_argv, struct tc_estimator *est);
H A Dtc_class.c51 struct tc_estimator est; local
56 memset(&est, 0, sizeof(est));
97 if (parse_estimator(&argc, &argv, &est))
113 if (est.ewma_log)
114 addattr_l(&req.n, sizeof(req), TCA_RATE, &est, sizeof(est));
H A Dtc_filter.c62 struct tc_estimator est; local
65 memset(&est, 0, sizeof(est));
120 if (parse_estimator(&argc, &argv, &est) < 0)
157 if (est.ewma_log)
158 addattr_l(&req.n, sizeof(req), TCA_RATE, &est, sizeof(est));
H A Dtc_qdisc.c50 struct tc_estimator est; local
65 memset(&est, 0, sizeof(est));
117 if (parse_estimator(&argc, &argv, &est))
137 if (est.ewma_log)
138 addattr_l(&req.n, sizeof(req), TCA_RATE, &est, sizeof(est));
/external/javasqlite/src/main/java/SQLite/
H A DProfile.java14 * @param est estimated execution time in milliseconds.
17 public void profile(String stmt, long est); argument
/external/srtp/test/
H A Droc_driver.c86 xtd_seq_num_t local, est, ref; local
95 index_init(&est);
99 delta = index_guess(&local, &est, (uint16_t) ref);
101 printf("%lld, %lld, %d\n", ref, est, i);
103 if (ref != est) {
123 index_init(&est);
135 delta = index_guess(&local, &est, (uint16_t) ref);
137 printf("ref: %lld, local: %lld, est: %lld, ircvd: %d, delta: %d\n",
138 ref, local, est, ircvd, delta);
145 if (ref != est) {
[all...]
H A Drdbx_driver.c152 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/iptables/include/linux/netfilter/
H A Dxt_RATEEST.h12 struct xt_rateest *est __attribute__((aligned(8))); member in struct:xt_rateest_target_info
/external/aac/libSBRenc/src/
H A Dmh_det.cpp306 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
809 INT est = 0,i; local
958 INT scfBand,est,l,ll,lu,maxPosF,maxPosT; local
1085 int est; local
[all...]
/external/openssh/
H A Dfixprogs42 ($cmd, $path, $est) = /^\"([^\"]+)\"\s+([\w\/_-]+)\s+([\d\.\-]+)/o;
66 $est = $rate / $entscale; # scale the estimate back
69 print OUT "\"$cmd\" $path $est\n";
/external/iproute2/examples/
H A Dcbqinit.eth121 # est 1sec 8sec means, that kernel will evaluate average rate
25 $TC class add dev $DEVICE parent 1:0 classid :1 est 1sec 8sec cbq \
35 $TC class add dev $DEVICE parent 1:1 classid :2 est 1sec 8sec cbq \
47 $TC class add dev $DEVICE parent 1:1 classid :3 est 2sec 16sec cbq \
55 $TC class add dev $DEVICE parent 1:1 classid :4 est 1sec 8sec cbq \
73 $TC class add dev $DEVICE parent 1:7FFE classid 1:7FFF est 4sec 32sec cbq \
/external/srtp/srtp/
H A Dsrtp.c602 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/icu4c/i18n/
H A DdecNumber.c6387 Int est; /* estimated quotient */ local
6432 est=(((ueInt)carry>>11)*53687)>>18;
6433 *c=(Unit)(carry-est*(DECDPUNMAX+1)); /* remainder */
6434 carry=est; /* likely quotient [89%] */
6442 est=(((ueInt)carry>>11)*53687)>>18;
6443 *c=(Unit)(carry-est*(DECDPUNMAX+1));
6444 carry=est-(DECDPUNMAX+1); /* correctly negative */
6450 est=(((ueInt)carry>>3)*16777)>>21;
6451 *c=(Unit)(carry-est*(DECDPUNMAX+1)); /* remainder */
6452 carry=est; /* likel
[all...]
/external/ping/
H A Dping_common.c267 int est = rtt ? rtt/8 : interval*1000; local
269 interval = (est+rtt_addend+500)/1000;
/external/clang/lib/AST/
H A DType.cpp1664 ExceptionSpecificationType est = getExceptionSpecType(); local
1665 if (est == EST_BasicNoexcept)
1668 if (est != EST_ComputedNoexcept)
/external/strace/
H A Dstrace.spec445 - vfork est arrive!
/external/zlib/src/contrib/delphi/
H A DZLib.pas140 OutEstimate = zero, or est. size of the decompressed data
/external/mksh/src/
H A Dedit.c5365 print_expansions(struct edstate *est, int cmd MKSH_A_UNUSED) argument
5371 nwords = x_cf_glob(&i, est->cbuf, est->linelen, est->cursor,
/external/javasqlite/src/main/native/
H A Dsqlite_jni.c4829 doprofile(void *arg, const char *msg, sqlite_uint64 est) argument
4844 jlong ms = est / (3600i64 * 24i64 * 1000i64);
4846 jlong ms = est / (3600LL * 24LL * 1000LL);
/external/grub/docs/
H A Dtexinfo.tex181 data-base data-bases eshell fall-ing half-way long-est man-u-script
185 stand-alone strong-est time-stamp time-stamps which-ever white-space
/external/bison/build-aux/
H A Dtexinfo.tex187 data-base data-bases eshell fall-ing half-way long-est man-u-script
191 stand-alone strong-est time-stamp time-stamps which-ever white-space
/external/chromium/net/base/
H A Deffective_tld_names.cc1468 {"est.pr", 0},

Completed in 640 milliseconds