HomeSort by relevance Sort by last modified time
    Searched refs:threshold (Results 1 - 25 of 364) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libpng/tests/
pngvalid-gamma-threshold 2 exec ./pngvalid --gamma-threshold
  /external/chromium_org/chrome/browser/extensions/api/idle/
idle_api.cc 19 int ClampThreshold(int threshold) {
20 if (threshold < kMinThreshold) {
21 threshold = kMinThreshold;
22 } else if (threshold > kMaxThreshold) {
23 threshold = kMaxThreshold;
26 return threshold;
34 int threshold; local
35 EXTENSION_FUNCTION_VALIDATE(args_->GetInteger(0, &threshold));
36 threshold = ClampThreshold(threshold);
51 int threshold; local
56 ->SetThreshold(extension_id(), threshold); local
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
Barrier.java 36 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 ) {
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensorverification/
StandardDeviationVerificationTest.java 49 float[] threshold = {2, 2, 4}; local
50 runVerification(threshold, values, true, standardDeviations);
52 threshold = new float[]{1, 2, 4};
53 runVerification(threshold, values, false, standardDeviations);
55 threshold = new float[]{2, 1, 4};
56 runVerification(threshold, values, false, standardDeviations);
58 threshold = new float[]{2, 2, 3};
59 runVerification(threshold, values, false, standardDeviations);
62 private void runVerification(float[] threshold, float[][] values, boolean pass,
65 StandardDeviationVerification verification = getVerification(threshold, values)
    [all...]
MeanVerificationTest.java 46 float[] threshold = {0.1f, 0.1f, 0.1f}; local
48 MeanVerification verification = getVerification(expected, threshold, values);
53 threshold = new float[]{0.6f, 0.6f, 0.6f};
55 verification = getVerification(expected, threshold, values);
60 threshold = new float[]{0.1f, 0.6f, 0.6f};
62 verification = getVerification(expected, threshold, values);
72 threshold = new float[]{0.6f, 0.1f, 0.6f};
74 verification = getVerification(expected, threshold, values);
83 threshold = new float[]{0.6f, 0.6f, 0.1f};
85 verification = getVerification(expected, threshold, values)
    [all...]
MagnitudeVerificationTest.java 52 private void runStats(float expected, float threshold, float[][] values, boolean pass, float magnitude) {
54 MagnitudeVerification verification = getVerification(expected, threshold, values);
69 private static MagnitudeVerification getVerification(float expected, float threshold,
75 MagnitudeVerification verification = new MagnitudeVerification(expected, threshold);
  /external/chromium_org/remoting/host/
audio_silence_detector.h 16 // |threshold| is used to specify maximum absolute sample value that should
18 AudioSilenceDetector(int threshold);
31 // Silence period threshold in samples. Silence intervals shorter than this
audio_silence_detector.cc 13 // Silence period threshold in seconds. Silence intervals shorter than this
20 AudioSilenceDetector::AudioSilenceDetector(int threshold)
21 : threshold_(threshold),
  /external/deqp/framework/common/
tcuBilinearImageCompare.hpp 35 bool bilinearCompare (const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const PixelBufferAccess& errorMask, const RGBA threshold);
tcuImageCompare.hpp 47 bool pixelThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const Surface& reference, const Surface& result, const RGBA& threshold, CompareLogMode logMode);
48 bool fuzzyCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const Surface& reference, const Surface& result, float threshold, CompareLogMode logMode);
51 bool fuzzyCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, float threshold, CompareLogMode logMode);
52 bool floatUlpThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, CompareLogMode logMode);
53 bool floatThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const Vec4& threshold, CompareLogMode logMode);
54 bool floatThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const Vec4& reference, const ConstPixelBufferAccess& result, const Vec4& threshold, CompareLogMode logMode);
55 bool intThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, CompareLogMode logMode);
56 bool intThresholdPositionDeviationCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, const tcu::IVec3& maxPositionDeviation, bool acceptOutOfBoundsAsAnyValue, CompareLogMode logMode);
57 bool intThresholdPositionDeviationErrorThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, const tcu::IVec3& maxPositionDeviation, bool acceptOutOfBoundsAsAnyValue, int maxAllowedFailingPixels, CompareLogMode logMode);
59 bool bilinearCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const RGBA threshold, CompareLogMode logMode)
    [all...]
  /cts/tests/tests/uirendering/src/android/uirendering/cts/util/
CompareUtils.java 9 public static boolean verifyPixelWithThreshold(int color, int expectedColor, int threshold) {
13 return diff <= threshold;
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/
SensorCalibratedUncalibratedVerifier.java 45 float threshold) {
50 mThreshold = threshold;
74 float threshold) {
95 threshold);
111 float threshold) {
119 + "Uncalibrated=%s, Bias=%s, Threshold=%s",
126 threshold);
127 Assert.assertEquals(message, calibrated, uncalibrated - bias, threshold);
  /cts/suite/audio_quality/test_description/processing/
playback_sample.py 22 # pass level threshold (double)
45 threshold = inputData[2]
49 print "Expected Freq ", signalFrequency, "Actual Freq ", freq, "Threshold % ", threshold
51 if (diff < threshold):
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
DynamicsCompressorNode.idl 28 readonly attribute AudioParam threshold; // in Decibels
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_NFLOG.h 30 __u16 threshold; member in struct:xt_nflog_info
  /bionic/libc/kernel/uapi/linux/netfilter_bridge/
ebt_nflog.h 32 __u16 threshold; member in struct:ebt_nflog_info
  /development/ndk/platforms/android-L/include/linux/netfilter/
xt_NFLOG.h 30 __u16 threshold; member in struct:xt_nflog_info
  /development/ndk/platforms/android-L/include/linux/netfilter_bridge/
ebt_nflog.h 32 __u16 threshold; member in struct:ebt_nflog_info
  /external/clang/test/CodeGen/
2008-08-07-AlignPadding1.c 17 int threshold; member in struct:gc_generation
28 /* PyGC_Head, threshold, count */
union-init.c 17 int threshold; /* collection threshold */ member in struct:gc_generation
27 /* PyGC_Head, threshold, count */
  /external/iptables/include/linux/netfilter/
xt_NFLOG.h 14 __u16 threshold; member in struct:xt_nflog_info
  /external/kernel-headers/original/uapi/linux/netfilter/
xt_NFLOG.h 14 __u16 threshold; member in struct:xt_nflog_info
  /external/kernel-headers/original/uapi/linux/netfilter_bridge/
ebt_nflog.h 17 __u16 threshold; member in struct:ebt_nflog_info
  /external/chromium_org/tools/python/google/
logging_utils.py 13 based on a threshold level.
16 def __init__(self, threshold=logging.WARNING, err=sys.stderr, out=sys.stdout):
18 threshold: below this logging level messages are sent to stdout,
28 self._threshold = threshold
62 def config_root(level=logging.INFO, threshold=logging.WARNING, format=FORMAT,
68 threshold: below this logging level messages are sent to stdout,
79 handler = StdoutStderrHandler(threshold=threshold)
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
set_roi.cc 33 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...]

Completed in 1240 milliseconds

1 2 3 4 5 6 7 8 91011>>