Home
last modified time | relevance | path

Searched defs:threshold (Results 1 – 25 of 653) sorted by relevance

12345678910>>...27

/external/apache-commons-io/src/main/java/org/apache/commons/io/output/
DDeferredFileOutputStream.java67 private int threshold; field in DeferredFileOutputStream.Builder
168 public Builder setThreshold(final int threshold) { in setThreshold()
244 public DeferredFileOutputStream(final int threshold, final File outputFile) { in DeferredFileOutputStream()
259 …private DeferredFileOutputStream(final int threshold, final File outputFile, final String prefix, … in DeferredFileOutputStream()
280 …public DeferredFileOutputStream(final int threshold, final int initialBufferSize, final File outpu… in DeferredFileOutputStream()
296 …public DeferredFileOutputStream(final int threshold, final int initialBufferSize, final String pre… in DeferredFileOutputStream()
311 …private DeferredFileOutputStream(final int threshold, final Path outputFile, final String prefix, … in DeferredFileOutputStream()
334 …public DeferredFileOutputStream(final int threshold, final String prefix, final String suffix, fin… in DeferredFileOutputStream()
DThresholdingOutputStream.java48 private final int threshold; field in ThresholdingOutputStream
75 public ThresholdingOutputStream(final int threshold) { in ThresholdingOutputStream()
87 …public ThresholdingOutputStream(final int threshold, final IOConsumer<ThresholdingOutputStream> th… in ThresholdingOutputStream()
/external/federated-compute/fcp/secagg/shared/
Dshamir_secret_sharing_test.cc37 for (int threshold = 2; threshold <= num_shares; ++threshold) { in TEST() local
66 int threshold = 4; in TEST() local
78 int threshold = 4; in TEST() local
93 int threshold = 4; in TEST() local
109 int threshold = 4; in TEST() local
121 int threshold = 4; in TEST() local
171 int threshold = 3; in TEST() local
/external/tensorflow/tensorflow/lite/tools/evaluation/stages/
Dobject_detection_average_precision_stage.cc100 float threshold = 0.5; in LatestMetrics() local
105 for (auto& threshold : ap_params.iou_thresholds()) { in LatestMetrics() local
115 for (float threshold : iou_thresholds) { in LatestMetrics() local
/external/pigweed/pw_allocator/public/pw_allocator/
Ddual_first_fit_block_allocator.h47 DualFirstFitBlockAllocator(ByteSpan region, size_t threshold) in DualFirstFitBlockAllocator()
51 void set_threshold(size_t threshold) { threshold_ = threshold; } in set_threshold()
/external/robolectric/integration_tests/nativegraphics/src/test/java/org/robolectric/shadows/testing/util/
DCompareUtils.java9 public static boolean verifyPixelWithThreshold(int color, int expectedColor, int threshold) { in verifyPixelWithThreshold()
22 public static boolean verifyPixelGrayScale(int color, int threshold) { in verifyPixelGrayScale()
/external/sdk-platform-java/gax-java/gax/src/main/java/com/google/api/gax/batching/
DNumericThreshold.java36 private final long threshold; field in NumericThreshold
46 public NumericThreshold(long threshold, ElementCounter<E> extractor) { in NumericThreshold()
/external/apache-commons-math/src/main/java/org/apache/commons/math3/linear/
DNonPositiveDefiniteMatrixException.java36 private final double threshold; field in NonPositiveDefiniteMatrixException
45 public NonPositiveDefiniteMatrixException(double wrong, int index, double threshold) { in NonPositiveDefiniteMatrixException()
DNonSymmetricMatrixException.java38 private final double threshold; field in NonSymmetricMatrixException
47 public NonSymmetricMatrixException(int row, int column, double threshold) { in NonSymmetricMatrixException()
DQRDecomposition.java77 private final double threshold; field in QRDecomposition
96 public QRDecomposition(RealMatrix matrix, double threshold) { in QRDecomposition()
336 private final double threshold; field in QRDecomposition.Solver
345 private Solver(final double[][] qrt, final double[] rDiag, final double threshold) { in Solver()
/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/concurrent/
DThresholdCircuitBreaker.java61 private final long threshold; field in ThresholdCircuitBreaker
73 public ThresholdCircuitBreaker(final long threshold) { in ThresholdCircuitBreaker()
/external/cronet/net/third_party/quiche/src/quiche/quic/core/
Dquic_flow_controller_test.cc218 QuicByteCount threshold = in TEST_F() local
272 QuicByteCount threshold = in TEST_F() local
324 QuicByteCount threshold = in TEST_F() local
381 QuicByteCount threshold = in TEST_F() local
/external/robolectric/integration_tests/nativegraphics/src/test/java/org/robolectric/shadows/testing/bitmapverifiers/
DColorCountVerifier.java24 private int threshold; field in ColorCountVerifier
26 public ColorCountVerifier(int color, int count, int threshold) { in ColorCountVerifier()
/external/deqp/framework/common/
DtcuImageCompare.cpp94 … const ConstPixelBufferAccess &result, const UVec4 &threshold, in findNumPositionDeviationFailingPixels()
230 … const ConstPixelBufferAccess &reference, const ConstPixelBufferAccess &result, float threshold, in fuzzyCompare()
402 const Surface &result, float threshold, CompareLogMode logMode) in fuzzyCompare()
616 const UVec4 &threshold, CompareLogMode logMode) in floatUlpThresholdCompare()
704 const Vec4 &threshold, CompareLogMode logMode) in floatThresholdCompare()
796 const Vec4 &ignorekey, const Vec4 &threshold, CompareLogMode logMode) in floatThresholdCompare()
888 … const ConstPixelBufferAccess &result, const Vec4 &threshold, CompareLogMode logMode) in floatThresholdCompare()
976 const UVec4 &threshold, CompareLogMode logMode, bool use64Bits) in intThresholdCompare()
1094 const float threshold, CompareLogMode logMode) in dsThresholdCompare()
1261const UVec4 &threshold, const tcu::IVec3 &maxPositionDeviation, in intThresholdPositionDeviationCompare()
[all …]
DtcuBilinearImageCompare.cpp119 const RGBA threshold, int x, int y) in comparePixelRGBA8()
171 const PixelBufferAccess &errorMask, const RGBA threshold) in bilinearCompareRGBA8()
200 const PixelBufferAccess &errorMask, const RGBA threshold) in bilinearCompare()
/external/apache-commons-math/src/main/java/org/apache/commons/math3/stat/regression/
DOLSMultipleLinearRegression.java60 private final double threshold; field in OLSMultipleLinearRegression
76 public OLSMultipleLinearRegression(final double threshold) { in OLSMultipleLinearRegression()
/external/libcups/tools/
Ddither.h2 const unsigned char threshold[64][64] = variable
/external/ComputeLibrary/tests/validation/reference/
DNonMaxSuppression.cpp86 inline bool reject_box(Box b0, Box b1, float threshold) in reject_box()
105 inline std::vector<CandidateBox> get_candidates(const SimpleTensor<float> &scores, float threshold) in get_candidates()
123 …idateBox &cb, const SimpleTensor<float> &bboxes, std::vector<int> &selected_boxes, float threshold) in is_box_selected()
/external/libchrome-gestures/src/
Dstationary_wiggle_filter_interpreter.cc74 bool FingerEnergyHistory::IsFingerMoving(float threshold) { in IsFingerMoving()
142 float threshold = feh.moving() ? hysteresis_.val_ : threshold_.val_; in UpdateStationaryFlags() local
/external/aac/libPCMutils/src/
Dlimiter.cpp113 FIXP_DBL threshold, unsigned int maxChannels, in pcmLimiter_Create()
183 FIXP_DBL threshold = limiter->threshold >> scaling; in pcmLimiter_Apply() local
361 FIXP_DBL threshold) { in pcmLimiter_SetThreshold()
/external/federated-compute/fcp/secagg/server/
Dsecret_sharing_graph_factory.h40 int num_nodes, int threshold) { in CreateCompleteGraph()
Dgraph_parameter_finder.cc106 auto threshold = CheckNumberOfNeighbors(number_of_neighbors); in ComputeDegreeAndThreshold() local
261 Status CheckFullGraphParameters(int number_of_clients, int threshold, in CheckFullGraphParameters()
/external/autotest/client/cros/audio/
Daudio_analysis.py239 threshold=PATTERN_MATCHING_THRESHOLD): argument
312 def _moving_pattern_matching(golden_signal, test_signal, threshold): argument
/external/licenseclassifier/tools/identify_license/
Didentify_license.go45threshold = flag.Float64("threshold", licenseclassifier.DefaultConfidenceThreshold, "confidenc… var
/external/deqp/modules/gles3/functional/
Des3fShaderFragDataTests.cpp83 tcu::RGBA threshold) in compareSingleColor()
209 const tcu::RGBA threshold = in iterate() local
311 const tcu::RGBA threshold = in iterate() local

12345678910>>...27