HomeSort by relevance Sort by last modified time
    Searched defs:threshold (Results 51 - 75 of 218) sorted by null

1 23 4 5 6 7 8 9

  /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);
  /frameworks/av/media/libstagefright/codecs/aacenc/inc/
tns.h 71 Word16 threshold; /* min. prediction gain for using tns TABUL * 100 */ member in struct:__anon32318
  /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
268 threshold = getThreshold(maxSize);
273 // assign the threshold to maxSize initially, this will change to a
279 int arraySize = (int) (((long) threshold * 10000) / loadFactor) * 2;
281 // leads to overflow and negative arraySize if threshold is too big
474 if (++size > threshold) {
526 threshold = (int) ((long) (elementData.length / 2) * loadFactor / 10000);
810 threshold = getThreshold(DEFAULT_MAX_SIZE);
WeakHashMap.java 46 private int threshold; field in class:WeakHashMap
268 threshold = (int) ((long) elementData.length * loadFactor / 10000);
606 if (++elementCount > threshold) {
  /system/core/libcutils/tests/memset_mips/
test_memset.c 82 testone(char *tag, void (*fn)(), int trials, int minbytes, int maxbytes, int size, int threshold)
163 if (units < threshold) {
215 int threshold; local
227 /* Set the cycle threshold */
228 threshold = pp->maxbytes * 4 * 10; /* reasonable for cycles and ns */
229 testone(tag, fp->fn, pp->trials, pp->minbytes, pp->maxbytes, fp->size, threshold);
  /cts/tests/tests/holo/src/android/holo/cts/
LayoutTestActivity.java 175 * or equal to +/-threshold
177 private boolean compareTo(Bitmap bitmap, Bitmap reference, int threshold) {
201 if (Math.abs(db) > threshold ||
202 Math.abs(dg) > threshold ||
203 Math.abs(dr) > threshold) {
208 if (Math.abs(da) > threshold) {
219 final int threshold = 2; local
220 mSame = compareTo(mBitmap, mReferenceBitmap, threshold);
  /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;
238 * Returns true if this SSA register is below the specified threshold.
240 * for registers above a certain threshold.
243 * @return {@code true} if its register number is below the threshold
246 return ssaReg < threshold;
540 threshold == 0) {
549 threshold == 0)
    [all...]
  /external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
json_reader.cpp 602 Value::LargestUInt threshold = maxIntegerValue / 10; local
610 if ( value >= threshold )
616 if (value > threshold ||
  /external/chromium_org/third_party/opus/src/silk/fixed/
pitch_analysis_core_FIX.c 87 const opus_int32 search_thres1_Q16, /* I First stage threshold for lag candidates 0 - 1 */
88 const opus_int search_thres2_Q13, /* I Final threshold for lag candidates 0 - 1 */
105 opus_int32 sum, threshold, lag_counter; local
259 threshold = silk_SMULWB( search_thres1_Q16, Cmax );
261 /* Convert to 8 kHz indices for the sorted correlation that exceeds the threshold */
262 if( C[ i ] > threshold ) {
    [all...]
  /external/chromium_org/third_party/opus/src/silk/float/
pitch_analysis_core_FLP.c 73 const silk_float search_thres1, /* I First stage threshold for lag candidates 0 - 1 */
74 const silk_float search_thres2, /* I Final threshold for lag candidates 0 - 1 */
86 silk_float threshold, contour_bias; local
229 threshold = search_thres1 * Cmax;
231 /* Convert to 8 kHz indices for the sorted correlation that exceeds the threshold */
232 if( C[ 0 ][ min_lag_4kHz + i ] > threshold ) {
  /external/chromium_org/v8/src/
store-buffer.cc 190 int threshold; member in struct:v8::internal::Samples
199 ExemptPopularPages(samples[i].prime_sample_step, samples[i].threshold);
210 void StoreBuffer::ExemptPopularPages(int prime_sample_step, int threshold) {
227 if (old_counter >= threshold) {
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
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/eigen/Eigen/src/LU/
FullPivLU.h 153 * For that, it uses the threshold value that you can control by calling
178 * For that, it uses the threshold value that you can control by calling
237 /** Allows to prescribe a threshold to be used by certain methods, such as rank(),
241 * When it needs to get the threshold value, Eigen calls threshold(). By default, this
242 * uses a formula to automatically determine a reasonable threshold.
246 * \param threshold The new value to use as the threshold.
249 * \f$ \vert pivot \vert \leqslant threshold \times \vert maxpivot \vert \f$
254 FullPivLU& setThreshold(const RealScalar& threshold)
279 RealScalar threshold() const function in class:Eigen::FullPivLU
    [all...]
  /external/eigen/Eigen/src/QR/
FullPivHouseholderQR.h 199 * For that, it uses the threshold value that you can control by calling
205 RealScalar premultiplied_threshold = internal::abs(m_maxpivot) * threshold();
215 * For that, it uses the threshold value that you can control by calling
228 * For that, it uses the threshold value that you can control by calling
241 * For that, it uses the threshold value that you can control by calling
253 * For that, it uses the threshold value that you can control by calling
279 /** Allows to prescribe a threshold to be used by certain methods, such as rank(),
283 * When it needs to get the threshold value, Eigen calls threshold(). By default, this
284 * uses a formula to automatically determine a reasonable threshold
321 RealScalar threshold() const function in class:Eigen::FullPivHouseholderQR
    [all...]
  /external/qemu/audio/
esdaudio.c 118 int threshold; local
120 threshold = conf.divisor ? hw->samples / conf.divisor : 0;
134 if (esd->live > threshold) {
327 int threshold; local
329 threshold = conf.divisor ? hw->samples / conf.divisor : 0;
343 if (esd->dead > threshold) {
599 .descr = "threshold divisor"
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11video.h 96 int threshold; member in struct:SDL_PrivateVideoData::__anon27908
  /external/v8/src/
store-buffer.cc 208 int threshold; member in struct:v8::internal::Samples
217 ExemptPopularPages(samples[i].prime_sample_step, samples[i].threshold);
228 void StoreBuffer::ExemptPopularPages(int prime_sample_step, int threshold) {
245 if (old_counter == threshold) {
  /frameworks/base/core/java/com/android/internal/widget/
DrawableHolder.java 128 final float threshold = 1.0f / 256.0f; // contribution less than 1 LSB of RGB byte local
129 if (mAlpha <= threshold) // don't bother if it won't show up
  /frameworks/native/cmds/flatland/
Main.cpp 616 const double threshold = .0025; local
675 } while (fabs(result - prevResult) > threshold * result);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
ContactMatcher.java 37 // Suggest to aggregate contacts if their match score is equal or greater than this threshold
40 // Automatically aggregate contacts if their match score is equal or greater than this threshold
43 // Automatically aggregate contacts if the match score is equal or greater than this threshold
88 * between the strings is below the threshold.
320 float threshold = emailBased local
323 if (distance > threshold) {
372 public List<Long> prepareSecondaryMatchCandidates(int threshold) {
382 if (s >= threshold) {
394 * Returns the contactId with the best match score over the specified threshold or -1
399 public long pickBestMatch(int threshold, boolean allowMultipleMatches)
    [all...]
  /cts/tests/tests/display/src/android/display/cts/
VirtualDisplayTest.java 381 // We use this threshold in case the display is being letterboxed when
387 final int threshold = width * height / 4; local
388 if (bluePixels > threshold) {
392 if (greenPixels > threshold) {
396 if (blackPixels > threshold) {
  /external/chromium/base/
mime_util_xdg.cc 97 Threshold
101 type(Threshold),
104 threshold(2) {
110 size_t threshold; // Maximum difference from desired size. 2 by default. member in class:__anon4144::IconTheme::SubDirInfo
303 else if (value == "Threshold")
304 current_info->type = SubDirInfo::Threshold;
309 } else if (key == "Threshold") {
310 current_info->threshold = atoi(value.c_str());
337 if (size >= info->size - info->threshold &&
338 size <= info->size + info->threshold) {
    [all...]
  /external/chromium/chrome/browser/ui/gtk/tabs/
dragged_tab_controller_gtk.cc 270 // Determine the horizontal move threshold. This is dependent on the width
272 // the threshold.
276 int threshold = static_cast<int>(ratio * kHorizontalMoveThreshold); local
281 if (abs(screen_point.x() - last_move_screen_x_) > threshold) {
  /external/chromium_org/base/nix/
mime_util_xdg.cc 97 Threshold
101 type(Threshold),
104 threshold(2) {
110 size_t threshold; // Maximum difference from desired size. 2 by default. member in class:base::nix::__anon6290::IconTheme::SubDirInfo
300 else if (value == "Threshold")
301 current_info->type = SubDirInfo::Threshold;
306 } else if (key == "Threshold") {
307 current_info->threshold = atoi(value.c_str());
336 if (size + info->threshold < info->size)
337 return info->size - size - info->threshold;
    [all...]
  /external/eigen/Eigen/src/Core/
TriangularMatrix.h 793 RealScalar threshold = maxAbsOnUpperPart * prec; local
796 if(internal::abs(coeff(i, j)) > threshold) return false;
815 RealScalar threshold = maxAbsOnLowerPart * prec; local
820 if(internal::abs(coeff(i, j)) > threshold) return false;

Completed in 1715 milliseconds

1 23 4 5 6 7 8 9