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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/drd/tests/
annotate_rwlock_hg.stderr.exp 1 Total error count is below threshold.
  /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/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...]
  /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...]
  /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/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/chromium/chrome/browser/net/
referrer.h 64 // 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);
referrer.cc 106 bool Referrer::Trim(double reduce_rate, double threshold) {
109 if (!it->second.Trim(reduce_rate, threshold))
117 bool ReferrerValue::Trim(double reduce_rate, double threshold) {
119 return subresource_use_rate_ > threshold;
  /cts/tests/tests/app/src/android/app/cts/
ActivityManagerMemoryInfoTest.java 39 final long THRESHOLD = 500l;
40 mMemory.threshold = THRESHOLD;
49 assertEquals(THRESHOLD, values.threshold);
64 final long THRESHOLD = 500l;
65 mMemory.threshold = THRESHOLD;
74 assertEquals(THRESHOLD, result.threshold);
    [all...]
  /external/oprofile/pp/
opannotate_options.h 33 extern double threshold;
  /external/oprofile/libpp/
callgraph_container.h 62 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,
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/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))
  /libcore/luni/src/main/java/java/io/
SerializationHandleMap.java 35 private int threshold; field in class:SerializationHandleMap
39 this.threshold = 21; // Copied from IdentityHashMap.
40 int arraySize = (int) (((long) threshold * 10000) / LOAD_FACTOR);
103 if (++size > threshold) {
121 threshold = (int) ((long) (keys.length) * LOAD_FACTOR / 10000);
  /external/iptables/extensions/
libxt_NFLOG.c 26 {.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);
  /frameworks/base/core/java/com/android/internal/app/
IMediaContainerService.aidl 31 PackageInfoLite getMinimalPackageInfo(in String packagePath, in int flags, in long threshold);
32 boolean checkInternalFreeStorage(in Uri fileUri, boolean isForwardLocked, in long threshold);
  /frameworks/base/services/common_time/
common_time_config_service.cpp 92 status_t CommonTimeConfigService::getPanicThreshold(int *threshold) {
93 return mTimeServer.getPanicThreshold(threshold);
96 status_t CommonTimeConfigService::setPanicThreshold(int threshold) {
97 return mTimeServer.setPanicThreshold(threshold);
  /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...]

Completed in 880 milliseconds

1 2 3 4 5 6 7 8 91011>>