/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/deqp/framework/common/ |
tcuBilinearImageCompare.cpp | 106 bool comparePixelRGBA8 (const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const RGBA threshold, int x, int y) 119 if (compareThreshold(resPix, readRGBA8(reference, x1, y1), threshold) || 120 compareThreshold(resPix, readRGBA8(reference, x0, y1), threshold) || 121 compareThreshold(resPix, readRGBA8(reference, x2, y1), threshold) || 122 compareThreshold(resPix, readRGBA8(reference, x0, y0), threshold) || 123 compareThreshold(resPix, readRGBA8(reference, x1, y0), threshold) || 124 compareThreshold(resPix, readRGBA8(reference, x2, y0), threshold) || 125 compareThreshold(resPix, readRGBA8(reference, x0, y2), threshold) || 126 compareThreshold(resPix, readRGBA8(reference, x1, y2), threshold) || 127 compareThreshold(resPix, readRGBA8(reference, x2, y2), threshold)) [all...] |
/external/oprofile/pp/ |
opannotate_options.h | 33 extern double threshold;
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/ |
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/compiler-rt/lib/sanitizer_common/ |
sanitizer_stacktrace.cc | 63 static bool MatchPc(uptr cur_pc, uptr trace_pc, uptr threshold) { 64 return cur_pc - trace_pc <= threshold || trace_pc - cur_pc <= threshold; 76 // Use threshold to find PC in stack trace, as PC we want to unwind from may
|
/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/chromium_org/chrome/common/extensions/docs/examples/api/idle/idle_simple/ |
history.js | 39 threshold = parseInt(document.querySelector('#idle-threshold').value); 40 var dom_threshold = document.querySelector('#idle-set-threshold'); 41 dom_threshold.innerText = threshold; 43 // Request the state based off of the user-supplied threshold. 44 chrome.idle.queryState(threshold, function(state) { 77 // threshold is 15 seconds) so that the numbers appear to be counting up.
|
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensorverification/ |
MagnitudeVerification.java | 38 // sensorType: {expected, threshold} 55 * @param threshold the threshold 57 public MagnitudeVerification(float expected, float threshold) { 59 mThreshold = threshold; 74 Float threshold = DEFAULTS.get(sensorType)[1]; local 75 return new MagnitudeVerification(expected, threshold);
|
/external/chromium_org/ppapi/c/private/ |
ppb_testing_private.h | 135 * Sets the threshold size at which point we switch from transmitting 138 * (in order to have fast tests). Passing a value of 0 resets the threshold 139 * to its default. The threshold is in bytes. 142 uint32_t threshold);
|
/external/chromium_org/ppapi/proxy/ |
ppb_testing_proxy.h | 44 void OnMsgSetMinimumArrayBufferSizeForShmem(uint32_t threshold);
|
/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/libs/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);
|
common_time_config_service.h | 45 virtual status_t getPanicThreshold(int *threshold); 46 virtual status_t setPanicThreshold(int threshold);
|
/packages/apps/UnifiedEmail/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...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
fsrmquota.h | 313 STDMETHOD_(HRESULT,AddThreshold)(THIS_ FSRM_QUOTA_THRESHOLD threshold) PURE; 314 STDMETHOD_(HRESULT,DeleteThreshold)(THIS_ FSRM_QUOTA_THRESHOLD threshold) PURE; 315 STDMETHOD_(HRESULT,ModifyThreshold)(THIS_ FSRM_QUOTA_THRESHOLD threshold,FSRM_QUOTA_THRESHOLD newThreshold) PURE; 316 STDMETHOD_(HRESULT,CreateThresholdAction)(THIS_ FSRM_QUOTA_THRESHOLD threshold,FsrmActionType actionType,IFsrmAction **action) PURE; 317 STDMETHOD_(HRESULT,EnumThresholdActions)(THIS_ FSRM_QUOTA_THRESHOLD threshold,IFsrmCollection **actions) PURE; 339 #define IFsrmQuotaBase_AddThreshold(This,threshold) (This)->lpVtbl->AddThreshold(This,threshold) 340 #define IFsrmQuotaBase_DeleteThreshold(This,threshold) (This)->lpVtbl->DeleteThreshold(This,threshold) 341 #define IFsrmQuotaBase_ModifyThreshold(This,threshold,newThreshold) (This)->lpVtbl->ModifyThreshold(This,threshold,newThreshold [all...] |
/dalvik/dx/src/com/android/dx/ssa/ |
SsaConverter.java | 65 * registers above a certain threshold number. 68 * @param threshold registers below this number are unchanged 70 public static void updateSsaMethod(SsaMethod ssaMeth, int threshold) { 72 placePhiFunctions(ssaMeth, localInfo, threshold); 73 new SsaRenamer(ssaMeth, threshold).run(); 284 * @param threshold registers below this number are ignored 287 LocalVariableInfo localInfo, int threshold) { 294 regCount = ssaMeth.getRegCount() - threshold; 320 if (rs != null && rs.getReg() - threshold >= 0) { 321 defsites[rs.getReg() - threshold].set(bi) [all...] |
/external/chromium_org/media/base/ |
audio_timestamp_helper.cc | 61 double threshold = microseconds_per_frame_ / 2; local 63 (delta_from_base.InMicroseconds() + threshold) / microseconds_per_frame_;
|
/external/chromium_org/ppapi/api/private/ |
ppb_testing_private.idl | 126 * Sets the threshold size at which point we switch from transmitting 129 * (in order to have fast tests). Passing a value of 0 resets the threshold 130 * to its default. The threshold is in bytes. 133 [in] uint32_t 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...] |
/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;
|