HomeSort by relevance Sort by last modified time
    Searched defs:threshold (Results 1 - 25 of 714) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/tensorflow/tensorflow/contrib/tensor_forest/kernels/v4/
params_test.cc 62 auto* threshold = param.mutable_threshold(); local
63 threshold->set_on_value(100.0);
64 threshold->set_off_value(10.0);
65 threshold->set_threshold(5.0);
  /external/tensorflow/tensorflow/core/kernels/
softplus_op.h 36 // Choose a threshold on x below which exp(x) may underflow
41 static const T threshold = local
45 auto too_large = features > features.constant(-threshold);
48 auto too_small = features < features.constant(threshold);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
Barrier.java 36 protected int threshold; field in class:Barrier
40 threshold = t;
49 if ( count==threshold ) {
50 // notify blocked threads that threshold has been reached
54 else while ( count<threshold ) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
ProximityEvaluator.java 22 float threshold = 0.1f; local
24 threshold = 1.0f;
26 if (value >= threshold) evaluation += 2.0;
  /packages/apps/Dialer/java/com/android/incallui/answer/impl/classifier/
ProximityEvaluator.java 22 float threshold = 0.1f; local
23 if (value >= threshold) {
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_NFLOG.h 29 __u16 threshold; member in struct:xt_nflog_info
  /bionic/libc/kernel/uapi/linux/netfilter_bridge/
ebt_nflog.h 30 __u16 threshold; member in struct:ebt_nflog_info
  /external/clang/test/CodeGen/
2008-08-07-AlignPadding1.c 17 int threshold; member in struct:gc_generation
28 /* PyGC_Head, threshold, count */
union-init.c 17 int threshold; /* collection threshold */ member in struct:gc_generation
27 /* PyGC_Head, threshold, count */
  /external/flac/libFLAC/
stream_encoder_intrin_avx2.c 60 const unsigned threshold = 32 - FLAC__bitmath_ilog2(default_partition_samples); local
63 if(bps + FLAC__MAX_EXTRA_RESIDUAL_BPS < threshold) {
stream_encoder_intrin_ssse3.c 60 const unsigned threshold = 32 - FLAC__bitmath_ilog2(default_partition_samples); local
63 if(bps + FLAC__MAX_EXTRA_RESIDUAL_BPS < threshold) {
stream_encoder_intrin_sse2.c 71 const unsigned threshold = 32 - FLAC__bitmath_ilog2(default_partition_samples); local
74 if(bps + FLAC__MAX_EXTRA_RESIDUAL_BPS < threshold) {
  /external/iptables/include/linux/netfilter/
xt_NFLOG.h 18 __u16 threshold; member in struct:xt_nflog_info
  /external/kernel-headers/original/uapi/linux/netfilter/
xt_NFLOG.h 19 __u16 threshold; member in struct:xt_nflog_info
  /external/kernel-headers/original/uapi/linux/netfilter_bridge/
ebt_nflog.h 18 __u16 threshold; member in struct:ebt_nflog_info
  /external/libvpx/libvpx/test/
set_roi.cc 32 unsigned int threshold[MAX_MB_SEGMENTS] = { 0, 100, 200, 300 }; local
66 delta_q, delta_lf, threshold);
101 if (threshold[i] != breakout) {
102 EXPECT_EQ(threshold[i], breakout) << "breakout threshold error";
133 rand_deltas, delta_lf, threshold);
142 delta_q, rand_deltas, threshold);
152 cpi.common.mb_cols, delta_q, delta_lf, threshold);
157 cpi.common.mb_cols - 1, delta_q, delta_lf, threshold);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAutoCompleteTextView.java 19 private int threshold = 2; field in class:ShadowAutoCompleteTextView
34 return threshold;
38 public void setThreshold(int threshold) {
39 if (threshold <= 0) {
40 threshold = 1;
42 this.threshold = threshold;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter/
xt_NFLOG.h 14 __u16 threshold; member in struct:xt_nflog_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter_bridge/
ebt_nflog.h 17 __u16 threshold; member in struct:ebt_nflog_info
  /system/tpm/tpm_manager/server/
tpm2_status_test.cc 100 int threshold; local
104 &count, &threshold, &lockout, &seconds_remaining));
120 int threshold; local
123 EXPECT_TRUE(tpm_status_->GetDictionaryAttackInfo(&count, &threshold, &lockout,
126 EXPECT_EQ(threshold, lockout_threshold);
135 int threshold; local
138 EXPECT_TRUE(tpm_status_->GetDictionaryAttackInfo(&count, &threshold, &lockout,
  /art/tools/dexfuzz/src/dexfuzz/
Log.java 23 private static LogTag threshold = LogTag.ERROR; field in class:Log
37 threshold = tag;
41 return (threshold.ordinal() < LogTag.ERROR.ordinal());
65 if (tag.ordinal() >= threshold.ordinal()) {
  /cts/tests/sensor/src/android/hardware/cts/helpers/sensorverification/
StandardDeviationVerificationTest.java 49 float[] threshold = {2, 2, 4}; local
50 runVerification(threshold, values, true, standardDeviations);
52 threshold = new float[]{1, 2, 4};
53 runVerification(threshold, values, false, standardDeviations);
55 threshold = new float[]{2, 1, 4};
56 runVerification(threshold, values, false, standardDeviations);
58 threshold = new float[]{2, 2, 3};
59 runVerification(threshold, values, false, standardDeviations);
62 private void runVerification(float[] threshold, float[][] values, boolean pass,
65 StandardDeviationVerification verification = getVerification(threshold, values)
    [all...]
  /external/libxaac/decoder/
ixheaacd_ps_bitdec.c 256 WORD threshold; local
257 threshold = sub_d(MAX_NUM_COLUMNS, sub_d(ptr_ps_dec->num_env, e));
259 if (ptr_ps_dec->border_position[e] > threshold) {
260 ptr_ps_dec->border_position[e] = threshold;
262 threshold = add_d(ptr_ps_dec->border_position[e - 1], 1);
264 if (ptr_ps_dec->border_position[e] < threshold) {
265 ptr_ps_dec->border_position[e] = threshold;
  /external/libxcam/modules/ocl/
cl_retinex_handler.h 38 float threshold; member in struct:XCam::__anon26645
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
unary_ops.cc 166 xla::ComputationDataHandle threshold = local
171 xla::ComputationDataHandle too_large = b->Gt(features, b->Neg(threshold));
174 xla::ComputationDataHandle too_small = b->Lt(features, threshold);

Completed in 445 milliseconds

1 2 3 4 5 6 7 8 91011>>