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

1 2 3 4 5

  /external/srec/srec/Semproc/include/
SR_SemprocDefinitions.h 207 #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)); \
  /packages/apps/Email/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...]
DeferredFileOutputStream.java 30 * threshold is reached, and only then commit it to disk. If the stream is
31 * closed before the threshold is reached, the data will not be written to
67 * The file to which output will be directed if the threshold is exceeded.
97 * specified threshold, and save data to a file beyond that point.
99 * @param threshold The number of bytes at which to trigger an event.
100 * @param outputFile The file to which data is saved beyond the threshold.
102 public DeferredFileOutputStream(int threshold, File outputFile)
104 super(threshold);
114 * specified threshold, and save data to a temporary file beyond that point.
116 * @param threshold The number of bytes at which to trigger an event.
    [all...]
  /frameworks/base/libs/rs/java/ImageProcessing/res/raw/
threshold.rs 8 float threshold;
42 float threshold = (Params->threshold * 255.f);
48 if (luminance > threshold) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
KeyDetector.java 73 public void setProximityThreshold(int threshold) {
74 mProximityThresholdSquare = threshold * threshold;
103 * index. The algorithm to determine the nearby keys depends on the threshold set by
  /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))
  /cts/tests/tests/app/src/android/app/cts/
ActivityManagerMemoryInfoTest.java 61 final long THRESHOLD = 500l;
62 mMemory.threshold = THRESHOLD;
71 assertEquals(THRESHOLD, values.threshold);
91 final long THRESHOLD = 500l;
92 mMemory.threshold = THRESHOLD;
101 assertEquals(THRESHOLD, result.threshold);
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/filefilter/
FileFilterUtils.java 174 * @param cutoff the time threshold
185 * @param cutoff the time threshold
198 * @param cutoffDate the time threshold
209 * @param cutoffDate the time threshold
223 * time is usesd as the threshold age of the files
235 * time is usesd as the threshold age of the files
248 * @param threshold the file size threshold
252 public static IOFileFilter sizeFileFilter(long threshold) {
253 return new SizeFileFilter(threshold);
    [all...]
  /dalvik/dx/src/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/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/base/libs/rs/java/ImageProcessing/src/com/android/rs/image/
ImageProcessingActivity.java 65 public float threshold; field in class:ImageProcessingActivity.Params
95 float threshold = mParams.threshold * 255.f; local
105 if (luminance > threshold) {
130 ((SeekBar) findViewById(R.id.threshold)).setOnSeekBarChangeListener(
134 mParams.threshold = progress / 100.0f;
200 sb.setScript(getResources(), R.raw.threshold);
215 params.threshold = 0.5f;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactMatcher.java 33 // Suggest to aggregate contacts if their match score is equal or greater than this threshold
36 // Automatically aggregate contacts if their match score is equal or greater than this threshold
39 // Automatically aggregate contacts if the match score is equal or greater than this threshold
84 * between the strings is below the threshold.
300 float threshold = emailBased local
303 if (distance > threshold) {
352 public List<Long> prepareSecondaryMatchCandidates(int threshold) {
362 if (s >= threshold) {
374 * Returns the contactId with the best match score over the specified threshold or -1
377 public long pickBestMatch(int threshold, boolean allowMultipleMatches)
    [all...]
  /external/iptables/extensions/
libip6t_NFLOG.c 21 { "nflog-threshold", 1, 0, NFLOG_THRESHOLD },
29 " --nflog-threshold NUM Message threshold of in-kernel queue\n"
39 info->threshold = XT_NFLOG_DEFAULT_THRESHOLD;
98 "Can't specify --nflog-threshold twice");
102 "Invalid --nflog-threshold, must be >= 1");
103 info->threshold = n;
125 if (info->threshold != XT_NFLOG_DEFAULT_THRESHOLD)
126 printf("%snflog-threshold %u ", prefix, info->threshold);
    [all...]
libipt_NFLOG.c 21 { "nflog-threshold", 1, 0, NFLOG_THRESHOLD },
29 " --nflog-threshold NUM Message threshold of in-kernel queue\n"
39 info->threshold = XT_NFLOG_DEFAULT_THRESHOLD;
98 "Can't specify --nflog-threshold twice");
102 "Invalid --nflog-threshold, must be >= 1");
103 info->threshold = n;
125 if (info->threshold != XT_NFLOG_DEFAULT_THRESHOLD)
126 printf("%snflog-threshold %u ", prefix, info->threshold);
    [all...]
  /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/vm/compiler/codegen/arm/armv5te/
ArchVariant.c 54 gDvmJit.threshold = 200;
  /dalvik/vm/compiler/codegen/arm/armv5te-vfp/
ArchVariant.c 54 gDvmJit.threshold = 200;
  /dalvik/vm/compiler/codegen/arm/armv7-a/
ArchVariant.c 49 gDvmJit.threshold = 40;
  /dalvik/vm/compiler/codegen/arm/armv7-a-neon/
ArchVariant.c 49 gDvmJit.threshold = 40;
  /dalvik/vm/mterp/
Mterp.c 83 glue->jitThreshold = gDvmJit.threshold;
  /frameworks/base/media/libstagefright/codecs/aacenc/inc/
tns.h 71 Word16 threshold; /* min. prediction gain for using tns TABUL * 100 */ member in struct:__anon9314
  /external/chromium/base/
mime_util_linux.cc 87 Threshold
91 type(Threshold),
94 threshold(2) {
100 size_t threshold; // Maximum difference from desired size. 2 by default. member in class:__anon2364::IconTheme::SubDirInfo
291 else if (value == "Threshold")
292 current_info->type = SubDirInfo::Threshold;
297 } else if (key == "Threshold") {
298 current_info->threshold = atoi(value.c_str());
325 if (size >= info->size - info->threshold &&
326 size <= info->size + info->threshold) {
    [all...]
  /external/freetype/src/autofit/
afcjk.c 810 /* with a different threshold */
901 FT_Pos threshold = 64; local
910 threshold = 64 - AF_LIGHT_MODE_MAX_HORZ_GAP;
912 threshold = 64 - AF_LIGHT_MODE_MAX_VERT_GAP;
917 threshold = 64 - AF_LIGHT_MODE_MAX_HORZ_GAP / 3;
919 threshold = 64 - AF_LIGHT_MODE_MAX_VERT_GAP / 3;
941 if ( cur_len <= threshold )
954 if ( threshold < 64 )
956 if ( d_off1 >= threshold || u_off1 >= threshold ||
    [all...]
  /libcore/luni/src/main/java/java/util/
IdentityHashMap.java 61 transient int threshold; field in class:IdentityHashMap
64 * default threshold value that an IdentityHashMap created using the default
256 threshold = getThreshold(maxSize);
264 // assign the threshold to maxSize initially, this will change to a
270 int arraySize = (int) (((long) threshold * 10000) / loadFactor) * 2;
272 // leads to overflow and negative arraySize if threshold is too big
465 if (++size > threshold) {
517 threshold = (int) ((long) (elementData.length / 2) * loadFactor / 10000);
803 threshold = getThreshold(DEFAULT_MAX_SIZE);

Completed in 188 milliseconds

1 2 3 4 5