HomeSort by relevance Sort by last modified time
    Searched refs:minVal (Results 26 - 50 of 106) sorted by null

12 3 4 5

  /external/vulkan-validation-layers/libs/glm/detail/
intrinsic_common.hpp 71 __m128 sse_clp_ps(__m128 v, __m128 minVal, __m128 maxVal);
func_common.hpp 200 /// Returns min(max(x, minVal), maxVal) for each component in x
201 /// using the floating-point values minVal and maxVal.
210 genType const & minVal,
216 typename genType::value_type const & minVal,
  /external/opencv/cxcore/src/
cxminmaxloc.cpp 62 *minVal = _fin_cast_macro_(min_val); \
90 extrtype* minVal, extrtype* maxVal, CvPoint* minLoc, CvPoint* maxLoc ), \
91 (src, step, size, minVal, maxVal, minLoc, maxLoc) ) \
109 extrtype* minVal, extrtype* maxVal, \
218 extrtype* minVal, extrtype* maxVal, CvPoint* minLoc, CvPoint* maxLoc ), \
219 ( src, step, mask, maskStep, size, minVal, maxVal, minLoc, maxLoc) ) \
238 extrtype* minVal, extrtype* maxVal, CvPoint* minLoc, CvPoint* maxLoc ) \
  /external/deqp/framework/randomshaders/
rsgExpression.cpp 187 int minVal = minIntVal + rnd.getInt(0, maxRangeLen-rangeLen);
188 int maxVal = minVal + rangeLen;
190 valueRange.getMin().component(ndx).asInt() = minVal;
209 float minVal = minFloatVal + step*(float)minStep;
210 float maxVal = minVal + step*(float)rangeLen;
212 valueRange.getMin().component(ndx).asFloat() = minVal;
362 float minVal = -10.0f;
368 minVal = valueRange.getMin().component(0).asFloat();
371 if (Scalar::min<float>() == minVal)
372 minVal = -10.0f
    [all...]
rsgVariableValue.hpp 201 ConstValueRangeAccess (const VariableType& type, const Scalar* minVal, const Scalar* maxVal) : m_type(&type), m_min(const_cast<Scalar*>(minVal)), m_max(const_cast<Scalar*>(maxVal)) {}
243 ValueRangeAccess (const VariableType& type, Scalar* minVal, Scalar* maxVal) : ConstValueRangeAccess(type, minVal, maxVal) {}
275 ValueRange (const VariableType& type, const ConstValueAccess& minVal, const ConstValueAccess& maxVal);
276 ValueRange (const VariableType& type, const Scalar* minVal, const Scalar* maxVal);
rsgVariableValue.cpp 165 ValueRange::ValueRange (const VariableType& type, const ConstValueAccess& minVal, const ConstValueAccess& maxVal)
170 getMin() = minVal.value();
174 ValueRange::ValueRange (const VariableType& type, const Scalar* minVal, const Scalar* maxVal)
179 getMin() = ConstValueAccess(type, minVal).value();
  /external/deqp/modules/gles2/accuracy/
es2aVaryingInterpolationTests.cpp 100 InterpolationCase (Context& context, const char* name, const char* desc, glu::Precision precision, const tcu::Vec3& minVal, const tcu::Vec3& maxVal, bool projective);
112 InterpolationCase::InterpolationCase (Context& context, const char* name, const char* desc, glu::Precision precision, const tcu::Vec3& minVal, const tcu::Vec3& maxVal, bool projective)
115 , m_min (minVal)
299 Vec3 minVal;
322 addChild(new InterpolationCase(m_context, baseName.c_str(), "", (glu::Precision)precision, coordRanges[coordNdx].minVal, coordRanges[coordNdx].maxVal, false));
323 addChild(new InterpolationCase(m_context, (baseName + "_proj").c_str(), "", (glu::Precision)precision, coordRanges[coordNdx].minVal, coordRanges[coordNdx].maxVal, true));
  /external/deqp/modules/gles3/accuracy/
es3aVaryingInterpolationTests.cpp 103 InterpolationCase (Context& context, const char* name, const char* desc, glu::Precision precision, const tcu::Vec3& minVal, const tcu::Vec3& maxVal, bool projective);
115 InterpolationCase::InterpolationCase (Context& context, const char* name, const char* desc, glu::Precision precision, const tcu::Vec3& minVal, const tcu::Vec3& maxVal, bool projective)
118 , m_min (minVal)
306 Vec3 minVal;
329 addChild(new InterpolationCase(m_context, baseName.c_str(), "", (glu::Precision)precision, coordRanges[coordNdx].minVal, coordRanges[coordNdx].maxVal, false));
330 addChild(new InterpolationCase(m_context, (baseName + "_proj").c_str(), "", (glu::Precision)precision, coordRanges[coordNdx].minVal, coordRanges[coordNdx].maxVal, true));
  /external/opencv3/modules/ml/src/
