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

1 2 3

  /external/smack/src/com/kenai/jbosh/
AbstractIntegerAttr.java 53 * @param minVal minimum value to allow
57 protected final void checkMinValue(int minVal) throws BOSHException {
59 if (intVal < minVal) {
62 + "Must be >= " + minVal));
  /external/chromium_org/third_party/skia/src/core/
SkTileGrid.h 107 T* minVal = NULL;
116 if (NULL == minVal || (*candidate) < (*minVal)) {
117 minVal = candidate;
120 } else if (!((*minVal) < (*candidate))) {
121 // We don't require operator==; if !(candidate<minVal) && !(minVal<candidate),
122 // candidate==minVal and we have to add this tile to the range searched.
128 if (minVal != NULL) {
131 if (pos != SkTileGrid::kTileFinished && (*tileData[tile])[pos] == minVal) {
    [all...]
  /external/skia/src/core/
SkTileGrid.h 107 T* minVal = NULL;
116 if (NULL == minVal || (*candidate) < (*minVal)) {
117 minVal = candidate;
120 } else if (!((*minVal) < (*candidate))) {
121 // We don't require operator==; if !(candidate<minVal) && !(minVal<candidate),
122 // candidate==minVal and we have to add this tile to the range searched.
128 if (minVal != NULL) {
131 if (pos != SkTileGrid::kTileFinished && (*tileData[tile])[pos] == minVal) {
    [all...]
  /external/aac/libAACenc/src/
noisedet.cpp 170 FIXP_DBL fhelp1, fhelp2, fhelp3, fhelp4, maxVal, minVal;
190 minVal = fixMin(fhelp1, fhelp2);
191 minVal = fixMin(minVal, fhelp3);
192 minVal = fixMin(minVal, fhelp4);
197 refVal = minVal << leadingBits;
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/libmkv/
EbmlWriter.c 26 int64_t minVal = 0xff;
29 if (val < minVal)
32 minVal = (minVal << 7);
87 unsigned long minVal;
90 minVal = 0x7fLU; /* mask to compare for byte size */
93 if (ui < minVal) {
97 minVal <<= 7;
  /external/libvpx/libvpx/third_party/libmkv/
EbmlWriter.c 26 int64_t minVal = 0xff;
29 if (val < minVal)
32 minVal = (minVal << 7);
87 unsigned long minVal;
90 minVal = 0x7fLU; /* mask to compare for byte size */
93 if (ui < minVal) {
97 minVal <<= 7;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libmkv/
EbmlWriter.c 26 int64_t minVal = 0xff;
29 if (val < minVal)
32 minVal = (minVal << 7);
87 unsigned long minVal;
90 minVal = 0x7fLU; /* mask to compare for byte size */
93 if (ui < minVal) {
97 minVal <<= 7;
  /external/skia/src/utils/
SkTextureCompressor.cpp 82 uint8_t minVal = 255;
85 minVal = SkTMin(pixels[i], minVal);
89 SkASSERT(!is_extremal(minVal));
93 generate_palette(palette, maxVal, minVal);
116 (static_cast<uint64_t>(minVal) << 8) |
124 uint8_t minVal = 255;
131 minVal = SkTMin(pixels[i], minVal);
135 SkASSERT(!is_extremal(minVal));
    [all...]
  /external/deqp/framework/randomshaders/
rsgUtils.cpp 67 float minVal = valueRange.component(ndx).getMin().asFloat();
69 dst.component(ndx).asFloat() = getQuantizedFloat(rnd, minVal, maxVal, quantizeStep);
76 int minVal = valueRange.component(ndx).getMin().asBool() ? 1 : 0;
78 dst.component(ndx).asBool() = rnd.getInt(minVal, maxVal) == 1;
87 int minVal = valueRange.component(ndx).getMin().asInt();
89 dst.component(ndx).asInt() = rnd.getInt(minVal, maxVal);
195 bool minVal = rnd.getBool();
196 bool maxVal = minVal ? true : rnd.getBool();
197 valueRange.getMin().component(ndx).asBool() = minVal;
210 int minVal = minIntVal + rnd.getInt(0, maxRangeLen-rangeLen)
    [all...]
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*minStep;
210 float maxVal = minVal + step*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();
  /libcore/luni/src/test/java/libcore/java/util/
OldAndroidTreeMapTest.java 45 int minVal = Integer.MAX_VALUE;
51 if (val < minVal) {
52 minVal = val;
67 if (SPEW) System.out.println("minVal = " + minVal);
70 assertEquals(minVal, tm.firstKey().intValue());
  /external/chromium_org/third_party/skia/src/utils/
SkTextureCompressor.cpp 80 uint8_t minVal = 255;
83 minVal = SkMin32(minVal, block[i]);
91 palettes[0][1] = minVal;
93 palettes[0][i+1] = ((7-i)*maxVal + i*minVal) / 7;
97 palettes[1][0] = minVal;
100 palettes[1][i+1] = ((5-i)*maxVal + i*minVal) / 5;
  /external/deqp/modules/gles2/functional/
es2fShaderAlgorithmTests.cpp 213 << "mediump float minVal = min(min(r, g), b);"
215 << "mediump float L = (minVal + maxVal) * 0.5;"
216 << "if (minVal == maxVal)"
223 << " S = (maxVal - minVal) / (maxVal + minVal);"
225 << " S = (maxVal - minVal) / (2.0 - maxVal - minVal);"
227 << " mediump float ooDiff = 1.0 / (maxVal - minVal);"
239 float minVal = min(min(r, g), b);
241 float L = (minVal + maxVal) * 0.5f
    [all...]
  /external/deqp/framework/common/
tcuTextureUtil.cpp 427 static inline float linearInterpolate (float t, float minVal, float maxVal)
429 return minVal + (maxVal - minVal) * t;
584 static void fillWithComponentGradients1D (const PixelBufferAccess& access, const Vec4& minVal, const Vec4& maxVal)
591 float r = linearInterpolate(s, minVal.x(), maxVal.x());
592 float g = linearInterpolate(s, minVal.y(), maxVal.y());
593 float b = linearInterpolate(s, minVal.z(), maxVal.z());
594 float a = linearInterpolate(s, minVal.w(), maxVal.w());
600 static void fillWithComponentGradients2D (const PixelBufferAccess& access, const Vec4& minVal, const Vec4& maxVal)
609 float r = linearInterpolate(( s + t) *0.5f, minVal.x(), maxVal.x())
    [all...]
tcuTextureUtil.hpp 90 void fillWithComponentGradients (const PixelBufferAccess& access, const Vec4& minVal, const Vec4& maxVal);
99 void estimatePixelValueRange (const ConstPixelBufferAccess& access, Vec4& minVal, Vec4& maxVal);
tcuImageCompare.cpp 45 Vec4 minVal;
54 minVal = refMin;
64 minVal[0] = de::min(minVal[0], resMin[0]);
65 minVal[1] = de::min(minVal[1], resMin[1]);
66 minVal[2] = de::min(minVal[2], resMin[2]);
67 minVal[3] = de::min(minVal[3], resMin[3])
    [all...]
  /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/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)
300 Vec3 minVal;
323 addChild(new InterpolationCase(m_context, baseName.c_str(), "", (glu::Precision)precision, coordRanges[coordNdx].minVal, coordRanges[coordNdx].maxVal, false));
324 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)
307 Vec3 minVal;
330 addChild(new InterpolationCase(m_context, baseName.c_str(), "", (glu::Precision)precision, coordRanges[coordNdx].minVal, coordRanges[coordNdx].maxVal, false));
331 addChild(new InterpolationCase(m_context, (baseName + "_proj").c_str(), "", (glu::Precision)precision, coordRanges[coordNdx].minVal, coordRanges[coordNdx].maxVal, true));
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/
webrunner.js     [all...]
  /external/valgrind/main/include/
pub_tool_wordfm.h 112 // case, the caller must supply via minVal and maxVal, the value
123 UWord minKey, UWord minVal,
  /external/deqp/modules/gles3/functional/
es3fFragmentOutputTests.cpp 581 Vec4 minVal (range.x());
590 minVal = tcu::max(minVal, fmtInfo.valueMin);
594 m_testCtx.getLog() << TestLog::Message << "out" << curInVec << " value range: " << minVal << " -> " << maxVal << TestLog::EndMessage;
606 Vec4 c = minVal + (maxVal-minVal)*f;
617 IVec4 minVal (range.x());
628 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...]

Completed in 1965 milliseconds

1 2 3