Home
last modified time | relevance | path

Searched refs:rmax (Results 1 – 9 of 9) sorted by relevance

/external/valgrind/perf/
Dffbench.c244 double mapbase, mapscale, /* x, */ rmin, rmax, imin, imax; in main() local
281 rmin = 1e10; rmax = -1e10; in main()
292 rmax = max(r, rmax); in main()
298 rmin, rmax, imin, imax); in main()
303 mapscale = 255 / (rmax - rmin); in main()
/external/v8/src/compiler/
Dtyper.cc797 double rmax = rhs->Max(); in JSBitwiseOrTyper() local
805 if (rmin == 0 && rmax == 0) { in JSBitwiseOrTyper()
811 max = rmax; in JSBitwiseOrTyper()
814 if (lmax < 0 || rmax < 0) { in JSBitwiseOrTyper()
830 double rmax = rhs->Max(); in JSBitwiseAndTyper() local
835 lmin >= 0 && rmin >= 0 ? std::min(lmax, rmax) : std::max(lmax, rmax); in JSBitwiseAndTyper()
844 max = std::min(max, rmax); in JSBitwiseAndTyper()
856 double rmax = rhs->Max(); in JSBitwiseXorTyper() local
857 if ((lmin >= 0 && rmin >= 0) || (lmax < 0 && rmax < 0)) { in JSBitwiseXorTyper()
861 if ((lmax < 0 && rmin >= 0) || (lmin >= 0 && rmax < 0)) { in JSBitwiseXorTyper()
[all …]
/external/mesa3d/src/mesa/swrast/
Ds_points.c308 const GLfloat rmax = radius + 0.7071F; in smooth_point() local
310 const GLfloat rmax2 = rmax * rmax; in smooth_point()
/external/libvncserver/libvncserver/
Dcursor.c570 int rmax, rshift; in rfbShowCursor() local
576 rmax = s->serverFormat.redMax; in rfbShowCursor()
583 rmask = (rmax << rshift); in rfbShowCursor()
/external/opencv3/modules/imgproc/test/
Dtest_imgwarp_strict.cpp306 int rmin = MAX(dy - radius, 0), rmax = MIN(dy + radius, dsize.height); in validate_results() local
309 … std::cout << "opencv result:\n" << dst(Range(rmin, rmax), Range(cmin, cmax)) << std::endl; in validate_results()
310 …std::cout << "reference result:\n" << reference_dst(Range(rmin, rmax), Range(cmin, cmax)) << std::… in validate_results()
Dtest_imgwarp.cpp1522 int rmin = MAX(dy - radius, 0), rmax = MIN(dy + radius, dsize.height); in TEST() local
1526 … std::cout << "actual result:\n" << actual(Range(rmin, rmax), Range(cmin, cmax)) << std::endl; in TEST()
1527 … std::cout << "expected result:\n" << expected(Range(rmin, rmax), Range(cmin, cmax)) << std::endl; in TEST()
/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_setup.c1292 const float rmax = halfSize + 0.7071F; in sp_setup_point() local
1294 const float rmax2 = rmax * rmax; in sp_setup_point()
/external/flac/libFLAC/
Dstream_encoder.c4041 FLAC__uint32 rmax; in precompute_partition_info_escapes_() local
4052 rmax = 0; in precompute_partition_info_escapes_()
4057 rmax |= ~r; in precompute_partition_info_escapes_()
4059 rmax |= r; in precompute_partition_info_escapes_()
4062 raw_bits_per_partition[partition] = rmax? FLAC__bitmath_ilog2(rmax) + 2 : 1; in precompute_partition_info_escapes_()
/external/libxml2/
Dxmlschemas.c16776 xmlSchemaCheckParticleRangeOK(int rmin, int rmax, in xmlSchemaCheckParticleRangeOK() argument
16782 (rmax > bmax)) in xmlSchemaCheckParticleRangeOK()