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

1 2 3 4 5 6 7 8 9

  /external/chromium_org/ui/views/
view_win.cc 15 static int threshold = -1; local
16 if (threshold == -1)
17 threshold = GetSystemMetrics(SM_CXDRAG) / 2;
18 return threshold;
22 static int threshold = -1; local
23 if (threshold == -1)
24 threshold = GetSystemMetrics(SM_CYDRAG) / 2;
25 return threshold;
  /external/chromium_org/chrome/browser/extensions/api/idle/
idle_api.cc 19 int ClampThreshold(int threshold) {
20 if (threshold < kMinThreshold) {
21 threshold = kMinThreshold;
22 } else if (threshold > kMaxThreshold) {
23 threshold = kMaxThreshold;
26 return threshold;
34 int threshold; local
35 EXTENSION_FUNCTION_VALIDATE(args_->GetInteger(0, &threshold));
36 threshold = ClampThreshold(threshold);
51 int threshold; local
56 ->SetThreshold(extension_id(), threshold); local
    [all...]
idle_manager.h 37 int threshold; member in struct:extensions::IdleMonitor
87 void QueryState(int threshold, QueryStateCallback notify);
88 void SetThreshold(const std::string& extension_id, int threshold);
  /external/srec/srec/clib/
voicing.c 60 int threshold; local
96 threshold = (chan->b1 + (SHIFT_DOWN(
101 if (enval > (threshold + chan->margin))
108 if (enval > (threshold + chan->fast_margin))
113 if (enval <= (threshold + chan->quiet_margin))
  /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 ) {
  /external/chromium_org/media/base/
audio_timestamp_helper.cc 61 double threshold = microseconds_per_frame_ / 2; local
63 (delta_from_base.InMicroseconds() + threshold) / microseconds_per_frame_;
  /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/iptables/include/linux/netfilter/
xt_NFLOG.h 14 __u16 threshold; member in struct:xt_nflog_info
  /external/libvpx/libvpx/test/
set_roi.cc 35 unsigned int threshold[MAX_MB_SEGMENTS] = { 0, 100, 200, 300 }; local
73 threshold);
108 if (threshold[i] != breakout) {
109 EXPECT_EQ(threshold[i], breakout)
110 << "breakout threshold error";
141 delta_lf, threshold);
151 rand_deltas, threshold);
163 delta_lf, threshold);
170 delta_lf, threshold);
175 delta_lf, threshold);
    [all...]
  /external/oprofile/libpp/
profile_container.h 90 : hints(cf_none), threshold(0.0), match_image(false) {}
94 /// percentage threshold
95 double threshold; member in struct:profile_container::symbol_choice
115 std::vector<debug_name_id> const select_filename(double threshold) const;
  /external/robolectric/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/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter/
xt_NFLOG.h 12 u_int16_t threshold; member in struct:xt_nflog_info
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/
xt_NFLOG.h 12 u_int16_t threshold; member in struct:xt_nflog_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/
xt_NFLOG.h 12 u_int16_t threshold; member in struct:xt_nflog_info
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
DynamicsCompressorNode.cpp 50 m_threshold = AudioParam::create(context, "threshold", -24, -100, 0);
70 float threshold = m_threshold->value(); local
76 m_dynamicsCompressor->setParameterValue(DynamicsCompressor::ParamThreshold, threshold);
DynamicsCompressorNode.h 52 AudioParam* threshold() { return m_threshold.get(); } function in class:WebCore::DynamicsCompressorNode
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
prune.h 33 // Pruning threshold.
34 Weight threshold; member in class:fst::PruneOptions
46 : threshold(t), filter(f), idistance(id), fdistance(fd) {}
53 // 'opts.threshold' Times() the weight of the shortest path. Weights
90 Weight ceiling = Times((*fdistance)[fst->Start()], opts.threshold);
123 // the pruning threshold as an argument. Delete states and arcs in
125 // more than 'opts.threshold' Times() the weight of the shortest
128 void Prune(MutableFst<Arc> *fst, typename Arc::Weight threshold) {
129 PruneOptions<Arc, AnyArcFilter<Arc> > opts(threshold, AnyArcFilter<Arc>());
137 // 'ifst' whose weight is no more than 'opts.threshold' Times() th
    [all...]
  /frameworks/compile/mclinker/lib/Support/
Space.cpp 46 const size_t threshold = (PageSize*3)/4; // 3/4 page size in Linux local
47 if (pLength < threshold)
  /hardware/invensense/60xx/mlsdk/mllite/
compass.h 58 float threshold; member in struct:yas_thresh_filter
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
ThresholdingOutputStream.java 27 * stream type when the threshold is exceeded.
33 * NOTE: This implementation may trigger the event <em>before</em> the threshold
35 * cause the threshold to be exceeded.
49 * The threshold at which the event will be triggered.
51 private int threshold; field in class:ThresholdingOutputStream
61 * Whether or not the configured threshold has been exceeded.
71 * specified threshold.
73 * @param threshold The number of bytes at which to trigger an event.
75 public ThresholdingOutputStream(int threshold)
77 this.threshold = threshold;
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_idle_api.cc 47 static IdleState CalculateIdleStateAndUpdateTimestamp(int threshold);
49 static IdleState ThrottledCalculateIdleState(int threshold, Profile* profile);
87 IdleState CalculateIdleStateAndUpdateTimestamp(int threshold) {
89 return CalculateIdleState(threshold);
99 IdleState ThrottledCalculateIdleState(int threshold, Profile* profile) {
104 // Only allow one check per threshold.
107 if (delta < threshold)
111 polling_data.state = CalculateIdleStateAndUpdateTimestamp(threshold);
138 int threshold; local
139 EXTENSION_FUNCTION_VALIDATE(args_->GetInteger(0, &threshold));
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/util/
histogram.cc 74 double threshold = num_ * (p / 100.0); local
78 if (sum >= threshold) {
84 double pos = (threshold - left_sum) / (right_sum - left_sum);
  /external/webrtc/src/modules/audio_processing/utility/
delay_estimator.c 260 // i) an adaptive threshold |minimum_probability|, or
267 // The "hard" threshold can't be lower than 17 (in Q9).
271 int32_t threshold = value_best_candidate + kProbabilityOffset; local
272 if (threshold < kProbabilityLowerLimit) {
273 threshold = kProbabilityLowerLimit;
275 if (handle->minimum_probability > threshold) {
276 handle->minimum_probability = threshold;
  /external/chromium_org/chrome/browser/chromeos/attestation/
attestation_policy_observer.cc 220 const base::TimeDelta threshold = local
222 if ((base::Time::Now() + threshold) > x509->valid_expiry()) {

Completed in 513 milliseconds

1 2 3 4 5 6 7 8 9