Home
last modified time | relevance | path

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

12345678910>>...290

/dports/games/edge/Edge-1.35-source/epi/
H A Dmath_oddity.cc39 est = (est + value / est) >> 1; est = (est + value / est) >> 1; in int_sqrt()
40 est = (est + value / est) >> 1; est = (est + value / est) >> 1; in int_sqrt()
41 est = (est + value / est) >> 1; est = (est + value / est) >> 1; in int_sqrt()
42 est = (est + value / est) >> 1; est = (est + value / est) >> 1; in int_sqrt()
43 est = (est + value / est) >> 1; est = (est + value / est) >> 1; in int_sqrt()
44 est = (est + value / est) >> 1; est = (est + value / est) >> 1; in int_sqrt()
45 est = (est + value / est) >> 1; est = (est + value / est) >> 1; in int_sqrt()
46 est = (est + value / est) >> 1; est = (est + value / est) >> 1; in int_sqrt()
47 est = (est + value / est) >> 1; est = (est + value / est) >> 1; in int_sqrt()
49 if (est * est > value) est--; in int_sqrt()
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/net/core/
H A Dgen_estimator.c78 struct net_rate_estimator *est = from_timer(est, t, timer); in est_timer() local
83 brate = (b.bytes - est->last_bytes) << (10 - est->intvl_log); in est_timer()
84 brate = (brate >> est->ewma_log) - (est->avbps >> est->ewma_log); in est_timer()
87 rate = (rate >> est->ewma_log) - (est->avpps >> est->ewma_log); in est_timer()
97 est->next_jiffies += ((HZ/4) << est->intvl_log); in est_timer()
103 mod_timer(&est->timer, est->next_jiffies); in est_timer()
149 est = kzalloc(sizeof(*est), GFP_KERNEL); in gen_new_estimator()
150 if (!est) in gen_new_estimator()
181 mod_timer(&est->timer, est->next_jiffies); in gen_new_estimator()
204 if (est) { in gen_kill_estimator()
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/net/core/
H A Dgen_estimator.c78 struct net_rate_estimator *est = from_timer(est, t, timer); in est_timer() local
83 brate = (b.bytes - est->last_bytes) << (10 - est->intvl_log); in est_timer()
84 brate = (brate >> est->ewma_log) - (est->avbps >> est->ewma_log); in est_timer()
87 rate = (rate >> est->ewma_log) - (est->avpps >> est->ewma_log); in est_timer()
97 est->next_jiffies += ((HZ/4) << est->intvl_log); in est_timer()
103 mod_timer(&est->timer, est->next_jiffies); in est_timer()
149 est = kzalloc(sizeof(*est), GFP_KERNEL); in gen_new_estimator()
150 if (!est) in gen_new_estimator()
181 mod_timer(&est->timer, est->next_jiffies); in gen_new_estimator()
204 if (est) { in gen_kill_estimator()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/net/core/
H A Dgen_estimator.c78 struct net_rate_estimator *est = from_timer(est, t, timer); in est_timer() local
83 brate = (b.bytes - est->last_bytes) << (10 - est->intvl_log); in est_timer()
84 brate = (brate >> est->ewma_log) - (est->avbps >> est->ewma_log); in est_timer()
87 rate = (rate >> est->ewma_log) - (est->avpps >> est->ewma_log); in est_timer()
97 est->next_jiffies += ((HZ/4) << est->intvl_log); in est_timer()
103 mod_timer(&est->timer, est->next_jiffies); in est_timer()
149 est = kzalloc(sizeof(*est), GFP_KERNEL); in gen_new_estimator()
150 if (!est) in gen_new_estimator()
181 mod_timer(&est->timer, est->next_jiffies); in gen_new_estimator()
204 if (est) { in gen_kill_estimator()
[all …]
/dports/benchmarks/vegeta/vegeta-12.8.4/vendor/github.com/streadway/quantile/
H A Dquantile.go132 est.buffer = append(est.buffer, value)
133 if len(est.buffer) == cap(est.buffer) {
141 if est.observations == 0 && len(est.buffer) == 0 {
145 est.flush()
168 return int(est.observations) + len(est.buffer)
184 est.items++
218 est.head = est.observe(batch[0], 1, 0, nil)
227 est.head = est.observe(v, 1, 0, est.head)
244 cur.next = est.observe(v, 1, est.invariant(rank, est.observations)-1, cur.next)
270 est.update(est.buffer)
[all …]
H A Dquantile_test.go18 est := New(fn)
24 est.Add(s)
27 if est.Samples() != n {
34 estimate := est.Get(q)
104 …f 0.50: %f 0.99: %f", post.TotalAlloc-pre.TotalAlloc, est.items, est.Get(0.01), est.Get(0.50), est
108 est := New(Known(0.99, 0.0001))
109 if val := est.Get(0.99); val != 0 {
113 est = New(Unknown(0.0001))
114 if val := est.Get(0.99); val != 0 {
120 est := New(Known(0.99, 0.0001))
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/net/netfilter/
H A Dxt_RATEEST.c55 est->refcnt++; in __xt_rateest_lookup()
56 return est; in __xt_rateest_lookup()
71 return est; in xt_rateest_lookup()
125 if (est) { in xt_rateest_tg_checkentry()
137 info->est = est; in xt_rateest_tg_checkentry()
142 est = kzalloc(sizeof(*est), GFP_KERNEL); in xt_rateest_tg_checkentry()
143 if (!est) in xt_rateest_tg_checkentry()
146 strlcpy(est->name, info->name, sizeof(est->name)); in xt_rateest_tg_checkentry()
157 ret = gen_new_estimator(&est->bstats, NULL, &est->rate_est, in xt_rateest_tg_checkentry()
162 info->est = est; in xt_rateest_tg_checkentry()
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/net/netfilter/
H A Dxt_RATEEST.c55 est->refcnt++; in __xt_rateest_lookup()
56 return est; in __xt_rateest_lookup()
71 return est; in xt_rateest_lookup()
125 if (est) { in xt_rateest_tg_checkentry()
137 info->est = est; in xt_rateest_tg_checkentry()
142 est = kzalloc(sizeof(*est), GFP_KERNEL); in xt_rateest_tg_checkentry()
143 if (!est) in xt_rateest_tg_checkentry()
146 strlcpy(est->name, info->name, sizeof(est->name)); in xt_rateest_tg_checkentry()
157 ret = gen_new_estimator(&est->bstats, NULL, &est->rate_est, in xt_rateest_tg_checkentry()
162 info->est = est; in xt_rateest_tg_checkentry()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/net/netfilter/
H A Dxt_RATEEST.c55 est->refcnt++; in __xt_rateest_lookup()
56 return est; in __xt_rateest_lookup()
71 return est; in xt_rateest_lookup()
125 if (est) { in xt_rateest_tg_checkentry()
137 info->est = est; in xt_rateest_tg_checkentry()
142 est = kzalloc(sizeof(*est), GFP_KERNEL); in xt_rateest_tg_checkentry()
143 if (!est) in xt_rateest_tg_checkentry()
146 strlcpy(est->name, info->name, sizeof(est->name)); in xt_rateest_tg_checkentry()
157 ret = gen_new_estimator(&est->bstats, NULL, &est->rate_est, in xt_rateest_tg_checkentry()
162 info->est = est; in xt_rateest_tg_checkentry()
[all …]
/dports/misc/py-gluoncv/gluon-cv-0.9.0/tests/auto/
H A Dtest_auto_estimators.py32 res = est.fit(IMAGE_CLASS_DATASET)
34 test_result = est.predict(IMAGE_CLASS_TEST)
36 feature = est.predict_feature(IMAGE_CLASS_TEST)
46 res = est.fit(IMAGE_CLASS_DATASET)
48 feat = est.predict_feature(IMAGE_CLASS_TEST)
49 est.save('test_image_classification.pkl')
51 test_result = est.predict(IMAGE_CLASS_TEST)
58 res = est.fit(OBJECT_DETECTION_TRAIN)
66 res = est.fit(OBJECT_DETECTION_TRAIN)
74 res = est.fit(OBJECT_DETECTION_TRAIN)
[all …]
/dports/sysutils/kubectl/kubernetes-1.22.2/pkg/controller/util/endpointslice/
H A Dendpointslice_tracker.go57 est.lock.Lock()
58 defer est.lock.Unlock()
72 est.lock.Lock()
73 defer est.lock.Unlock()
90 est.lock.Lock()
91 defer est.lock.Unlock()
121 est.lock.Lock()
122 defer est.lock.Unlock()
135 est.lock.Lock()
145 est.lock.Lock()
[all …]
/dports/cad/alliance/alliance/src/documentation/alliance-examples/mipsR3000/asm/
H A Dres_test49 Pas d'erreur ! La chance est avec vous...
52 Pas d'erreur ! La chance est avec vous...
55 Pas d'erreur ! La chance est avec vous...
58 Pas d'erreur ! La chance est avec vous...
61 Pas d'erreur ! La chance est avec vous...
64 Pas d'erreur ! La chance est avec vous...
67 Pas d'erreur ! La chance est avec vous...
70 Pas d'erreur ! La chance est avec vous...
73 Pas d'erreur ! La chance est avec vous...
76 Pas d'erreur ! La chance est avec vous...
[all …]
/dports/science/py-scikit-learn/scikit-learn-1.0.2/sklearn/preprocessing/tests/
H A Dtest_discretization.py27 est.fit(X)
44 est.fit_transform(X)
52 est.fit_transform(X)
61 est.fit_transform(X)
110 for bin_edges, n_bins in zip(est.bin_edges_, est.n_bins_):
121 est.fit(X)
124 Xt = est.transform(X)
132 est.fit(X)
137 est.transform(X)
159 est.fit(X)
[all …]
/dports/biology/wise/wise2.4.1/src/models/
H A Dest_evidence.dy156 EstEvidence * est;
169 EstEvidence * est;
172 if( est->exon[est->len-1]->end == jposition ) {
182 EstEvidence * est;
202 EstEvidence * est;
216 EstEvidence * est;
254 EstEvidence * est;
275 EstEvidence * est;
317 EstEvidence * est;
344 EstEvidence * est;
[all …]
/dports/security/signify/outils-0.10/src/usr.bin/calendar/calendars/fr_FR.UTF-8/
H A Dcalendar.fetes20 * tant mieux pour lui, c'est voulu.
23 01/01 Aujourd'hui, c'est la St(e) Almaque.
26 01/02 Aujourd'hui, c'est la St(e) Vassili.
29 01/03 Aujourd'hui, c'est la St(e) Ginette.
32 01/04 Aujourd'hui, c'est la St(e) Robert.
35 01/06 Aujourd'hui, c'est la St(e) Mélaine.
41 01/08 Aujourd'hui, c'est la St(e) Lucien.
44 01/08 Aujourd'hui, c'est la St(e) Gudule.
71 01/19 Aujourd'hui, c'est la St(e) Canut.
95 02/01 Aujourd'hui, c'est la St(e) Ella.
[all …]
/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/tsa/vector_ar/tests/
H A Dvar.R18 get.coefs <- function(est) { argument
22 get.stderr <- function(est) { argument
41 names <- colnames(est$y)
42 K <- est$K
62 est <- VAR(data, p=p) functionVar
73 resid <- resid(est)
78 list(coefs=get.coefs(est),
80 obs=est$obs,
81 totobs=est$totobs,
82 type=est$type,
[all …]
/dports/multimedia/handbrake/fdk-aac-2.0.1/libSBRenc/src/
H A Dmh_det.cpp325 for (est = 0; est < noEstPerFrame; est++) { in calculateDetectorInput()
439 for (est = start; est < stop; est++) { in removeLowPassDetection()
535 for (est = start; est < stop; est++) { in transientCleanUp()
559 for (est = start; est < stop; est++) { in transientCleanUp()
576 for (est = start; est < stop; est++) { in transientCleanUp()
592 for (est = start; est < stop; est++) { in transientCleanUp()
599 for (est = start; est < stop; est++) { in transientCleanUp()
818 for (est = start; est < totNoEst; est++) { in detectionWithPrediction()
879 for (est = start; est < totNoEst; est++) { in detectionWithPrediction()
930 for (est = 0; est < totNoEst; est++) { in calculateCompVector()
[all …]
/dports/audio/fdk-aac/fdk-aac-2.0.2/libSBRenc/src/
H A Dmh_det.cpp325 for (est = 0; est < noEstPerFrame; est++) { in calculateDetectorInput()
439 for (est = start; est < stop; est++) { in removeLowPassDetection()
535 for (est = start; est < stop; est++) { in transientCleanUp()
559 for (est = start; est < stop; est++) { in transientCleanUp()
576 for (est = start; est < stop; est++) { in transientCleanUp()
592 for (est = start; est < stop; est++) { in transientCleanUp()
599 for (est = start; est < stop; est++) { in transientCleanUp()
818 for (est = start; est < totNoEst; est++) { in detectionWithPrediction()
879 for (est = start; est < totNoEst; est++) { in detectionWithPrediction()
930 for (est = 0; est < totNoEst; est++) { in calculateCompVector()
[all …]
/dports/misc/amanda-server/amanda-3.3.9/client-src/
H A Dsendsize.c424 for(est = est_list; est != NULL; est = est_next) { in main()
437 for(est = est_list; est != NULL; est = est->next) { in main()
475 for(est = est_list; est != NULL; est = est->next) { in main()
502 for(est = est_list; est != NULL; est = est->next) { in main()
551 for(est = est_list; est != NULL; est = est->next) { in main()
557 for(est = est_list; est != NULL; est = est->next) { in main()
732 est->qamname, est->qdirname, est->dle->spindle, est->dle->program); in calc_estimates()
796 est->qamname, est->qdirname, est->dle->program); in calc_estimates()
801 est->qamname, est->qdirname, est->dle->spindle); in calc_estimates()
924 est->est[level].needestimate = 0; in application_api_calc_estimate()
[all …]
/dports/misc/amanda-client/amanda-3.3.9/client-src/
H A Dsendsize.c424 for(est = est_list; est != NULL; est = est_next) { in main()
437 for(est = est_list; est != NULL; est = est->next) { in main()
475 for(est = est_list; est != NULL; est = est->next) { in main()
502 for(est = est_list; est != NULL; est = est->next) { in main()
551 for(est = est_list; est != NULL; est = est->next) { in main()
557 for(est = est_list; est != NULL; est = est->next) { in main()
732 est->qamname, est->qdirname, est->dle->spindle, est->dle->program); in calc_estimates()
796 est->qamname, est->qdirname, est->dle->program); in calc_estimates()
801 est->qamname, est->qdirname, est->dle->spindle); in calc_estimates()
924 est->est[level].needestimate = 0; in application_api_calc_estimate()
[all …]
/dports/cad/opencascade/opencascade-7.6.0/src/XSMessage/
H A DXSTEP.fr15 Raison : Ce fichier est protege en lecture.
91 Directory Entry : Le champ 5 (Level) est incorrect (Un pointeur ou un entier non nul est attendu).
94 Directory Entry : Le champ 6 (View) est incorrect (Un pointeur non nul est attendu).
97 : Directory Entry : Le champ 7 (Transformation Matrix) est incorrect (Un pointeur non nul est atten…
112 La liste d'associativites est incorrecte.
115 La liste de proprietes est incorrecte.
412 …Parameter Data : Le parametre 5 est invalide (Pointeur nul attendu lorsque le champ Form Number es…
532 …Parameter Data : Le parametre 3 est invalide (Pointeur nul attendu lorsque le champ Form Number es…
790 L'equation polynomiale est incorrecte.
820 La surface est fait periodique.
[all …]
/dports/games/libretro-picodrive/picodrive-600894e/pico/
H A Ddraw.c410 struct PicoEState *est) in DrawLayer() argument
1045 const struct PicoEState *est=&Pico.est; in PrepareSprites() local
1086 int y = (sy >= est->DrawScanline) ? sy : est->DrawScanline; in PrepareSprites()
1149 y = (sy >= est->DrawScanline) ? sy : est->DrawScanline; in PrepareSprites()
1361 struct PicoEState *est=&Pico.est; in DrawDisplay() local
1528 Pico.est.DrawLineDest = (char *)Pico.est.DrawLineDest + DrawLineDestIncrement; in DrawBlankedLine()
1564 Pico.est.DrawLineDest = (char *)Pico.est.DrawLineDest + DrawLineDestIncrement; in PicoLine()
1600 struct PicoEState *est = &Pico.est; in PicoDrawUpdateHighPal() local
1608 memcpy(est->HighPal + 0x40, est->HighPal, 0x40*2); in PicoDrawUpdateHighPal()
1609 memcpy(est->HighPal + 0x80, est->HighPal, 0x40*2); in PicoDrawUpdateHighPal()
[all …]
/dports/misc/elki/elki-release0.7.1-1166-gfb1fffdf3/elki-core-math/src/test/java/de/lmu/ifi/dbs/elki/math/statistics/distribution/estimator/meta/
H A DBestFitEstimatorTest.java39 BestFitEstimator est = new BestFitEstimator(); in init() local
42 est.momests = Arrays.asList(NormalMOMEstimator.STATIC); in init()
43 est.madests = Arrays.asList(NormalMADEstimator.STATIC); in init()
44 est.lmmests = Arrays.asList(NormalLMMEstimator.STATIC); in init()
47 return est; in init()
52 BestFitEstimator est = init(); in testNormalDistribution() local
69 BestFitEstimator est = init(); in testConstant() local
76 BestFitEstimator est = init(); in testExtreme() local
83 BestFitEstimator est = init(); in testEmpty() local
90 BestFitEstimator est = init(); in testInf() local
[all …]
/dports/games/kodi-addon-game.libretro.picodrive/game.libretro.picodrive-1.97.0.19-Matrix/depends/common/picodrive/pico/
H A Ddraw.c1395 const struct PicoEState *est=&Pico.est; in PrepareSprites() local
1445 y = (sy >= est->DrawScanline) ? sy : est->DrawScanline; in PrepareSprites()
1692 blockcpy_or(pd+8, est->HighCol+8, len, est->SonicPalCount*0x40); in FinalizeLine8bit()
1695 blockcpy_or(pd, est->HighCol+8, len, est->SonicPalCount*0x40); in FinalizeLine8bit()
1707 struct PicoEState *est=&Pico.est; in DrawDisplay() local
1918 struct PicoEState *est = &Pico.est; in PicoDrawSync() local
1930 if (est->DrawScanline <= to - blank_last_line && (est->rendstatus & in PicoDrawSync()
1953 struct PicoEState *est = &Pico.est; in PicoDrawUpdateHighPal() local
1968 blockcpy(est->HighPal+0x40, est->HighPal, 0x40*2); in PicoDrawUpdateHighPal()
1969 blockcpy(est->HighPal+0x80, est->HighPal, 0x80*2); in PicoDrawUpdateHighPal()
[all …]
/dports/net/freeswitch/freeswitch-1.10.3.-release/src/
H A Dswitch_estimators.c72 est -> val_estimate_last = 0 ; in switch_kalman_init()
73 est -> P_last = 0; in switch_kalman_init()
76 est -> K = 0; in switch_kalman_init()
77 est -> val_estimate = 0 ; in switch_kalman_init()
200 float P_temp = est->P_last + est->Q; in switch_kalman_estimate()
226 est->K = P_temp * (1.0/(P_temp + est->R)); in switch_kalman_estimate()
228 est->val_measured = measurement ; in switch_kalman_estimate()
229 val_estimate = val_temp_est + est->K * (est->val_measured - val_temp_est); in switch_kalman_estimate()
230 est->P = (1 - est->K) * P_temp; in switch_kalman_estimate()
232 est->P_last = est->P; in switch_kalman_estimate()
[all …]

12345678910>>...290