HomeSort by relevance Sort by last modified time
    Searched full:minvalue (Results 51 - 75 of 309) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/toolchain-utils/crosperf/
column_chart.py 50 vAxis: {minValue: 0}})
  /packages/inputmethods/LatinIME/java/res/xml/
prefs_screen_advanced.xml 37 latin:minValue="@integer/config_min_longpress_timeout"
prefs_screen_debug.xml 88 latin:minValue="50"
  /external/deqp/modules/glshared/
glsStateQueryUtil.cpp 1120 void verifyIntegerMin (tcu::ResultCollector& result, QueriedState& state, int minValue)
1126 if (minValue > 0 && state.getBoolAccess() != true)
1137 if (state.getIntAccess() < minValue)
1140 buf << "Expected greater or equal to " << minValue << ", got " << state.getIntAccess();
1148 if (state.getInt64Access() < minValue)
1151 buf << "Expected greater or equal to " << minValue << ", got " << state.getInt64Access();
1159 if (state.getFloatAccess() < deInt32ToFloatRoundToNegInf(minValue) || deIsNaN(state.getFloatAccess()))
1162 buf << "Expected greater or equal to " << minValue << ", got " << state.getFloatAccess();
1322 void verifyFloatMin (tcu::ResultCollector& result, QueriedState& state, float minValue)
1328 if (minValue > 0.0f && state.getBoolAccess() != true
    [all...]
glsStateQueryUtil.hpp 401 void verifyIntegerMin (tcu::ResultCollector& result, QueriedState& state, int minValue);
405 void verifyFloatMin (tcu::ResultCollector& result, QueriedState& state, float minValue);
419 void verifyStateIntegerMin (tcu::ResultCollector& result, glu::CallLogWrapper& gl, glw::GLenum target, int minValue, QueryType type);
423 void verifyStateFloatMin (tcu::ResultCollector& result, glu::CallLogWrapper& gl, glw::GLenum target, float minValue, QueryType type);
429 void verifyStateIndexedIntegerMin (tcu::ResultCollector& result, glu::CallLogWrapper& gl, glw::GLenum target, int index, int minValue, QueryType type);
432 void verifyStateFramebufferIntegerMin (tcu::ResultCollector& result, glu::CallLogWrapper& gl, glw::GLenum target, glw::GLenum pname, int minValue, QueryType type);
  /external/deqp/doc/testspecs/GLES31/
functional.shaders.atomic_counter.txt 78 minValue
107 if pos < minValue or pos > maxValue:
  /external/harfbuzz_ng/src/
hb-ot-var-fvar-table.hh 67 Fixed minValue; /* The minimum coordinate value for the axis. */
118 info->min_value = MIN<float> (info->default_value, axis.minValue / 65536.);
  /external/libvpx/libvpx/test/
avg_test.cc 293 TEST_P(AverageTest, MinValue) {
312 TEST_P(IntProRowTest, MinValue) {
327 TEST_P(IntProColTest, MinValue) {
342 TEST_P(SatdTest, MinValue) {
386 TEST_P(BlockErrorTestFP, MinValue) {
minmax_test.cc 57 TEST_P(MinMaxTest, MinValue) {
  /external/mesa3d/src/mesa/main/
image.c 840 GLint minValue)
844 if (*dstX0 < minValue) {
846 assert(*dstX1 > minValue); /* X1 should be inside left edge */
847 t = (GLfloat) (minValue - *dstX0) / (GLfloat) (*dstX1 - *dstX0);
850 *dstX0 = minValue;
854 else if (*dstX1 < minValue) {
856 assert(*dstX0 > minValue); /* X0 should be inside left edge */
857 t = (GLfloat) (minValue - *dstX1) / (GLfloat) (*dstX0 - *dstX1);
860 *dstX1 = minValue;
  /external/skia/src/core/
SkColorMatrixFilterRowMajor255.cpp 103 SkScalar minValue = row[4] / 255;
108 minValue += row[i];
110 return (maxValue > 1) || (minValue < 0);
  /external/skqp/src/core/
SkColorMatrixFilterRowMajor255.cpp 103 SkScalar minValue = row[4] / 255;
108 minValue += row[i];
110 return (maxValue > 1) || (minValue < 0);
  /packages/services/Car/tests/vehiclehal_test/src/com/android/car/vehiclehal/test/
E2ePerformanceTest.java 230 float minValue = cfg.getMinValue(areaId);
232 float curValue = minValue;
245 curValue = minValue;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/UefiEfiIfrSupportLib/
UefiIfrOpCodeCreation.c 517 MinMaxStep.u8.MinValue = (UINT8) Minimum;
523 MinMaxStep.u16.MinValue = (UINT16) Minimum;
529 MinMaxStep.u32.MinValue = (UINT32) Minimum;
535 MinMaxStep.u64.MinValue = Minimum;
  /external/deqp/external/vulkancts/modules/vulkan/renderpass/
vktRenderPassMultisampleTests.cpp     [all...]
  /external/parameter-framework/upstream/parameter/
IntegerParameterType.h 94 bool checkValueAgainstRange(const std::string &strValue, type value, type minValue,
  /frameworks/layoutlib/bridge/src/android/view/
BridgeInflater.java 456 String minValue = attrs.getAttributeValue(BridgeConstants.NS_TOOLS_URI, "minValue");
457 if (minValue != null) {
458 numberPicker.setMinValue(Integer.parseInt(minValue));
  /packages/apps/LegacyCamera/src/com/android/camera/
CameraSettings.java 207 int minValue = (int) Math.ceil(min * step);
208 CharSequence entries[] = new CharSequence[maxValue - minValue + 1];
209 CharSequence entryValues[] = new CharSequence[maxValue - minValue + 1];
210 for (int i = minValue; i <= maxValue; ++i) {
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/internal/report/
report.go 194 var minValue int64
201 if nodeMin > 0 && (minValue == 0 || nodeMin < minValue) {
202 minValue = nodeMin
206 if minValue == 0 {
207 minValue = maxValue
211 minValue = int64(float64(minValue) * r)
215 _, minUnit := measurement.Scale(minValue, o.SampleUnit, "minimum")
219 if minUnit != maxUnit && minValue*100 < maxValue && o.OutputFormat != Callgrind
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/internal/report/
report.go 194 var minValue int64
201 if nodeMin > 0 && (minValue == 0 || nodeMin < minValue) {
202 minValue = nodeMin
206 if minValue == 0 {
207 minValue = maxValue
211 minValue = int64(float64(minValue) * r)
215 _, minUnit := measurement.Scale(minValue, o.SampleUnit, "minimum")
219 if minUnit != maxUnit && minValue*100 < maxValue && o.OutputFormat != Callgrind
    [all...]
  /cts/tests/tests/content/res/font/
variable_width_dash_font_source.ttx 220 <MinValue>100.0</MinValue>
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
softmax_op.cc 51 b->Reduce(logits, XlaHelpers::MinValue(b, type), max_func, {kClassDim});
93 b->Reduce(logits, XlaHelpers::MinValue(b, type), max_func, {kClassDim});
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ndr64types.h 134 NDR64_INT64 MinValue;
568 NDR64_UINT32 MinValue;
  /external/deqp/modules/gles3/functional/
es3fShaderCommonFunctionTests.cpp 68 template<typename T> T randomScalar (de::Random& rnd, T minValue, T maxValue);
69 template<> inline float randomScalar (de::Random& rnd, float minValue, float maxValue) { return rnd.getFloat(minValue, maxValue); }
70 template<> inline deInt32 randomScalar (de::Random& rnd, deInt32 minValue, deInt32 maxValue) { return rnd.getInt(minValue, maxValue); }
71 template<> inline deUint32 randomScalar (de::Random& rnd, deUint32 minValue, deUint32 maxValue) { return minValue + rnd.getUint32() % (maxValue - minValue + 1); }
74 inline tcu::Vector<T, Size> randomVector (de::Random& rnd, const tcu::Vector<T, Size>& minValue, const tcu::Vector<T, Size>& maxValue)
78 res[ndx] = randomScalar<T>(rnd, minValue[ndx], maxValue[ndx])
    [all...]
  /frameworks/rs/script_api/
GenerateTestFiles.cpp 334 } else if (!param.minValue.empty()) {
336 << vectorSize << ", " << seed << ", " << param.minValue << ", " << param.maxValue
353 double minValue = 0.0;
361 minValue = -maxValue;
367 minValue = 0.0;
372 minValue = -maxValue - 1.0;
376 *mJava << minValue << ", " << maxValue << ")";
    [all...]

Completed in 2237 milliseconds

1 23 4 5 6 7 8 91011>>