/external/e2fsprogs/e2fsck/ |
dirinfo.c | 49 unsigned int threshold; local 58 "numdirs_threshold", 0, 0, &threshold); 63 (threshold && num_dirs <= threshold))
|
/external/eigen/Eigen/src/QR/ |
CompleteOrthogonalDecomposition.h | 101 * threshold for rank determination will be used. It is a short cut for: 230 * nonzero. For that, it uses the threshold value that you can control by 239 * nonzero. For that, it uses the threshold value that you can control by 248 * nonzero. For that, it uses the threshold value that you can control by 257 * nonzero. For that, it uses the threshold value that you can control by 266 * nonzero. For that, it uses the threshold value that you can control by 298 /** Allows to prescribe a threshold to be used by certain methods, such as 302 * When it needs to get the threshold value, Eigen calls threshold(). By 304 * threshold. Once you have called the present metho 339 RealScalar threshold() const { return m_cpqr.threshold(); } function in class:Eigen::CompleteOrthogonalDecomposition [all...] |
/external/eigen/Eigen/src/SVD/ |
JacobiSVD.h | 421 RealScalar threshold = numext::maxi<RealScalar>(considerAsZero, precision * maxDiagEntry); local 422 return abs(work_matrix.coeff(p,q))>threshold || abs(work_matrix.coeff(q,p)) > threshold; 713 RealScalar threshold = numext::maxi<RealScalar>(considerAsZero, precision * maxDiagEntry); local 714 if(abs(m_workMatrix.coeff(p,q))>threshold || abs(m_workMatrix.coeff(q,p)) > threshold) [all...] |
SVDBase.h | 127 * For that, it uses the threshold value that you can control by calling 135 RealScalar premultiplied_threshold = numext::maxi<RealScalar>(m_singularValues.coeff(0) * threshold(), (std::numeric_limits<RealScalar>::min)()); 141 /** Allows to prescribe a threshold to be used by certain methods, such as rank() and solve(), 145 * When it needs to get the threshold value, Eigen calls threshold(). 148 * \param threshold The new value to use as the threshold. 151 * \f$ \vert singular value \vert \leqslant threshold \times \vert max singular value \vert \f$. 155 Derived& setThreshold(const RealScalar& threshold) 158 m_prescribedThreshold = threshold; 180 RealScalar threshold() const function in class:Eigen::SVDBase [all...] |
/external/eigen/test/ |
qr_colpivoting.cpp | 122 // non-increasing until they reach the singularity threshold. 123 RealScalar threshold = local 128 if (x < threshold && y < threshold) continue; 134 << ", threshold=" << threshold << std::endl; 185 // non-increasing until they reache the singularity threshold. 186 RealScalar threshold = local 191 if (x < threshold && y < threshold) continue 234 RealScalar threshold = local [all...] |
/external/freetype/src/pshinter/ |
pshglob.c | 411 /* The blue threshold is the font units distance under */ 420 FT_Int threshold = blues->blue_shift; local 423 while ( threshold > 0 && FT_MulFix( threshold, scale ) > 32 ) 424 threshold--; 426 blues->blue_threshold = threshold;
|
/external/guava/guava-tests/benchmark/com/google/common/base/ |
CharMatcherBenchmark.java | 129 // Get threshold in the range [0, length], rounding up to ensure that non 130 // zero percent values result in a non-zero threshold (so we always have at 132 int threshold = ((percent * length) + 99) / 100; local 136 list.get(n) >= threshold ? NONMATCHING_CHARS : matchingChars, rand)); [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/number/ |
NumberFormatterSettings.java | 425 * Internal fluent setter to support a custom regulation threshold. A threshold of 1 causes the data structures to 426 * be built right away. A threshold of 0 prevents the data structures from being built. 432 public T threshold(Long threshold) { method in class:NumberFormatterSettings 433 return create(KEY_THRESHOLD, threshold); 509 if (macros.threshold == null) { 510 macros.threshold = (Long) current.value;
|
/external/icu/icu4c/source/i18n/ |
number_fluent.cpp | 113 Derived NumberFormatterSettings<Derived>::threshold(int32_t threshold) const { function in class:NumberFormatterSettings 115 copy.fMacros.threshold = threshold; 295 // is exactly threshold, then it is the current thread's job to build the data structure. 299 if (0 <= currentCount && currentCount <= fMacros.threshold && fMacros.threshold > 0) { 303 if (currentCount == fMacros.threshold && fMacros.threshold > 0) {
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/ |
NumberFormatterSettings.java | 433 * Internal fluent setter to support a custom regulation threshold. A threshold of 1 causes the data structures to 434 * be built right away. A threshold of 0 prevents the data structures from being built. 440 public T threshold(Long threshold) { method in class:NumberFormatterSettings 441 return create(KEY_THRESHOLD, threshold); 517 if (macros.threshold == null) { 518 macros.threshold = (Long) current.value;
|
/external/libvpx/libvpx/test/ |
vp9_quantize_test.cc | 395 int threshold = 100; local 397 // For 32x32, the threshold is halved. Double it to keep the values 399 threshold = 200; 401 for (int j = 0; j < 8; ++j) zbin_ptr_[j] = threshold;
|
/external/mesa3d/src/glx/ |
dri_common.c | 56 int threshold = _LOADER_WARNING; local 62 threshold = _LOADER_FATAL; 64 threshold = _LOADER_DEBUG; 68 if (level <= threshold) {
|
/external/mesa3d/src/mesa/state_tracker/ |
st_cb_readpixels.c | 366 unsigned threshold = MAX2(1, strb->Base.Width * strb->Base.Height / 8); local 368 if (st->readpix_cache.hits < threshold) {
|
/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));
|
/external/opencv/cvaux/src/ |
cvfindhandregion.cpp | 69 int low_count; // low threshold 74 float threshold, threshold2; local 83 threshold = (float) (size.height * 3 / 5.); 84 threshold2 = threshold * threshold; 291 int low_count; // low threshold 297 float threshold, threshold2; local 307 threshold = (float) (size.height * 3 / 5.); 308 threshold2 = threshold * threshold; [all...] |
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
cudnn_convolution_algorithm_picker.cc | 115 const int64 threshold = 1L << 31; local 116 return total_size < threshold;
|
/external/tensorflow/tensorflow/contrib/lite/examples/label_image/ |
label_image.cc | 184 const float threshold = 0.001f; local 192 num_results, threshold, &top_results, true); 196 output_size, num_results, threshold, &top_results,
|
/frameworks/av/media/common_time/ |
ICommonTimeConfig.cpp | 246 virtual status_t getPanicThreshold(int *threshold) { 255 *threshold = reply.readInt32(); 262 virtual status_t setPanicThreshold(int threshold) { 265 data.writeInt32(threshold); 462 int threshold; local 463 status_t status = getPanicThreshold(&threshold); 466 reply->writeInt32(threshold); 473 int threshold = data.readInt32(); local 474 status_t status = setPanicThreshold(threshold);
|
/libcore/ojluni/src/main/java/java/lang/ |
ThreadLocal.java | 337 private int threshold; // Default to 0 field in class:ThreadLocal.ThreadLocalMap 340 * Set the resize threshold to maintain at worst a 2/3 load factor. 343 threshold = len * 2 / 3; 483 if (!cleanSomeSlots(i, sz) && sz >= threshold) 673 // Use lower threshold for doubling to avoid hysteresis 674 if (size >= threshold - threshold / 4)
|
/libcore/ojluni/src/main/java/java/util/ |
ArrayPrefixHelpers.java | 58 * Keep dividing by two to threshold segment size, and then: 102 /** The smallest subtask array partition size to use as threshold */ 110 final int lo, hi, origin, fence, threshold; field in class:ArrayPrefixHelpers.CumulateTask 120 this.threshold = 127 T[] array, int origin, int fence, int threshold, 132 this.threshold = threshold; 141 int th = threshold, org = origin, fnc = fence, l, h; 262 final int lo, hi, origin, fence, threshold; field in class:ArrayPrefixHelpers.LongCumulateTask 272 this.threshold 412 final int lo, hi, origin, fence, threshold; field in class:ArrayPrefixHelpers.DoubleCumulateTask 562 final int lo, hi, origin, fence, threshold; field in class:ArrayPrefixHelpers.IntCumulateTask [all...] |
/packages/apps/Camera2/src/com/android/camera/app/ |
MemoryQuery.java | 43 public static final String KEY_THRESHOLD = "threshold"; 73 long threshold = memoryInfo.threshold / BYTES_IN_MEGABYTE; local 117 outputData.put(KEY_THRESHOLD, new Long(threshold)); 122 "threshold=%d, lowMemory=%s", timestamp, availMem, totalMem, totalPSS, 124 threshold, lowMemory));
|
/system/tpm/tpm_manager/server/ |
tpm_manager_service.cc | 81 int threshold; local 84 if (tpm_status_->GetDictionaryAttackInfo(&counter, &threshold, &lockout, 87 reply->set_dictionary_attack_threshold(threshold);
|
/tools/tradefederation/core/prod-tests/src/com/android/framework/tests/ |
PreloadedClassesTest.java | 71 @Option(name = "threshold", 124 // Consider each threshold input 126 int threshold = 0; local 128 threshold = Integer.parseInt(thresholdStr); 133 CLog.e("Failed to parse threshold: %s", thresholdStr); 139 File classes = writePreloadedClasses(threshold); 142 String name = String.format("preloaded-classes-threshold-%s", thresholdStr); 149 "Failed to generate classes file for threshold, %s", thresholdStr); 197 * preloaded classes based on the threshold input. 200 private File writePreloadedClasses(int threshold) { [all...] |
/cts/tests/tests/location/src/android/location/cts/ |
GnssPseudorangeVerificationTest.java | 215 double threshold = PSEUDORANGE_THRESHOLD_IN_SEC; local 220 threshold = PSEUDORANGE_THRESHOLD_BEIDOU_QZSS_IN_SEC; 228 "0.0 <= deltaiSeconds <= " + String.valueOf(threshold), 230 (deltaiSeconds >= 0.0 && deltaiSeconds <= threshold)); 347 + ", Threshold: " + horizontalOffsetThresholdMeters); 350 + horizontalOffset + " meters. Threshold = " 370 // Similar 3-standard deviation plus floor threshold as 385 + ", Threshold: " + horizontalSpeedOffsetThresholdMps);
|
/dalvik/dx/src/com/android/dx/ssa/ |
SsaRenamer.java | 75 private int threshold; field in class:SsaRenamer 110 threshold = 0; 146 * Constructs an instance of the renamer with threshold set 154 threshold = thresh; 240 * Returns true if this SSA register is below the specified threshold. 242 * for registers above a certain threshold. 245 * @return {@code true} if its register number is below the threshold 248 return ssaReg < threshold; 544 threshold == 0) { 553 threshold == 0) [all...] |