HomeSort by relevance Sort by last modified time
    Searched refs:threshold (Results 76 - 100 of 605) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/extensions/api/idle/
idle_api_unittest.cc 226 for (int threshold = 0; threshold < 20; ++threshold) {
228 SCOPED_TRACE(threshold);
232 std::string args = "[" + base::IntToString(threshold) + "]";
239 int real_threshold = (threshold < 15) ? 15 : threshold;
253 for (int threshold = kFourHoursInSeconds - 20;
254 threshold < (kFourHoursInSeconds + 20); ++threshold) {
    [all...]
idle_manager.cc 118 threshold(kDefaultIdleThreshold) {
166 // this record so that the threshold doesn't get reset when all listeners
172 void IdleManager::QueryState(int threshold, QueryStateCallback notify) {
174 idle_time_provider_->CalculateIdleState(threshold, notify);
178 int threshold) {
180 GetMonitor(extension_id)->threshold = threshold;
258 IdleTimeToIdleState(locked, idle_time, monitor.threshold);
idle_manager.h 38 int threshold; member in struct:extensions::IdleMonitor
89 void QueryState(int threshold, QueryStateCallback notify);
90 void SetThreshold(const std::string& extension_id, int threshold);
  /external/oprofile/pp/
common_option.cpp 30 double threshold = 0.0; member in namespace:options
55 double handle_threshold(string threshold)
59 if (threshold.length()) {
60 istringstream ss(threshold);
62 cerr << "illegal threshold value: " << threshold
68 cerr << "illegal threshold value: " << threshold
74 cverb << vdebug << "threshold: " << value << endl;;
176 options::threshold = handle_threshold(options::threshold_opt) member in class:__anon32225::options
    [all...]
common_option.h 24 extern double threshold;
  /external/deqp/framework/common/
tcuImageCompare.cpp 90 static int findNumPositionDeviationFailingPixels (const PixelBufferAccess& errorMask, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, const tcu::IVec3& maxPositionDeviation, bool acceptOutOfBoundsAsAnyValue)
111 const bool isOk = boolAll(lessThanEqual(diff, threshold));
145 const bool isOk = boolAll(lessThanEqual(diff, threshold));
158 const bool isOk = boolAll(lessThanEqual(diff, threshold));
193 * metric is usually <0.01. Thus good threshold values are in range 0.02 to
205 * \param threshold Error metric threshold (good values are 0.02-0.05)
209 bool fuzzyCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, float threshold, CompareLogMode logMode)
214 bool isOk = difference <= threshold;
228 log << TestLog::Message << "Image comparison failed: difference = " << difference << ", threshold = " << threshold << TestLog::EndMessage
    [all...]
  /external/aac/libPCMutils/src/
limiter.cpp 98 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, max)>>1
    [all...]
  /external/chromium_org/net/quic/
quic_flow_controller.cc 120 size_t threshold = (max_receive_window_ / 2); local
122 if (consumed_window < threshold) {
129 << ", and threshold: " << threshold
  /external/chromium_org/third_party/leveldatabase/src/util/
histogram.cc 74 double threshold = num_ * (p / 100.0); local
78 if (sum >= threshold) {
84 double pos = (threshold - left_sum) / (right_sum - left_sum);
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensorverification/
MeanVerification.java 35 // sensorType: {expected, threshold}
49 * @param threshold the thresholds
51 public MeanVerification(float[] expected, float[] threshold) {
53 mThreshold = threshold;
68 float[] threshold = (float[]) DEFAULTS.get(sensorType)[1]; local
69 return new MeanVerification(expected, threshold);
151 // Uncalibrated gyroscope should be 0 for a static device but allow a bigger threshold
  /external/chromium_org/chrome/browser/net/
referrer.cc 106 bool Referrer::Trim(double reduce_rate, double threshold) {
109 if (!it->second.Trim(reduce_rate, threshold))
117 bool ReferrerValue::Trim(double reduce_rate, double threshold) {
119 return subresource_use_rate_ > threshold;
  /external/chromium_org/content/test/
image_decoder_test.h 60 // expected state. |file_selection| and |threshold| can be used to select
64 const int64 threshold);
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
DynamicsCompressorNode.h 51 AudioParam* threshold() { return m_threshold.get(); } function in class:WebCore::FINAL
DynamicsCompressorNode.cpp 50 m_threshold = AudioParam::create(context, "threshold", -24, -100, 0);
70 float threshold = m_threshold->value(); local
76 m_dynamicsCompressor->setParameterValue(DynamicsCompressor::ParamThreshold, threshold);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
bezier.h 67 float threshold);
  /external/mesa3d/src/gallium/state_trackers/vega/
bezier.h 67 float threshold);
  /frameworks/av/media/libeffects/loudness/common/core/
basic_types.h 106 bool Equals(const WaveData &wave_data, int threshold = 0) const;
  /hardware/invensense/60xx/libsensors_iio/software/core/mpl/
quat_accuracy_monitor.h 37 void set_accuracy_threshold(enum accuracy_signal_type_e type, double threshold);
  /hardware/invensense/60xx/mlsdk/mllite/
compass.h 58 float threshold; member in struct:yas_thresh_filter
  /hardware/invensense/6515/libsensors_iio/software/core/mpl/
quat_accuracy_monitor.h 37 void set_accuracy_threshold(enum accuracy_signal_type_e type, double threshold);
  /hardware/invensense/65xx/libsensors_iio/software/core/mpl/
quat_accuracy_monitor.h 37 void set_accuracy_threshold(enum accuracy_signal_type_e type, double threshold);
  /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));
  /cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapcomparers/
PSNRComparer.java 32 * @param threshold the PSNR necessary to pass the test, if the calculated PSNR is below this
35 public PSNRComparer(float threshold) {
36 mThreshold = threshold;
WeightedPixelDifference.java 33 public WeightedPixelDifference(float threshold) {
34 mThreshold = threshold;
68 * @return true if the accumulated error is smaller than the threshold
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
InfrastructureTests.java 58 // This is considered a very high threshold and as such, the test should still fail because
60 final float threshold = 0.1f; local
65 return !(new MSSIMComparer(threshold)).verifySame(ideal, given, offset, stride,

Completed in 656 milliseconds

1 2 34 5 6 7 8 91011>>