HomeSort by relevance Sort by last modified time
    Searched refs:est (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/libavc/encoder/arm/
ime_platform_macros.h 44 #define USADA8(src,est,sad) \
45 sad += ABS(src[0]-est[0]) + \
46 ABS(src[1]-est[1]) + \
47 ABS(src[2]-est[2]) + \
48 ABS(src[3]-est[3])
  /external/libavc/encoder/armv8/
ime_platform_macros.h 44 #define USADA8(src,est,sad) \
45 sad += ABS(src[0]-est[0]) + \
46 ABS(src[1]-est[1]) + \
47 ABS(src[2]-est[2]) + \
48 ABS(src[3]-est[3])
  /external/libavc/encoder/mips/
ime_platform_macros.h 45 #define USADA8(src,est,sad) \
46 sad += ABS(src[0]-est[0]) + \
47 ABS(src[1]-est[1]) + \
48 ABS(src[2]-est[2]) + \
49 ABS(src[3]-est[3])
  /external/libavc/encoder/x86/
ime_platform_macros.h 45 #define USADA8(src,est,sad) \
46 sad += ABS(src[0]-est[0]) + \
47 ABS(src[1]-est[1]) + \
48 ABS(src[2]-est[2]) + \
49 ABS(src[3]-est[3])
  /external/wpa_supplicant_8/hs20/server/ca/
est-csrattrs.sh 3 openssl asn1parse -genconf est-csrattrs.cnf -out est-csrattrs.der -oid hs20.oid
4 base64 est-csrattrs.der > est-attrs.b64
  /external/iproute2/tc/
tc_estimator.c 26 int tc_setup_estimator(unsigned int A, unsigned int time_const, struct tc_estimator *est)
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->ewma_log++)
    [all...]
m_estimator.c 34 fprintf(stderr, "Example: ... est 1sec 8sec\n");
37 int parse_estimator(int *p_argc, char ***p_argv, struct tc_estimator *est)
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);
tc_core.h 27 int tc_setup_estimator(unsigned A, unsigned time_const, struct tc_estimator *est);
  /external/javasqlite/src/main/java/SQLite/
Profile.java 14 * @param est estimated execution time in milliseconds.
17 public void profile(String stmt, long est);
  /external/grpc-grpc/test/core/transport/
bdp_estimator_test.cc 52 TEST(BdpEstimatorTest, NoOp) { BdpEstimator est("test"); }
55 BdpEstimator est("test");
56 est.EstimateBdp();
81 BdpEstimator est("test");
82 AddSample(&est, 100);
83 est.EstimateBdp();
87 BdpEstimator est("test");
88 AddSample(&est, 100);
89 AddSample(&est, 100);
90 est.EstimateBdp()
    [all...]
  /external/tensorflow/tensorflow/contrib/learn/python/learn/
