HomeSort by relevance Sort by last modified time
    Searched refs:threshold (Results 26 - 50 of 270) sorted by null

12 3 4 5 6 7 8 91011

  /external/chromium/chrome/browser/history/
history_types_unittest.cc 171 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));
history_database.cc 225 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) {
238 threshold.ToInternalValue());
239 cached_early_expiration_threshold_ = threshold;
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SsaConverter.java 66 * registers above a certain threshold number.
69 * @param threshold registers below this number are unchanged
71 public static void updateSsaMethod(SsaMethod ssaMeth, int threshold) {
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].set(bi)
    [all...]
SsaRenamer.java 76 private int threshold; field in class:SsaRenamer
111 threshold = 0;
147 * Constructs an instance of the renamer with threshold set
155 threshold = thresh;
239 * Returns true if this SSA register is below the specified threshold.
241 * for registers above a certain threshold.
244 * @return {@code true} if its register number is below the threshold
247 return ssaReg < threshold;
541 threshold == 0) {
550 threshold == 0)
    [all...]
  /external/opencv/cvaux/include/
cvaux.hpp 87 bool set_threshold( int threshold ) // threshold applied to the histogram bins
88 { m_threshold = threshold; return true; }
  /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/av/include/common_time/
ICommonTimeConfig.h 50 virtual status_t getPanicThreshold(int *threshold) = 0;
51 virtual status_t setPanicThreshold(int threshold) = 0;
  /frameworks/base/services/common_time/
common_time_config_service.h 44 virtual status_t getPanicThreshold(int *threshold);
45 virtual status_t setPanicThreshold(int threshold);
  /external/oprofile/pp/
common_option.cpp 30 double threshold = 0.0; member in namespace:options
55 double handle_threshold(string threshold)
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 = handle_threshold(options::threshold_opt) member in class:__anon10206::options
    [all...]
common_option.h 24 extern double threshold;
  /dalvik/vm/compiler/codegen/x86/ia32/
ArchVariant.cpp 55 gDvmJit.threshold = 200;
  /hardware/invensense/mlsdk/mllite/