inner_functions.cpp 45 ParamGrid::ParamGrid() { minVal = maxVal = 0.; logStep = 1; }
48 minVal = std::min(_minVal, _maxVal);
svm.cpp 97 if( pg.minVal > pg.maxVal )
99 if( pg.minVal < DBL_EPSILON )
370 grid.minVal = 0.1;
376 grid.minVal = 1e-5;
382 grid.minVal = 0.01;
388 grid.minVal = 0.01;
394 grid.minVal = 0.1;
400 grid.minVal = 0.01;
    [all...]
  /external/opencv3/modules/ts/include/opencv2/ts/
cuda_test.hpp 60 CV_EXPORTS int randomInt(int minVal, int maxVal);
61 CV_EXPORTS double randomDouble(double minVal, double maxVal);
62 CV_EXPORTS cv::Size randomSize(int minVal, int maxVal);
63 CV_EXPORTS cv::Scalar randomScalar(double minVal, double maxVal);
64 CV_EXPORTS cv::Mat randomMat(cv::Size size, int type, double minVal = 0.0, double maxVal = 255.0);
  /external/deqp/framework/common/
tcuImageCompare.cpp 46 Vec4 minVal;
55 minVal = refMin;
65 minVal[0] = de::min(minVal[0], resMin[0]);
66 minVal[1] = de::min(minVal[1], resMin[1]);
67 minVal[2] = de::min(minVal[2], resMin[2]);
68 minVal[3] = de::min(minVal[3], resMin[3])
    [all...]
tcuTextureUtil.hpp 118 void fillWithComponentGradients (const PixelBufferAccess& access, const Vec4& minVal, const Vec4& maxVal);
129 void estimatePixelValueRange (const ConstPixelBufferAccess& access, Vec4& minVal, Vec4& maxVal);
  /external/opencv3/samples/cpp/
points_classifier.cpp 337 double minVal = 0;
338 minMaxLoc(classCounters, &minVal, 0, 0, 0);
339 if( minVal == 0 )
  /external/opencv3/modules/core/test/
test_rand.cpp 189 double minVal = dist_type == CV_RAND_UNI ? A[c] : A[c] - B[c]*4;
191 double scale = HSZ/(maxVal - minVal);
192 double delta = -minVal*scale;
213 if( (minVal <= val && val < maxVal) || (depth >= CV_32F && val == maxVal) )
  /external/valgrind/include/
pub_tool_wordfm.h 113 // case, the caller must supply via minVal and maxVal, the value
124 UWord minKey, UWord minVal,
  /external/vulkan-validation-layers/libs/glm/gtx/
simd_vec4.hpp 276 //! Returns min(max(x, minVal), maxVal) for each component in x
277 //! using the floating-point values minVal and maxVal.
282 detail::fvec4SIMD const & minVal,
287 float const & minVal,
  /external/deqp/modules/gles3/functional/
es3fFragmentOutputTests.cpp 646 Vec4 minVal (range.x());
655 minVal = tcu::max(minVal, fmtInfo.valueMin);
659 m_testCtx.getLog() << TestLog::Message << "out" << curInVec << " value range: " << valueRangeToString(numScalars, minVal, maxVal) << TestLog::EndMessage;
671 Vec4 c = minVal + (maxVal-minVal)*f;
682 IVec4 minVal (range.x());
693 minVal = select(minVal, tcu::max(minVal, fmtMinVal), isZero)
    [all...]
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
EventRecurrence.java 674 * @param minVal Minimum allowed value.
679 public static int parseIntRange(String str, int minVal, int maxVal, boolean allowZero) {
686 if (val < minVal || val > maxVal || (val == 0 && !allowZero)) {
699 * @param minVal Minimum allowed value.
704 public static int[] parseNumberList(String listStr, int minVal, int maxVal,
711 values[0] = parseIntRange(listStr, minVal, maxVal, allowZero);
717 values[i] = parseIntRange(valueStrs[i], minVal, maxVal, allowZero);
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
btVector3.h     [all...]
  /external/opencv3/modules/calib3d/test/
test_solvepnp_ransac.cpp 104 const double minVal = 1.0e-3;
110 rvec.at<double>(i,0) = rng.uniform(minVal, maxVal);
111 tvec.at<double>(i,0) = rng.uniform(minVal, maxVal/10);
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
UT_reduce.java 123 float minVal = Float.POSITIVE_INFINITY;
129 if (input[idx] < minVal) {
130 minVal = input[idx];
UT_reduce_backward.java 123 float minVal = Float.POSITIVE_INFINITY;
129 if (input[idx] < minVal) {
130 minVal = input[idx];
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_reduce_backward.java 133 float minVal = Float.POSITIVE_INFINITY;
139 if (input[idx] < minVal) {
140 minVal = input[idx];
  /cts/suite/audio_quality/test_description/processing/
check_spectrum_playback.py 127 (passFail, minVal, maxVal, amp) = do_check_spectrum_playback(data, samplingRate, fLow,\

Completed in 3284 milliseconds

12 3 4 5