/external/llvm/test/CodeGen/Hexagon/ |
maxd.ll | 4 define i64 @f(i64 %src, i64 %maxval) nounwind readnone { 6 %cmp = icmp slt i64 %maxval, %src 7 %cond = select i1 %cmp, i64 %src, i64 %maxval
|
maxud.ll | 4 define i64 @f(i64 %src, i64 %maxval) nounwind readnone { 6 %cmp = icmp ult i64 %maxval, %src 7 %cond = select i1 %cmp, i64 %src, i64 %maxval
|
maxuw.ll | 4 define i32 @f(i32 %src, i32 %maxval) nounwind readnone { 6 %cmp = icmp ult i32 %maxval, %src 7 %cond = select i1 %cmp, i32 %src, i32 %maxval
|
maxw.ll | 4 define i32 @f(i32 %src, i32 %maxval) nounwind readnone { 6 %cmp = icmp slt i32 %maxval, %src 7 %cond = select i1 %cmp, i32 %src, i32 %maxval
|
mind.ll | 4 define i64 @f(i64 %src, i64 %maxval) nounwind readnone { 6 %cmp = icmp sgt i64 %maxval, %src 7 %cond = select i1 %cmp, i64 %src, i64 %maxval
|
minud.ll | 4 define i64 @f(i64 %src, i64 %maxval) nounwind readnone { 6 %cmp = icmp ugt i64 %maxval, %src 7 %cond = select i1 %cmp, i64 %src, i64 %maxval
|
minuw.ll | 4 define i32 @f(i32 %src, i32 %maxval) nounwind readnone { 6 %cmp = icmp ugt i32 %maxval, %src 7 %cond = select i1 %cmp, i32 %src, i32 %maxval
|
minw.ll | 4 define i32 @f(i32 %src, i32 %maxval) nounwind readnone { 6 %cmp = icmp sgt i32 %maxval, %src 7 %cond = select i1 %cmp, i32 %src, i32 %maxval
|
/external/opencv3/modules/imgproc/src/opencl/ |
gftt.cl | 60 float maxval = -FLT_MAX; 69 maxval = max(maxval, *(__global const float *)(srcptr + src_index)); 73 localmem_max[lid] = maxval; 77 localmem_max[lid - WGS2_ALIGNED] = max(maxval, localmem_max[lid - WGS2_ALIGNED]); 97 float maxval = -FLT_MAX; 101 maxval = max(maxval, dst[x]); 103 dst[0] = maxval * qualityLevel; 135 float maxVal = val [all...] |
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ |
LineRegion.java | 25 private Number maxVal;
42 return maxVal.doubleValue() - minVal.doubleValue();
51 return value.doubleValue() >= minVal.doubleValue() && value.doubleValue() <= maxVal.doubleValue();
74 if(line2Min.doubleValue() <= this.minVal.doubleValue() && line2Max.doubleValue() >= this.maxVal.doubleValue()) {
92 return maxVal;
95 public void setMaxVal(Number maxVal) {
96 if(maxVal == null) {
99 this.maxVal = maxVal;
|
/external/opencv3/modules/core/perf/ |
perf_minmaxloc.cpp | 19 double minVal, maxVal; 31 TEST_CYCLE() minMaxLoc(src, &minVal, &maxVal, &minLoc, &maxLoc); 34 SANITY_CHECK(maxVal, 1e-12);
|
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/ |
XYStepCalculator.java | 35 * @param maxVal
38 public static XYStep getStep(XYPlot plot, XYAxisType axisType, RectF rect, Number minVal, Number maxVal) {
42 step = getStep(plot.getDomainStepMode(), rect.width(), plot.getDomainStepValue(), minVal, maxVal);
45 step = getStep(plot.getRangeStepMode(), rect.height(), plot.getRangeStepValue(), minVal, maxVal);
51 public static XYStep getStep(XYStepMode typeXY, float plotPixelSize, double stepValue, Number minVal, Number maxVal) {
59 stepPix = (float)(stepValue/ ValPixConverter.valPerPix(minVal.doubleValue(), maxVal.doubleValue(), plotPixelSize));
65 stepVal = ValPixConverter.valPerPix(minVal.doubleValue(), maxVal.doubleValue(), plotPixelSize)*stepPix;
70 stepVal = ValPixConverter.valPerPix(minVal.doubleValue(), maxVal.doubleValue(), plotPixelSize)*stepPix;
|
/external/opencv3/modules/cudaimgproc/src/cuda/ |
gftt.cu | 70 float maxVal = val; 72 maxVal = ::fmax(tex2D(eigTex, j - 1, i - 1), maxVal); 73 maxVal = ::fmax(tex2D(eigTex, j , i - 1), maxVal); 74 maxVal = ::fmax(tex2D(eigTex, j + 1, i - 1), maxVal); 76 maxVal = ::fmax(tex2D(eigTex, j - 1, i), maxVal); 77 maxVal = ::fmax(tex2D(eigTex, j + 1, i), maxVal) [all...] |
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/xy/ |
XYStepCalculatorTest.java | 46 double maxVal = 100;
47 XYStep step = XYStepCalculator.getStep(XYStepMode.SUBDIVIDE, plotSize, numSegments, minVal, maxVal);
54 maxVal = 2000000000;
55 step = XYStepCalculator.getStep(XYStepMode.SUBDIVIDE, plotSize, numSegments, minVal, maxVal);
|
/external/libjpeg-turbo/ |
rdppm.c | 70 JSAMPLE *rescale; /* => maxval-remapping array, or NULL */ 71 int maxval; member in struct:__anon16701 95 read_pbm_integer (j_compress_ptr cinfo, FILE * infile, int maxval) 120 if (val > maxval) 134 * maxval = MAXJSAMPLE, which is the normal case for 8-bit data. 140 /* This version is for reading text-format PGM files with any maxval */ 147 int maxval = source->maxval; local 151 *ptr++ = rescale[read_pbm_integer(cinfo, infile, maxval)]; 159 /* This version is for reading text-format PPM files with any maxval */ 166 int maxval = source->maxval; local 300 unsigned int w, h, maxval; local [all...] |
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/ |
state_construct.c | 35 int16_t maxVal; 53 maxVal = WebRtcIlbcfix_kFrgQuantMod[idxForMax]; 62 maxVal is in Q8 and result is in Q(-1) */ 63 *tmp1 = (int16_t)((maxVal * WebRtcIlbcfix_kStateSq3[*tmp2] + 2097152) >> 71 maxVal is in Q5 and result is in Q(-1) */ 72 *tmp1 = (int16_t)((maxVal * WebRtcIlbcfix_kStateSq3[*tmp2] + 262144) >> 80 maxVal is in Q3 and result is in Q(-1) */ 81 *tmp1 = (int16_t)((maxVal * WebRtcIlbcfix_kStateSq3[*tmp2] + 65536) >>
|
/external/opencv3/modules/imgproc/perf/ |
perf_threshold.cpp | 31 double maxval = theRNG().uniform(1, 254); local 36 TEST_CYCLE_MULTIRUN(runs) threshold(src, dst, thresh, maxval, threshType); 50 double maxval = theRNG().uniform(1, 254); local 55 TEST_CYCLE_MULTIRUN(runs) threshold(src, dst, 0, maxval, THRESH_BINARY|THRESH_OTSU);
|
/external/opencv3/samples/cpp/tutorial_code/calib3d/stereoBM/ |
SBM_Sample.cpp | 49 double minVal; double maxVal; 51 minMaxLoc( imgDisparity16S, &minVal, &maxVal ); 53 printf("Min disp: %f Max value: %f \n", minVal, maxVal); 56 imgDisparity16S.convertTo( imgDisparity8U, CV_8UC1, 255/(maxVal - minVal));
|
/hardware/bsp/intel/peripheral/libupm/examples/javascript/ |
ta12200.js | 31 var maxVal, current; 34 maxVal = myElectricitySensor.highestValue(); 35 current = myElectricitySensor.milliAmps(maxVal); 37 outputStr = "Max ADC Value: " + maxVal +
|
/external/deqp/modules/gles2/functional/ |
es2fShaderAlgorithmTests.cpp | 214 << "mediump float maxVal = max(max(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);" 228 << " if (r == maxVal) H = (g - b) * ooDiff;" 229 << " else if (g == maxVal) H = 2.0 + (b - r) * ooDiff; [all...] |
/external/opencv3/samples/cpp/tutorial_code/ShapeDescriptors/ |
pointPolygonTest_demo.cpp | 53 double minVal; double maxVal; 54 minMaxLoc( raw_dist, &minVal, &maxVal, 0, 0, Mat() ); 55 minVal = abs(minVal); maxVal = abs(maxVal); 66 { drawing.at<Vec3b>(j,i)[2] = (uchar)(255 - raw_dist.at<float>(j,i)*255/maxVal); }
|
/external/opencv3/modules/core/src/opencl/ |
minmaxloc.cl | 86 if (maxval < temp.p) \ 88 maxval = temp.p; \ 93 maxval = MAX(maxval, temp.p); 147 dstT1 maxval = MIN_VAL; 224 if (maxval < temp) 226 maxval = temp; 230 maxval = MAX(maxval, temp); 271 localmem_max[lid] = maxval; [all...] |
/external/deqp/framework/randomshaders/ |
rsgUtils.cpp | 68 float maxVal = valueRange.component(ndx).getMax().asFloat(); 69 dst.component(ndx).asFloat() = getQuantizedFloat(rnd, minVal, maxVal, quantizeStep); 77 int maxVal = valueRange.component(ndx).getMin().asBool() ? 1 : 0; 78 dst.component(ndx).asBool() = rnd.getInt(minVal, maxVal) == 1; 88 int maxVal = valueRange.component(ndx).getMax().asInt(); 89 dst.component(ndx).asInt() = rnd.getInt(minVal, maxVal); 196 bool maxVal = minVal ? true : rnd.getBool(); 198 valueRange.getMax().component(ndx).asBool() = maxVal; 211 int maxVal = minVal + rangeLen; 214 valueRange.getMax().component(ndx).asInt() = maxVal; [all...] |
/external/opencv3/modules/ts/include/opencv2/ts/ |
ocl_test.hpp | 204 int randomInt(int minVal, int maxVal) 206 return rng.uniform(minVal, maxVal); 209 double randomDouble(double minVal, double maxVal) 211 return rng.uniform(minVal, maxVal); 214 double randomDoubleLog(double minVal, double maxVal) 217 double logMax = log((double)maxVal + 1); 220 CV_Assert(v >= minVal && (v < maxVal || (v == minVal && v == maxVal))); 224 Size randomSize(int minVal, int maxVal) 227 return cv::Size((int)randomDoubleLog(minVal, maxVal), (int)randomDoubleLog(minVal, maxVal)) [all...] |
/libcore/luni/src/test/java/libcore/java/util/ |
OldAndroidTreeMapTest.java | 46 int maxVal = Integer.MIN_VALUE; 54 if (val > maxVal) { 55 maxVal = val; 69 if (SPEW) System.out.println("maxVal = " + maxVal); 71 assertEquals(maxVal, tm.lastKey().intValue());
|