HomeSort by relevance Sort by last modified time
    Searched refs:rounded (Results 26 - 50 of 91) sorted by null

12 3 4

  /external/grpc-grpc/src/csharp/Grpc.Core.Tests/Internal/
TimespecTest.cs 89 // nanos are rounded to ticks are rounded up
  /external/skia/samplecode/
SampleBigGradient.cpp 165 RECT rounded = toRECT(r.round()); variable
166 FillRect(hdc, &rounded, CreateSolidBrush(cr));
  /external/skqp/samplecode/
SampleBigGradient.cpp 165 RECT rounded = toRECT(r.round()); variable
166 FillRect(hdc, &rounded, CreateSolidBrush(cr));
  /external/v8/src/objects/
js-plural-rules.cc 217 double rounded = formattable.getDouble(status); local
220 icu::UnicodeString result = icu_plural_rules->select(rounded);
  /external/python/cpython3/Modules/_decimal/tests/
deccheck.py 154 C.Rounded: P.Rounded,
296 maxcontext.flags[P.Rounded] or \
378 the exact result x is rounded according to mode.
398 def check_ulpdiff(self, exact, rounded):
406 y = rounded
407 if rounded.is_infinite():
408 y = _dec_from_triple(rounded._sign, '10', context.p.Emax)
410 # err = (rounded - exact) / ulp(rounded)
    [all...]
  /external/dng_sdk/source/
dng_matrix.cpp 278 real64 rounded = Round_int32 (fData [j] [k] * factor) * invFactor; local
280 error = fData [j] [k] - rounded;
282 fData [j] [k] = rounded;
  /external/skia/src/core/
SkRecorder.cpp 61 SkIRect rounded = bounds.roundOut(); local
62 this->resetCanvas(rounded.right(), rounded.bottom());
  /external/skqp/src/core/
SkRecorder.cpp 61 SkIRect rounded = bounds.roundOut(); local
62 this->resetCanvas(rounded.right(), rounded.bottom());
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
floatobject.c 1031 double wholepart; /* integral portion of x, rounded toward 0 */
1041 * double may yield an approximation, and if that's rounded up,
1069 /* version of _Py_double_round that uses the correctly-rounded string<->double
1085 double rounded, m; local
    [all...]
  /external/python/cpython2/Objects/
floatobject.c 1039 double wholepart; /* integral portion of x, rounded toward 0 */
1049 * double may yield an approximation, and if that's rounded up,
1077 /* version of _Py_double_round that uses the correctly-rounded string<->double
1093 double rounded, m; local
1102 rounded = round(x);
1103 if (fabs(rounded - x) == 0.5)
1105 rounded = x + (x > 0.0 ? 0.5 : -0.5);
1106 return PyFloat_FromDouble(rounded);
    [all...]
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
fake_quantize_ops.cc 80 xla::XlaOp rounded = local
82 return xla::Add(xla::Mul(rounded, input_scale), nudged_input_min);
  /external/python/cpython3/Python/
pytime.c 100 double rounded = round(x); local
101 if (fabs(x-rounded) == 0.5) {
103 rounded = 2.0*round(x/2.0);
105 return rounded;
111 /* volatile avoids optimization changing how numbers are rounded */
137 /* volatile avoids optimization changing how numbers are rounded */
195 /* volatile avoids optimization changing how numbers are rounded */
384 /* volatile avoids optimization changing how numbers are rounded */
449 /* volatile avoids optimization changing how numbers are rounded */
  /external/skia/modules/skottie/src/
SkottieShapeLayer.cpp 344 std::vector<sk_sp<sksg::GeometryNode>> rounded; local
345 rounded.reserve(geos.size());
349 rounded.push_back(roundEffect);
357 return rounded;
  /external/skqp/modules/skottie/src/
SkottieShapeLayer.cpp 344 std::vector<sk_sp<sksg::GeometryNode>> rounded; local
345 rounded.reserve(geos.size());
349 rounded.push_back(roundEffect);
357 return rounded;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
Dfp.java 914 * @return rounded value
922 * @return rounded value
930 * @return rounded value
1048 Dfp rounded; local
    [all...]
  /external/mesa3d/src/intel/compiler/
brw_vec4_visitor.cpp 541 dst_reg rounded(this, glsl_type::vec4_type);
542 emit(RNDE(rounded, src_reg(scaled)));
545 emit(MOV(u, src_reg(rounded)));
563 dst_reg rounded(this, glsl_type::vec4_type);
564 emit(RNDE(rounded, src_reg(scaled)));
567 emit(MOV(i, src_reg(rounded)));
    [all...]
  /external/v8/src/wasm/baseline/x64/
liftoff-assembler-x64.h 1101 DoubleRegister rounded = kScratchDoubleReg; local
    [all...]
  /external/libavc/common/arm/
ih264_default_weighted_pred_a9q.s 50 @* This function gets two ht x wd blocks, calculates their rounded-average and
224 @* This function gets two ht x wd blocks, calculates their rounded-average and
  /external/libvpx/libvpx/vpx_dsp/arm/
deblock_neon.c 395 const int16x8_t rounded = vaddq_s16(sum_s, rv); local
397 return vqshrun_n_s16(rounded, 4);
  /external/syzkaller/prog/
alloc.go 24 memAllocGranule = 64 // 1 bit per that many bytes (all allocations are rounded to this size)
  /external/autotest/client/site_tests/power_Thermal/
power_Thermal.py 161 The passed in float value is rounded to the nearest integer.
  /external/libhevc/common/arm/
ihevc_inter_pred_chroma_copy.s 116 sub r7,r7,r8 @check the rounded height value
  /external/mesa3d/src/amd/addrlib/core/
addrelemlib.cpp 208 UINT_64 truncated, rounded; local
240 rounded = static_cast<INT_32>((round + truncated) >> 8);
241 //if (rounded > ((1<<bits) - 1))
242 // rounded = ((1<<bits) - 1);
243 *pResult = static_cast<INT_32>(rounded); //(INT_32)final;
    [all...]
  /external/v8/src/wasm/baseline/ia32/
liftoff-assembler-ia32.h 1219 DoubleRegister rounded = local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
floatobject.c 1030 double wholepart; /* integral portion of x, rounded toward 0 */
1040 * double may yield an approximation, and if that's rounded up,
1068 /* version of _Py_double_round that uses the correctly-rounded string<->double
1084 double rounded, m; local
    [all...]

Completed in 2558 milliseconds

12 3 4