compass.h 58 float threshold; member in struct:yas_thresh_filter
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
ContactMatcher.java 37 // Suggest to aggregate contacts if their match score is equal or greater than this threshold
40 // Automatically aggregate contacts if their match score is equal or greater than this threshold
43 // Automatically aggregate contacts if the match score is equal or greater than this threshold
88 * between the strings is below the threshold.
320 float threshold = emailBased local
323 if (distance > threshold) {
372 public List<Long> prepareSecondaryMatchCandidates(int threshold) {
382 if (s >= threshold) {
394 * Returns the contactId with the best match score over the specified threshold or -1
399 public long pickBestMatch(int threshold, boolean allowMultipleMatches)
    [all...]
  /cts/tests/tests/holo/src/android/holo/cts/
LayoutTestActivity.java 166 final int threshold = 2; local
167 mSame = compareTo(mBitmap, mReferenceBitmap, threshold);
172 * or equal to +/-threshold
174 private boolean compareTo(Bitmap bitmap, Bitmap reference, int threshold) {
198 if (Math.abs(db) > threshold ||
199 Math.abs(dg) > threshold ||
200 Math.abs(dr) > threshold) {
205 if (Math.abs(da) > threshold) {
  /frameworks/av/media/common_time/
ICommonTimeConfig.cpp 245 virtual status_t getPanicThreshold(int *threshold) {
254 *threshold = reply.readInt32();
261 virtual status_t setPanicThreshold(int threshold) {
264 data.writeInt32(threshold);
461 int threshold; local
462 status_t status = getPanicThreshold(&threshold);
465 reply->writeInt32(threshold);
472 int threshold = data.readInt32(); local
473 status_t status = setPanicThreshold(threshold);
  /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;
  /frameworks/base/media/java/android/media/videoeditor/
AudioTrack.java 111 * @param threshold Ducking will be activated when the relative energy in
458 * @param threshold Ducking will be activated when the energy in
465 public void enableDucking(int threshold, int duckedTrackVolume) {
466 if (threshold < 0 || threshold > 90) {
467 throw new IllegalArgumentException("Invalid threshold value: " + threshold);
480 mDuckingThreshold = threshold;
495 * Get the ducking threshold.
497 * @return The ducking threshold
    [all...]
  /external/llvm/include/llvm/Support/
Allocator.h 98 /// 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/
UDPMessageProcessor.java 213 float threshold = ((float)(messageQueue.size() - LOWAT))/ ((float)(HIGHWAT - LOWAT)); local
214 boolean decision = Math.random() > 1.0 - threshold;
217 sipStack.getStackLogger().logDebug("Dropping message with probability " + (1.0 - threshold));
  /dalvik/dx/src/com/android/dx/ssa/
SsaRenamer.java 76 private int threshold; field in class:SsaRenamer
111 threshold = 0;
147 * Constructs an instance of the renamer with threshold set
155 threshold = thresh;
239 * Returns true if this SSA register is below the specified threshold.
241 * for registers above a certain threshold.
244 * @return {@code true} if its register number is below the threshold
247 return ssaReg < threshold;
541 threshold == 0) {
550 threshold == 0)
    [all...]
  /external/oprofile/libpp/
profile_container.cpp 169 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/valgrind/main/massif/tests/
thresholds_0_10.post.exp 3 Massif arguments: --stacks=no --time-unit=B --heap-admin=0 --threshold=0 --massif-out-file=massif.out --ignore-fn=__part_load_locale --ignore-fn=__time_load_locale --ignore-fn=dwarf2_unwind_dyld_add_image_hook --ignore-fn=get_or_create_key_element
4 ms_print arguments: massif.out --threshold=10
53 | ->06.50% (5,200B) in 3+ places, all below ms_print's threshold (10.00%)
58 | ->13.00% (10,400B) in 3+ places, all below ms_print's threshold (10.00%)
60 ->00.50% (400B) in 1+ places, all below ms_print's threshold (10.00%)
thresholds_10_0.post.exp 3 Massif arguments: --stacks=no --time-unit=B --heap-admin=0 --threshold=10 --massif-out-file=massif.out --ignore-fn=__part_load_locale --ignore-fn=__time_load_locale --ignore-fn=dwarf2_unwind_dyld_add_image_hook --ignore-fn=get_or_create_key_element
4 ms_print arguments: massif.out --threshold=0
53 | ->06.50% (5,200B) in 3 places, all below massif's threshold (10.00%)
58 | ->13.00% (10,400B) in 3 places, all below massif's threshold (10.00%)
60 ->00.50% (400B) in 1 place, below massif's threshold (10.00%)
thresholds_10_10.post.exp 3 Massif arguments: --stacks=no --time-unit=B --heap-admin=0 --threshold=10 --massif-out-file=massif.out --ignore-fn=__part_load_locale --ignore-fn=__time_load_locale --ignore-fn=dwarf2_unwind_dyld_add_image_hook --ignore-fn=get_or_create_key_element
4 ms_print arguments: massif.out --threshold=10
53 | ->06.50% (5,200B) in 1+ places, all below ms_print's threshold (10.00%)
58 | ->13.00% (10,400B) in 3 places, all below massif's threshold (10.00%)
60 ->00.50% (400B) in 1+ places, all below ms_print's threshold (10.00%)
thresholds_5_0.post.exp 3 Massif arguments: --stacks=no --time-unit=B --heap-admin=0 --threshold=5 --massif-out-file=massif.out --ignore-fn=__part_load_locale --ignore-fn=__time_load_locale --ignore-fn=dwarf2_unwind_dyld_add_image_hook --ignore-fn=get_or_create_key_element
4 ms_print arguments: massif.out --threshold=0
55 | ->01.50% (1,200B) in 2 places, all below massif's threshold (05.00%)
63 | ->04.00% (3,200B) in 2 places, all below massif's threshold (05.00%)
65 ->00.50% (400B) in 1 place, below massif's threshold (05.00%)

Completed in 8752 milliseconds

12 3 4 5 6 7 8 91011