HomeSort by relevance Sort by last modified time
    Searched refs:rmax (Results 1 - 22 of 22) sorted by null

  /external/valgrind/perf/
ffbench.c 244 double mapbase, mapscale, /* x, */ rmin, rmax, imin, imax; local
281 rmin = 1e10; rmax = -1e10;
292 rmax = max(r, rmax);
298 rmin, rmax, imin, imax);
303 mapscale = 255 / (rmax - rmin);
  /external/tensorflow/tensorflow/contrib/lite/toco/
tooling_util.h 154 const double rmax = minmax.max; local
158 CHECK_GE(rmax, 0.);
159 if (rmin == rmax) {
162 CHECK_EQ(rmax, 0.);
171 const double scale = (rmax - rmin) / (qmax_double - qmin_double);
177 // We know two such pairs: (rmin, qmin) and (rmax, qmax).
182 const double zero_point_from_max = qmax_double - rmax / scale;
186 std::abs(qmax_double) + std::abs(rmax / scale);
  /external/v8/src/compiler/
operation-typer.cc 222 double rmax = rhs->AsRange()->Max(); local
224 results[1] = lmin * rmax;
226 results[3] = lmax * rmax;
232 (rmin == -V8_INFINITY || rmax == +V8_INFINITY)) ||
674 double const rmax = rhs->Max(); local
682 double rabs = std::max(std::abs(rmin), std::abs(rmax)) - 1;
722 double rmax = rhs->Max(); local
730 if (rmin == 0 && rmax == 0) {
736 max = rmax;
739 if (lmax < 0 || rmax < 0)
759 double rmax = rhs->Max(); local
790 double rmax = rhs->Max(); local
    [all...]
  /frameworks/base/rs/java/android/renderscript/
RenderScriptGL.java 88 private void validateRange(int umin, int upref, int rmin, int rmax) {
89 if (umin < rmin || umin > rmax) {
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
pitch_ol.cpp 100 rmax = pointer to max(<s[i]*s[j]>), (Word32)
107 rmax contains the newly calculated max(<s[i]*s[j]>)
184 Word32 *rmax, // o : max(<s[i]*s[j]>)
234 *rmax = max;
302 Word32 *rmax, /* o : max(<s[i]*s[j]>) */
378 *rmax = max;
482 rmax = pointer to max(<s[i]*s[j]>), (Word32)
490 rmax contains the newly calculated max(<s[i]*s[j]>)
561 rmax = rmax
    [all...]
  /sdk/eclipse/scripts/
gen_icon.py 41 rmax = zoom/2
  /external/swiftshader/third_party/subzero/bloat/
webtreemap.js 111 var rmax = rmin; // Largest child.
118 if (size > rmax)
119 rmax = size;
126 var score = Math.max(5*space*space*rmax / (rsum*rsum),
  /hardware/google/av/codec2/tests/
C2ComponentInterface_test.cpp 372 auto rmax = prim2Value(range.max); local
375 ASSERT_LE(rmin, rmax);
379 for (auto v = rmin; v <= rmax; v = TField(v + rstep)) {
385 if (rmax < std::numeric_limits<TField>::max()) {
386 invalidValues->emplace_back(TField(rmax + 1));
415 for (auto v = rmin; v <= rmax; v = TField(v * num / denom)) {
422 if (rmax < std::numeric_limits<TField>::max()) {
423 invalidValues->emplace_back(TField(rmax + 1));
  /system/core/libpixelflinger/
trap.cpp 180 GGLcoord rmin, GGLcoord rmax, GGLcoord rr)
183 if (d2 >= rmax) return 0;
240 GGLcoord rmax = (rad + sqr2Over2)*(rad + sqr2Over2); local
249 covPtr[i] = coverageNice(x, y, rmin, rmax, rr);
262 GGLcoord rmin, GGLcoord rmax, GGLcoord scale)
265 if (d2 >= rmax) return 0;
305 GGLcoord rmax = rad + sqr2Over2; local
308 rmax *= rmax;
309 scale = 0x800000 / (rmax - rmin)
    [all...]
  /external/eigen/lapack/
dlamch.f 37 *> = 'O' or 'o', DLAMCH := rmax
48 *> rmax = overflow threshold - (base**emax)*(1-eps)
slamch.f 41 *> = 'O' or 'o', SLAMCH := rmax
52 *> rmax = overflow threshold - (base**emax)*(1-eps)
  /external/mesa3d/src/mesa/swrast/
s_points.c 307 const GLfloat rmax = radius + 0.7071F; local
309 const GLfloat rmax2 = rmax * rmax;
  /external/libvncserver/libvncserver/
cursor.c 570 int rmax, rshift; local
576 rmax = s->serverFormat.redMax;
583 rmask = (rmax << rshift);
  /external/tensorflow/tensorflow/python/layers/
normalization.py 87 renorm_clipping: A dictionary that may map keys 'rmax', 'rmin', 'dmax' to
90 `r` clipped to [rmin, rmax], and `d` to [-dmax, dmax]. Missing rmax, rmin,
174 keys = ['rmax', 'rmin', 'dmax']
448 rmin, rmax, dmax = [self.renorm_clipping.get(key)
449 for key in ['rmin', 'rmax', 'dmax']]
452 if rmax is not None:
453 r = math_ops.minimum(r, rmax)
722 renorm_clipping: A dictionary that may map keys 'rmax', 'rmin', 'dmax' t
    [all...]
normalization_test.py     [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_setup.c 1342 const float rmax = halfSize + 0.7071F; local
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/kernels/internal/reference/
reference_ops.h     [all...]
  /external/flac/libFLAC/
stream_encoder.c 4032 FLAC__uint32 rmax; local
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/kernels/internal/optimized/
optimized_ops.h     [all...]
  /external/skia/fuzz/
FuzzCanvas.cpp 80 inline void fuzz_enum_range(Fuzz* fuzz, T* value, Min rmin, Max rmax) {
82 fuzz->nextRange((U*)value, (U)rmin, (U)rmax);
    [all...]
  /external/skqp/fuzz/
FuzzCanvas.cpp 80 inline void fuzz_enum_range(Fuzz* fuzz, T* value, Min rmin, Max rmax) {
82 fuzz->nextRange((U*)value, (U)rmin, (U)rmax);
    [all...]
  /external/libxml2/
xmlschemas.c     [all...]

Completed in 1923 milliseconds