Searched defs:threshold (Results 1 - 25 of 186) sorted by relevance

12345678

/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DBarrier.java36 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/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/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_NFLOG.h14 __u16 threshold; member in struct:xt_nflog_info
/external/kernel-headers/original/uapi/linux/netfilter_bridge/
H A Debt_nflog.h17 __u16 threshold; member in struct:ebt_nflog_info
/external/libvpx/libvpx/test/
H A Dset_roi.cc33 unsigned int threshold[MAX_MB_SEGMENTS] = { 0, 100, 200, 300 }; local
71 threshold);
106 if (threshold[i] != breakout) {
107 EXPECT_EQ(threshold[i], breakout)
108 << "breakout threshold error";
139 delta_lf, threshold);
149 rand_deltas, threshold);
161 delta_lf, threshold);
168 delta_lf, threshold);
173 delta_lf, threshold);
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAutoCompleteTextView.java19 private int threshold = 2; field in class:ShadowAutoCompleteTextView
34 return threshold;
38 public void setThreshold(int threshold) { argument
39 if (threshold <= 0) {
40 threshold = 1;
42 this.threshold = threshold;
/external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
H A DAppenderSkeleton.java31 public void setThreshold(Priority threshold) { argument
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace.cc93 static bool MatchPc(uptr cur_pc, uptr trace_pc, uptr threshold) { argument
94 return cur_pc - trace_pc <= threshold || trace_pc - cur_pc <= threshold;
106 // Use threshold to find PC in stack trace, as PC we want to unwind from may
/external/deqp/framework/common/
H A DtcuRGBA.cpp103 bool compareThresholdMasked (RGBA a, RGBA b, RGBA threshold, deUint32 cmpMask) argument
105 return computeAbsDiffMasked(a, b, cmpMask).isBelowThreshold(threshold);
H A DtcuRGBA.hpp137 inline bool compareThreshold (RGBA a, RGBA b, RGBA threshold) argument
140 return computeAbsDiff(a, b).isBelowThreshold(threshold);
152 bool compareThresholdMasked (RGBA a, RGBA b, RGBA threshold, deUint32 cmpMask);
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DSsaConverter.java66 * registers above a certain threshold number.
69 * @param threshold registers below this number are unchanged
71 public static void updateSsaMethod(SsaMethod ssaMeth, int threshold) { argument
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]
287 placePhiFunctions(SsaMethod ssaMeth, LocalVariableInfo localInfo, int threshold) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DCalendarCache.java29 threshold = (int)(arraySize * 0.75);
45 if (size >= threshold) {
117 private int threshold = (arraySize * 3) / 4; field in class:CalendarCache
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
H A DLevenbergMarquardtOptimizer.java159 * <li>{@link #setQRRankingThreshold(double) QR ranking threshold}: {@link MathUtils#SAFE_MIN}</li>
228 * Set the desired threshold for QR ranking.
230 * If the squared norm of a column vector is smaller or equal to this threshold
234 * @param threshold threshold for QR ranking
237 public void setQRRankingThreshold(final double threshold) { argument
238 this.qrRankingThreshold = threshold;
/external/deqp/modules/internal/
H A DditImageCompareTests.cpp110 BilinearCompareCase (tcu::TestContext& testCtx, const char* name, const char* refImg, const char* cmpImg, const tcu::RGBA& threshold, bool expectedResult) argument
114 , m_threshold (threshold)
/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DIntMap.java50 private int size, mask, capacity, threshold; field in class:IntMap
75 this.threshold = (int) (capacity * loadFactor);
140 if (size++ >= threshold){
161 threshold = (int) (newCapacity * loadFactor);
/external/llvm/bindings/ocaml/transforms/scalar_opts/
H A Dscalar_opts_ocaml.c173 CAMLprim value llvm_add_scalar_repl_aggregates_with_threshold(value threshold, argument
175 LLVMAddScalarReplAggregatesPassWithThreshold(PM, Int_val(threshold));
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
H A Dtgt.c260 void opj_tgt_encode(opj_bio_t *bio, opj_tgt_tree_t *tree, OPJ_UINT32 leafno, OPJ_INT32 threshold) { argument
281 while (low < threshold) {
300 OPJ_UINT32 opj_tgt_decode(opj_bio_t *bio, opj_tgt_tree_t *tree, OPJ_UINT32 leafno, OPJ_INT32 threshold) { argument
320 while (low < threshold && low < node->value) {
334 return (node->value < threshold) ? 1 : 0;
/external/webrtc/src/modules/audio_processing/utility/
H A Ddelay_estimator.c260 // 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;
/external/aac/libPCMutils/src/
H A Dlimiter.cpp98 FIXP_PCM threshold; member in struct:TDLimiter
117 INT_PCM threshold,
161 limiter->threshold = (FIXP_PCM)threshold;
239 FIXP_DBL threshold = FX_PCM2FX_DBL(limiter->threshold)>>TDL_GAIN_SCALING; local
288 /* set threshold as lower border to save calculations in running maximum algorithm */
289 tmp = fMax(tmp, threshold);
316 if (max > threshold) {
317 gain = fDivNorm(threshold, ma
114 createLimiter( unsigned int maxAttackMs, unsigned int releaseMs, INT_PCM threshold, unsigned int maxChannels, unsigned int maxSampleRate ) argument
491 setLimiterThreshold(TDLimiterPtr limiter, INT_PCM threshold) argument
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/
H A DRotation.java205 * threshold, then the matrix is considered to be too far from a
209 * @param threshold convergence threshold for the iterative
212 * correction is below this threshold)
216 * with the given threshold, or if the determinant of the resulting
220 public Rotation(double[][] m, double threshold) argument
232 double[][] ort = orthogonalizeMatrix(m, threshold);
948 * @param threshold convergence threshold for the iterative
951 * correction is below this threshold)
956 orthogonalizeMatrix(double[][] m, double threshold) argument
[all...]
/external/ceres-solver/internal/ceres/
H A Dincomplete_lq_factorization.cc131 const double threshold = drop_tolerance * max_value; local
135 if (fabs(dense_row[i]) > threshold) {
/external/deqp/modules/gles2/functional/
H A Des2fDepthTests.cpp177 const float threshold = 0.02f; local
178 bool imagesOk = tcu::fuzzyCompare(log, "ComparisonResult", "Image comparison result", refFrame, gles2Frame, threshold, tcu::COMPARE_LOG_RESULT);
H A Des2fRandomFragmentOpTests.cpp373 const tcu::UVec4 threshold = getCompareThreshold(); member in namespace:deqp::gles2::Functional
386 tcu::RGBA(threshold.x(), threshold.y(), threshold.z(), threshold.w()),
395 threshold,
416 return format.getColorThreshold().toIVec().asUint() + tcu::UVec4(2); // Default threshold.
419 * tcu::UVec4(5) + tcu::UVec4(2); // \note Non-scientific ad hoc formula. Need big threshold when few color bits; especially multiple blendings bring extra inaccuracy.

Completed in 2055 milliseconds

12345678