experiment_test.py 206 est = TestCoreEstimator()
210 est,
217 est = TestCoreEstimator()
219 est,
223 est,
234 for est in self._estimators_for_tests():
235 if isinstance(est, core_estimator.Estimator):
242 est,
249 self.assertEqual(1, est.fit_count)
251 self.assertEqual(0, est.eval_count
    [all...]
  /external/tensorflow/tensorflow/python/data/experimental/kernel_tests/serialization/
checkpoint_input_pipeline_hook_test.py 69 def _build_iterator_saver_hook(self, est):
70 return iterator_ops.CheckpointInputPipelineHook(est)
77 est = estimator.Estimator(model_fn=self._model_fn)
79 est.train(_input_fn, steps=2, hooks=[self._build_iterator_saver_hook(est)])
80 self.assertSequenceEqual(self._read_vars(est.model_dir), (2, 1))
81 est.train(_input_fn, steps=2, hooks=[self._build_iterator_saver_hook(est)])
82 self.assertSequenceEqual(self._read_vars(est.model_dir), (4, 3))
91 est = estimator.Estimator(model_fn=self._model_fn
    [all...]
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_RATEEST.h 27 struct xt_rateest * est __attribute__((aligned(8))); member in struct:xt_rateest_target_info
  /external/iptables/include/linux/netfilter/
xt_RATEEST.h 12 struct xt_rateest *est __attribute__((aligned(8))); member in struct:xt_rateest_target_info
  /external/kernel-headers/original/uapi/linux/netfilter/
xt_RATEEST.h 14 struct xt_rateest *est __attribute__((aligned(8))); member in struct:xt_rateest_target_info
  /external/aac/libSBRenc/src/
mh_det.cpp 320 INT est; local
325 for (est = 0; est < noEstPerFrame; est++) {
326 diff(pQuotaBuffer[est + move], tonalityDiff[est + move], freqBandTable,
329 calculateFlatnessMeasure(pQuotaBuffer[est + move], indexVector,
330 pSfmOrig[est + move], pSfmSbr[est + move],
355 INT i, est; local
533 INT i, j, est; local
791 INT est = 0, i; local
914 INT scfBand, est, l, ll, lu, maxPosF, maxPosT; local
1038 int est; local
    [all...]
  /external/openssh/
fixprogs 42 ($cmd, $path, $est) = /^\"([^\"]+)\"\s+([\w\/_-]+)\s+([\d\.\-]+)/o;
66 $est = $rate / $entscale; # scale the estimate back
69 print OUT "\"$cmd\" $path $est\n";
  /external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
estimator_input_test.py 177 est = estimator.Estimator(model_fn=linear_model_fn, model_dir=output_dir)
180 est.fit(x=boston_input, y=float64_target, steps=50)
181 scores = est.evaluate(
187 del est
206 est = estimator.SKCompat(estimator.Estimator(model_fn=linear_model_fn))
208 est.fit(x=boston.data, y=float64_labels, steps=100)
209 scores = est.score(
215 predictions = np.array(list(est.predict(x=boston.data)))
223 est = estimator.Estimator(model_fn=linear_model_fn)
226 est.fit(x=boston_input, y=float64_target, steps=100
    [all...]
estimator_test.py 204 est = linear.LinearRegressor(feature_columns)
205 est.fit(input_fn=_input_fn, steps=20)
227 return est, serving_input_fn_with_asset
267 est = estimator.Estimator(model_fn=resource_constant_model_fn)
268 est.fit(input_fn=_input_fn, steps=1)
273 return est, serving_input_fn
350 est = estimator.Estimator(
353 est.fit(input_fn=_make_input_fn(features, labels), steps=1)
383 est = estimator.Estimator(
388 est.fit(input_fn=_make_input_fn(features, labels), steps=1
    [all...]
  /external/strace/
rtnl_tc.c 79 struct tc_estimator est; local
81 if (len < sizeof(est))
83 else if (!umove_or_printaddr(tcp, addr, &est)) {
84 PRINT_FIELD_D("{", est, interval);
85 PRINT_FIELD_U(", ", est, ewma_log);
124 struct gnet_stats_rate_est est; local
126 if (len < sizeof(est))
128 else if (!umove_or_printaddr(tcp, addr, &est)) {
129 PRINT_FIELD_U("{", est, bps);
130 PRINT_FIELD_U(", ", est, pps)
173 struct gnet_stats_rate_est64 est; local
    [all...]
  /external/strace/tests/
nlattr_tcmsg.c 111 static const struct tc_estimator est = { local
117 TCA_RATE, pattern, est,
118 PRINT_FIELD_D("{", est, interval);
119 PRINT_FIELD_U(", ", est, ewma_log);
  /external/strace/tests-m32/
nlattr_tcmsg.c 111 static const struct tc_estimator est = { local
117 TCA_RATE, pattern, est,
118 PRINT_FIELD_D("{", est, interval);
119 PRINT_FIELD_U(", ", est, ewma_log);
  /external/strace/tests-mx32/
nlattr_tcmsg.c 111 static const struct tc_estimator est = { local
117 TCA_RATE, pattern, est,
118 PRINT_FIELD_D("{", est, interval);
119 PRINT_FIELD_U(", ", est, ewma_log);
  /external/tensorflow/tensorflow/contrib/boosted_trees/estimator_batch/
dnn_tree_combined_estimator_test.py 152 est = estimator.CoreDNNBoostedTreeCombinedEstimator(
166 est.train(input_fn=_train_input_fn, steps=1000)
168 self._assert_checkpoint(est.model_dir, global_step=14)
169 res = est.evaluate(input_fn=_eval_input_fn, steps=1)
171 est.predict(input_fn=_eval_input_fn)
183 est = estimator.CoreDNNBoostedTreeCombinedEstimator(
197 est.train(input_fn=_train_input_fn, steps=1000)
198 res = est.evaluate(input_fn=_eval_input_fn, steps=1)
200 est.predict(input_fn=_eval_input_fn)
212 est = estimator.CoreDNNBoostedTreeCombinedEstimator
    [all...]
  /external/iproute2/examples/
cbqinit.eth1 21 # 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 \

Completed in 7550 milliseconds

1 2 3