Searched defs:threshold (Results 1 - 25 of 154) sorted by relevance

1234567

/external/chromium_org/ui/views/
H A Dview_win.cc15 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/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DBarrier.java36 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/chrome/browser/extensions/api/idle/
H A Didle_api.cc19 int ClampThreshold(int threshold) { argument
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);
52 int threshold; local
57 threshold); local
[all...]
H A Didle_manager.h37 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/
H A Dvoicing.c60 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/chromium_org/remoting/host/
H A Daudio_silence_detector.cc13 // Silence period threshold in seconds. Silence intervals shorter than this
20 AudioSilenceDetector::AudioSilenceDetector(int threshold) argument
21 : threshold_(threshold),
/external/clang/test/CodeGen/
H A D2008-08-07-AlignPadding1.c17 int threshold; member in struct:gc_generation
28 /* PyGC_Head, threshold, count */
H A Dunion-init.c17 int threshold; /* collection threshold */ member in struct:gc_generation
27 /* PyGC_Head, threshold, count */
/external/iptables/include/linux/netfilter/
H A Dxt_NFLOG.h14 __u16 threshold; member in struct:xt_nflog_info
/external/libvpx/libvpx/test/
H A Dset_roi.cc35 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/
H A Dprofile_container.h90 : 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/
H A DShadowAutoCompleteTextView.java19 private int threshold = 2; field in class:ShadowAutoCompleteTextView
34 return threshold;
38 public void setThreshold(int threshold) { argument
39 if (threshold <= 0) {
40 threshold = 1;
42 this.threshold = threshold;
/external/chromium_org/media/base/
H A Daudio_timestamp_helper.cc61 double threshold = microseconds_per_frame_ / 2; local
63 (delta_from_base.InMicroseconds() + threshold) / microseconds_per_frame_;
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DDynamicsCompressorNode.h52 AudioParam* threshold() { return m_threshold.get(); } function in class:WebCore::DynamicsCompressorNode
H A DDynamicsCompressorNode.cpp50 m_threshold = AudioParam::create(context, "threshold", -24, -100, 0);
70 float threshold = m_threshold->value(); local
76 m_dynamicsCompressor->setParameterValue(DynamicsCompressor::ParamThreshold, threshold);
/external/chromium/chrome/browser/net/
H A Dreferrer.cc106 bool Referrer::Trim(double reduce_rate, double threshold) { argument
109 if (!it->second.Trim(reduce_rate, threshold))
117 bool ReferrerValue::Trim(double reduce_rate, double threshold) { argument
119 return subresource_use_rate_ > threshold;
/external/chromium_org/chrome/browser/net/
H A Dreferrer.cc106 bool Referrer::Trim(double reduce_rate, double threshold) { argument
109 if (!it->second.Trim(reduce_rate, threshold))
117 bool ReferrerValue::Trim(double reduce_rate, double threshold) { argument
119 return subresource_use_rate_ > threshold;
/external/chromium_org/third_party/leveldatabase/src/util/
H A Dhistogram.cc74 double threshold = num_ * (p / 100.0); local
78 if (sum >= threshold) {
84 double pos = (threshold - left_sum) / (right_sum - left_sum);
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DSsaConverter.java66 * registers above a certain threshold number.
69 * @param threshold registers below this number are unchanged
71 public static void updateSsaMethod(SsaMethod ssaMeth, int threshold) { argument
73 placePhiFunctions(ssaMeth, localInfo, threshold);
74 new SsaRenamer(ssaMeth, threshold).run();
285 * @param threshold registers below this number are ignored
288 LocalVariableInfo localInfo, int threshold) {
295 regCount = ssaMeth.getRegCount() - threshold;
321 if (rs != null && rs.getReg() - threshold >= 0) {
322 defsites[rs.getReg() - threshold]
287 placePhiFunctions(SsaMethod ssaMeth, LocalVariableInfo localInfo, int threshold) argument
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dprune.h33 // 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) { argument
129 PruneOptions<Arc, AnyArcFilter<Arc> > opts(threshold, AnyArcFilter<Arc>());
137 // 'ifst' whose weight is no more than 'opts.threshold' Time
238 Prune(const Fst<Arc> &ifst, MutableFst<Arc> *ofst, typename Arc::Weight threshold) argument
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_idle_api.cc47 static IdleState CalculateIdleStateAndUpdateTimestamp(int threshold);
49 static IdleState ThrottledCalculateIdleState(int threshold, Profile* profile);
87 IdleState CalculateIdleStateAndUpdateTimestamp(int threshold) { argument
89 return CalculateIdleState(threshold);
99 IdleState ThrottledCalculateIdleState(int threshold, Profile* profile) { argument
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/chrome/browser/history/
H A Dhistory_database.cc225 int64 threshold;
226 if (!meta_table_.GetValue(kEarlyExpirationThresholdKey, &threshold)) {
229 threshold = 1L;
232 cached_early_expiration_threshold_ = base::Time::FromInternalValue(threshold);
236 void HistoryDatabase::UpdateEarlyExpirationThreshold(base::Time threshold) { argument
238 threshold.ToInternalValue());
239 cached_early_expiration_threshold_ = threshold;
/external/chromium_org/chrome/browser/chromeos/screensaver/
H A Dscreensaver_controller.cc133 void ScreensaverController::IdleNotify(int64 threshold) { argument
/external/chromium_org/content/browser/renderer_host/
H A Doverscroll_controller.cc151 // after the threshold.
192 float ratio, threshold; local
196 threshold = GetOverscrollConfig(OVERSCROLL_CONFIG_HORIZ_THRESHOLD_COMPLETE);
199 threshold = GetOverscrollConfig(OVERSCROLL_CONFIG_VERT_THRESHOLD_COMPLETE);
202 return ratio >= threshold;
317 // Do not include the threshold amount when sending the deltas to the
/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DIntMap.java50 private int size, mask, capacity, threshold; field in class:IntMap
75 this.threshold = (int) (capacity * loadFactor);
140 if (size++ >= threshold){
161 threshold = (int) (newCapacity * loadFactor);

Completed in 1365 milliseconds

1234567