/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
|
/external/valgrind/main/massif/tests/ |
long-time.post.exp | 45 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%) 59 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%) 86 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%) 97 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%) 112 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%) 127 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%) 138 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%) 154 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%) 172 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%) 190 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00% [all...] |
/external/pdfium/core/src/fpdftext/ |
fpdf_text_int.cpp | 1389 FX_FLOAT threshold = prev_width > this_width ? prev_width \/ 4 : this_width \/ 4; local 1728 FX_FLOAT threshold = 0; local 1964 FX_FLOAT threshold = last_width > this_width ? last_width \/ 4 : this_width \/ 4; local [all...] |
/external/chromium_org/content/browser/renderer_host/ |
overscroll_controller.cc | 131 // after the threshold. 171 float ratio, threshold; local 175 threshold = GetOverscrollConfig(OVERSCROLL_CONFIG_HORIZ_THRESHOLD_COMPLETE); 178 threshold = GetOverscrollConfig(OVERSCROLL_CONFIG_VERT_THRESHOLD_COMPLETE); 181 return ratio >= threshold; 314 // Do not include the threshold amount when sending the deltas to the
|
/frameworks/base/core/tests/coretests/src/android/view/ |
VelocityTest.java | 268 private void assertEqualFuzzy(float expected, float actual, float threshold) { 269 boolean fuzzyEqual = actual >= expected - threshold && actual <= expected + threshold; 271 "> while accepting a variation of: <"+threshold+">", fuzzyEqual);
|
/frameworks/wilhelm/src/android/ |
AudioPlayer_to_android.h | 82 SLpermille threshold);
|
/hardware/invensense/60xx/mlsdk/mllite/ |
mlcontrol.h | 147 // Threshold of the control signal at which the grid number will be 154 // Indicates which control signal crossed a grid threshold. Must be 199 long threshold);
|
compass.c | 146 static void thresh_filter_init(struct yas_thresh_filter *thresh_filter, float threshold) 148 thresh_filter->threshold = threshold; 154 if (in < thresh_filter->last - thresh_filter->threshold 155 || thresh_filter->last + thresh_filter->threshold < in) {
|
mlcontrol.c | 360 * @param threshold The threshold of the control signal at which the grid 365 inv_error_t inv_set_grid_thresh(unsigned short controlSignal, long threshold) 374 cntrl_params.gridThreshold[0] = threshold; 377 cntrl_params.gridThreshold[1] = threshold; 380 cntrl_params.gridThreshold[2] = threshold; 383 cntrl_params.gridThreshold[3] = threshold; 445 * @param controlSignal Indicates which control signal crossed a grid threshold. 464 * run when a control signal crosses a grid threshold.
|
/external/chromium_org/third_party/WebKit/Source/platform/audio/ |
FFTFrame.cpp | 120 double threshold = (i > 16) ? 5.0 : 2.0; local 122 if (magdbdiff < -threshold && mag1db < 0.0) { 125 } else if (magdbdiff > threshold && mag2db < 0.0) {
|
/external/chromium_org/third_party/freetype/src/autofit/ |
afangles.c | 272 FT_Pos threshold ) 302 /* `threshold'; this is very primitive and might not yield */ 307 if ( table[i].org - cur_val > threshold || 313 if ( table[i].org - cur_val <= threshold &&
|
/external/deqp/framework/common/ |
tcuRGBA.hpp | 137 inline bool compareThreshold (RGBA a, RGBA b, RGBA threshold) 140 return computeAbsDiff(a, b).isBelowThreshold(threshold); 152 bool compareThresholdMasked (RGBA a, RGBA b, RGBA threshold, deUint32 cmpMask);
|
/external/eigen/Eigen/src/IterativeLinearSolvers/ |
ConjugateGradient.h | 53 RealScalar threshold = tol*tol*rhsNorm2; local 55 if (residualNorm2 < threshold) 77 if(residualNorm2 < threshold)
|
/external/freetype/src/autofit/ |
afangles.c | 272 FT_Pos threshold ) 302 /* `threshold'; this is very primitive and might not yield */ 307 if ( table[i].org - cur_val > threshold || 313 if ( table[i].org - cur_val <= threshold &&
|
/art/dex2oat/ |
dex2oat.cc | 172 UsageError(" --huge-method-max=<method-instruction-count>: the threshold size for a huge"); 177 UsageError(" --huge-method-max=<method-instruction-count>: threshold size for a huge"); 182 UsageError(" --large-method-max=<method-instruction-count>: threshold size for a large"); 187 UsageError(" --small-method-max=<method-instruction-count>: threshold size for a small"); 192 UsageError(" --tiny-method-max=<method-instruction-count>: threshold size for a tiny"); 197 UsageError(" --num-dex-methods=<method-count>: threshold size for a small dex file for"); 968 const char* threshold = option.substr(strlen("--huge-method-max=")).data(); local 976 const char* threshold = option.substr(strlen("--large-method-max=")).data(); local 984 const char* threshold = option.substr(strlen("--small-method-max=")).data(); local 992 const char* threshold = option.substr(strlen("--tiny-method-max=")).data(); local 1000 const char* threshold = option.substr(strlen("--num-dex-methods=")).data(); local [all...] |
/external/chromium_org/third_party/webrtc/modules/audio_processing/utility/ |
delay_estimator.c | 526 // i) an adaptive threshold |minimum_probability|, or 533 // The "hard" threshold can't be lower than 17 (in Q9). 537 int32_t threshold = value_best_candidate + kProbabilityOffset; local 538 if (threshold < kProbabilityLowerLimit) { 539 threshold = kProbabilityLowerLimit; 541 if (self->minimum_probability > threshold) { 542 self->minimum_probability = threshold;
|
/external/deqp/modules/gles3/functional/ |
es3fFramebufferBlitTests.cpp | 148 // Use pixel-threshold compare for rect cases since 1px off will mean failure. 149 tcu::RGBA threshold = TestCase::m_context.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(7,7,7,7); local 150 return tcu::pixelThresholdCompare(m_testCtx.getLog(), "Result", "Image comparison result", reference, result, threshold, tcu::COMPARE_LOG_RESULT); 189 const tcu::RGBA threshold = TestCase::m_context.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(7,7,7,7); local 195 const bool signConfig = tcu::compareThreshold(baseColor, cellColorA, threshold); 220 const bool isValidColor = tcu::compareThreshold(color, cellColorA, threshold) || tcu::compareThreshold(color, cellColorB, threshold); 249 if (tcu::compareThreshold(color, cellColorA, threshold)) 251 else if (tcu::compareThreshold(color, cellColorB, threshold)) 260 if (tcu::compareThreshold(color, cellColorA, threshold)) 432 tcu::RGBA threshold; local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/ |
bezier.c | 252 float offset, float threshold) 255 const float max_dist_line = threshold*offset*offset; 256 const float max_dist_normal = threshold*offset; 332 float offset, float threshold) 440 return good_offset(orig, shifted, offset, threshold); 522 float threshold) 542 threshold *= 1.5; 543 if (threshold > 2.) 547 res = shift(b, o, normal_len, threshold); 567 enum shift_result res = shift(b, o, normal_len, threshold); [all...] |
/external/mesa3d/src/gallium/state_trackers/vega/ |
bezier.c | 252 float offset, float threshold) 255 const float max_dist_line = threshold*offset*offset; 256 const float max_dist_normal = threshold*offset; 332 float offset, float threshold) 440 return good_offset(orig, shifted, offset, threshold); 522 float threshold) 542 threshold *= 1.5; 543 if (threshold > 2.) 547 res = shift(b, o, normal_len, threshold); 567 enum shift_result res = shift(b, o, normal_len, threshold); [all...] |
/external/qemu/audio/ |
alsaaudio.c | 140 unsigned int threshold; member in struct:__anon32940 500 static void alsa_set_threshold (snd_pcm_t *handle, snd_pcm_uframes_t threshold) 514 err = FF(snd_pcm_sw_params_set_start_threshold) (handle, sw_params, threshold); 517 alsa_logerr (err, "Failed to set software threshold to %ld\n", 518 threshold); 710 if (!in && conf.threshold) { 711 snd_pcm_uframes_t threshold; local 732 threshold = (conf.threshold * bytes_per_sec) / 1000; 733 alsa_set_threshold (handle, threshold); [all...] |
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"
|
paaudio.c | 91 int threshold; local 93 threshold = conf.divisor ? hw->samples / conf.divisor : 0; 107 if (pa->live > threshold) { 186 int threshold; local 188 threshold = conf.divisor ? hw->samples / conf.divisor : 0; 202 if (pa->dead > threshold) { 568 .descr = "threshold divisor"
|
/external/eigen/Eigen/src/LU/ |
FullPivLU.h | 154 * For that, it uses the threshold value that you can control by calling 179 * For that, it uses the threshold value that you can control by calling 238 /** Allows to prescribe a threshold to be used by certain methods, such as rank(), 242 * When it needs to get the threshold value, Eigen calls threshold(). By default, this 243 * uses a formula to automatically determine a reasonable threshold. 247 * \param threshold The new value to use as the threshold. 250 * \f$ \vert pivot \vert \leqslant threshold \times \vert maxpivot \vert \f$ 255 FullPivLU& setThreshold(const RealScalar& threshold) 280 RealScalar threshold() const function in class:Eigen::FullPivLU [all...] |
/external/oprofile/pp/ |
opreport.cpp | 328 < options::threshold) { 372 choice.threshold = options::threshold; 421 choice.threshold = options::threshold; 563 options::debug_info, options::threshold,
|
/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);
|