Searched refs:threshold (Results 1 - 25 of 118) sorted by relevance

12345

/external/valgrind/main/drd/tests/
H A Dannotate_rwlock_hg.stderr.exp1 Total error count is below threshold.
/external/webrtc/src/modules/audio_processing/aecm/main/matlab/
H A DgetBspectrum.m1 function bspectrum=getBspectrum(ps,threshold,bandfirst,bandlast)
2 % function bspectrum=getBspectrum(ps,threshold,bandfirst,bandlast)
3 % compute binary spectrum using threshold spectrum as pivot
6 % threshold=threshold spectrum (float)
11 if( length(ps)<bandlast | bandlast>32 | length(ps)~=length(threshold))
16 diff = ps - threshold;
/external/webrtc/src/modules/audio_processing/aecm/main/matlab/matlab/
H A DgetBspectrum.m1 function bspectrum=getBspectrum(ps,threshold,bandfirst,bandlast)
2 % function bspectrum=getBspectrum(ps,threshold,bandfirst,bandlast)
3 % compute binary spectrum using threshold spectrum as pivot
6 % threshold=threshold spectrum (float)
11 if( length(ps)<bandlast | bandlast>32 | length(ps)~=length(threshold))
16 diff = ps - threshold;
H A Dalign.m12 THReSHoLD = 2.0; % ADJUSTABLE threshold factor; 4.0 seems good
58 threshold = valuen + (max(delayStruct.new(:,i)) - valuen)/4;
59 thIndex = find(delayStruct.new(:,i) <= threshold);
77 threshold = THReSHoLD*std(delayStruct.new(:,i)); % set updata threshold
78 if ((-valuen > threshold) | (i < delayStruct.smlength)) % see if you want to update delay
90 plot([1:length(delayStructNew.new(:,i))],delayStructNew.new(:,i),trueDelay*[1 1],[min(delayStructNew.new(:,i)),max(delayStructNew.new(:,i))],'r',[1 length(delayStructNew.new(:,i))],threshold*[1 1],'r:', 'LineWidth',2);
/external/srec/srec/Semproc/include/
H A DSR_SemprocDefinitions.h207 #define MEMCHK(rc, val, threshold) \
209 if(val > threshold) \
212 PLogError(L("%s: %d > %d\n"), ESR_rc2str(rc), (val), (threshold)); \
216 #define LENCHK(rc, val, threshold) \
218 if(LSTRLEN(val) > threshold) \
221 PLogError(L("%s: %s > %d\n"), ESR_rc2str(rc), (val), (threshold)); \
/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/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/oprofile/pp/
H A Dopannotate_options.h33 extern double threshold;
H A Dcommon_option.cpp30 double threshold = 0.0; member in namespace:options
55 double handle_threshold(string threshold) argument
59 if (threshold.length()) {
60 istringstream ss(threshold);
62 cerr << "illegal threshold value: " << threshold
68 cerr << "illegal threshold value: " << threshold
74 cverb << vdebug << "threshold: " << value << endl;;
176 options::threshold member in class:__anon7679::options
[all...]
H A Dcommon_option.h24 extern double 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/oprofile/libpp/
H A Dcallgraph_container.h62 void process(count_array_t total, double threshold,
84 * Sort and threshold callers and callees.
86 void process_children(cg_symbol & sym, double threshold);
111 * @param threshold ignore sample percent below this threshold
120 double threshold, bool merge_lib,
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;
H A Dprofile_container.cpp169 double const threshold = choice.threshold / 100.0; local
182 if (percent >= threshold) {
194 profile_container::select_filename(double threshold) const
198 threshold /= 100.0;
239 if (cit->percent >= 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;
H A Dreferrer.h64 // if the result is still greater than the given threshold.
65 bool Trim(double reduce_rate, double threshold);
114 // Returns true if expected use rate is greater than the threshold.
115 bool Trim(double reduce_rate, double threshold);
/external/iptables/extensions/
H A Dlibxt_NFLOG.c26 {.name = "nflog-threshold", .id = O_THRESHOLD, .type = XTTYPE_UINT16,
27 .flags = XTOPT_PUT, XTOPT_POINTER(s, threshold)},
37 " --nflog-threshold NUM Message threshold of in-kernel queue\n"
45 info->threshold = XT_NFLOG_DEFAULT_THRESHOLD;
70 if (info->threshold != XT_NFLOG_DEFAULT_THRESHOLD)
71 printf(" %snflog-threshold %u", prefix, info->threshold);
/external/chromium/chrome/browser/history/
H A Dhistory_types_unittest.cc171 const base::Time& threshold(AutocompleteAgeThreshold());
175 EXPECT_FALSE(RowQualifiesAsSignificant(url_row, threshold));
178 EXPECT_TRUE(RowQualifiesAsSignificant(url_row, threshold));
181 EXPECT_FALSE(RowQualifiesAsSignificant(url_row, threshold));
184 EXPECT_TRUE(RowQualifiesAsSignificant(url_row, threshold));
187 EXPECT_FALSE(RowQualifiesAsSignificant(url_row, threshold));
190 EXPECT_TRUE(RowQualifiesAsSignificant(url_row, threshold));
194 EXPECT_FALSE(RowQualifiesAsSignificant(url_row, threshold));
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/opencv/cvaux/include/
H A Dcvaux.hpp87 bool set_threshold( int threshold ) // threshold applied to the histogram bins
88 { m_threshold = threshold; return true; }
/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/llvm/include/llvm/Support/
H A DAllocator.h98 /// SizeThreshold - For any allocation larger than this threshold, we should
140 BumpPtrAllocator(size_t size = 4096, size_t threshold = 4096,
192 SpecificBumpPtrAllocator(size_t size = 4096, size_t threshold = 4096,
194 : Allocator(size, threshold, allocator) {}
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DUDPMessageProcessor.java213 float threshold = ((float)(messageQueue.size() - LOWAT))/ ((float)(HIGHWAT - LOWAT));
214 boolean decision = Math.random() > 1.0 - threshold;
217 sipStack.getStackLogger().logDebug("Dropping message with probability " + (1.0 - threshold));

Completed in 1405 milliseconds

12345