Home
last modified time | relevance | path

Searched refs:rounded (Results 1 – 25 of 390) sorted by relevance

12345678910>>...16

/third_party/icu/docs/userguide/format_parse/numbers/
Drounding-modes.md83 (shown dotted in the chart) are rounded to the nearest even digit. This is often
95 Values exactly on the 0.5 (half) mark are rounded down (next smaller absolute
100 Values exactly on the 0.5 (half) mark are rounded up (next larger absolute
105 All values are rounded towards the next smaller absolute value (rounded towards
113 All values are rounded towards the next greater absolute value (away from zero).
117 Values exactly on the 0.5 (half) mark are rounded toward positive infinity (+∞).
123 Values exactly on the 0.5 (half) mark are rounded towards negative infinity (-∞).
127 All values are rounded towards positive infinity (+∞). Also known as RI for
132 All values are rounded towards negative infinity (-∞). Also known as RMI for
/third_party/mesa3d/src/compiler/nir/
Dnir_opt_shrink_vectors.c81 unsigned rounded = round_up_components(last_bit); in shrink_dest_to_read_mask() local
82 assert(rounded <= def->num_components); in shrink_dest_to_read_mask()
83 last_bit = rounded; in shrink_dest_to_read_mask()
198 unsigned rounded = round_up_components(num_components); in opt_shrink_vectors_alu() local
199 assert(rounded <= def->num_components); in opt_shrink_vectors_alu()
200 num_components = rounded; in opt_shrink_vectors_alu()
316 unsigned rounded = round_up_components(num_components); in opt_shrink_vectors_load_const() local
317 assert(rounded <= def->num_components); in opt_shrink_vectors_load_const()
318 num_components = rounded; in opt_shrink_vectors_load_const()
/third_party/skia/modules/skottie/src/layers/shapelayer/
DRoundCorners.cpp45 std::vector<sk_sp<sksg::GeometryNode>> rounded; in AttachRoundGeometryEffect() local
46 rounded.reserve(geos.size()); in AttachRoundGeometryEffect()
49 rounded.push_back( in AttachRoundGeometryEffect()
54 return rounded; in AttachRoundGeometryEffect()
/third_party/flutter/skia/modules/pathkit/tests/
Deffects.spec.js102 let rounded = drawStar().stroke({
109 expect(stroked.equals(rounded)).toBe(false);
113 reportPath(rounded, 'stroke_round_square', done);
116 rounded.delete();
/third_party/skia/modules/pathkit/tests/
Deffects.spec.js102 let rounded = drawStar().stroke({
109 expect(stroked.equals(rounded)).toBe(false);
113 reportPath(rounded, 'stroke_round_square', done);
116 rounded.delete();
/third_party/ntfs-3g/libntfs-3g/
Dcompress.c1076 s32 rounded; in ntfs_comp_set() local
1141 rounded = ((compsz - 1) | (clsz - 1)) + 1; in ntfs_comp_set()
1142 memset(&outbuf[compsz], 0, rounded - compsz); in ntfs_comp_set()
1143 written = write_clusters(vol, rl, offs, rounded, outbuf); in ntfs_comp_set()
1144 if (written != rounded) { in ntfs_comp_set()
1630 s32 rounded; in ntfs_flush() local
1647 rounded = ((count - 1) | (clsz - 1)) + 1; in ntfs_flush()
1648 if (rounded > count) in ntfs_flush()
1649 memset(&outbuf[count], 0, rounded - count); in ntfs_flush()
1651 offs, rounded, outbuf); in ntfs_flush()
[all …]
/third_party/rust/crates/cxx/book/diagram/
Doverview.tex22 \node[draw, rounded corners=5, inner xsep=30pt, inner ysep=2pt]
24 \node[draw, rounded corners, inner xsep=10pt, inner ysep=6pt, text depth=1pt]
26 \node[draw, rounded corners, inner xsep=10pt, inner ysep=6pt, text depth=1pt]
/third_party/mesa3d/src/panfrost/midgard/
Dmidgard_opt_dce.c86 unsigned rounded = mir_round_bytemask_up(live[ins->dest], round_size); in midgard_opt_dead_code_eliminate_block() local
87 unsigned cmask = mir_from_bytemask(rounded, type_size); in midgard_opt_dead_code_eliminate_block()
/third_party/protobuf/python/google/protobuf/internal/
Dtype_checkers.py88 rounded = float('{0:.{1}g}'.format(original, precision))
89 while TruncateToFourByteFloat(rounded) != original:
91 rounded = float('{0:.{1}g}'.format(original, precision))
92 return rounded
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/ui/
Dgeometry.dart283 /// operand (a double), rounded towards zero.
491 /// [double]), rounded towards zero.
999 /// operand (a double), rounded towards zero.
1068 /// An immutable rounded rectangle with the custom radii for all four corners.
1070 /// Construct a rounded rectangle from its left, top, right, and bottom edges,
1089 /// Construct a rounded rectangle from its left, top, right, and bottom edges,
1108 /// Construct a rounded rectangle from its bounding box and the same radii
1126 /// Construct a rounded rectangle from its bounding box and a radius that is
1144 /// Construct a rounded rectangle from its left, top, right, and bottom edges,
1172 /// Construct a rounded rectangle from its bounding box and and topLeft,
[all …]
/third_party/flutter/engine/flutter/lib/ui/
Dgeometry.dart279 /// operand (a double), rounded towards zero.
476 /// [double]), rounded towards zero.
955 /// operand (a double), rounded towards zero.
1017 /// An immutable rounded rectangle with the custom radii for all four corners.
1019 /// Construct a rounded rectangle from its left, top, right, and bottom edges,
1037 /// Construct a rounded rectangle from its left, top, right, and bottom edges,
1056 /// Construct a rounded rectangle from its bounding box and the same radii
1074 /// Construct a rounded rectangle from its bounding box and a radius that is
1092 /// Construct a rounded rectangle from its left, top, right, and bottom edges,
1120 /// Construct a rounded rectangle from its bounding box and and topLeft,
[all …]
/third_party/vk-gl-cts/framework/common/
DtcuBilinearImageCompare.cpp80 const deUint32 rounded = (sum + half) >> (NUM_SUBPIXEL_BITS*2); in interpolateChannel() local
82 DE_ASSERT(de::inRange<deUint32>(rounded, 0, 0xff)); in interpolateChannel()
83 return (deUint8)rounded; in interpolateChannel()
/third_party/skia/experimental/lowp-basic/
Dlerp-study.cpp66 int32_t rounded = temp + 32768; in full_res_lerp() local
67 return rounded >> 16; in full_res_lerp()
Dbilerp-study.cpp64 int64_t rounded = temp + (1LL << 31); in full_res_bilerp() local
65 return rounded >> 32; in full_res_bilerp()
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/
DARB_shader_precision.txt140 a+b, a-b, a*b correctly rounded
143 a*b+c correctly rounded single operation or
144 sequence of two correctly rounded operations
151 conversions correctly rounded
/third_party/flutter/flutter/packages/flutter/lib/src/material/
Dinput_border.dart28 /// rounded rectangle around the input decorator's container.
132 /// rounded rectangle around the input decorator's container.
154 /// The radii of the border's rounded rectangle corners.
251 /// Draws a rounded rectangle around an [InputDecorator]'s container.
265 /// Creates a rounded rectangle outline border for an [InputDecorator].
313 /// The radii of the border's rounded rectangle corners.
452 /// Draw a rounded rectangle around [rect] using [borderRadius].
456 /// The top side of the rounded rectangle may be interrupted by a single gap
/third_party/flutter/flutter/packages/flutter/lib/src/painting/
Dcontinuous_rectangle_border.dart13 /// sides and the rounded corners.
29 /// * [RoundedRectangleBorder] Which creates rectangles with rounded corners,
30 /// however its straight sides change into a rounded corner with a circular
Drounded_rectangle_border.dart15 /// A rectangular border with rounded corners.
17 /// Typically used with [ShapeDecoration] to draw a box with a rounded
26 /// describe a rounded rectangle.
28 /// Creates a rounded rectangle border.
/third_party/openGLES/extensions/ARB/
DARB_shader_precision.txt150 a+b, a-b, a*b correctly rounded
153 a*b+c correctly rounded single operation or
154 sequence of two correctly rounded operations
161 conversions correctly rounded
/third_party/vk-gl-cts/external/vulkan-docs/src/appendices/
Dspirvenv.txt1281 <<spirvenv-correctly-rounded, correctly rounded>>, as described below.
1343 [[spirvenv-correctly-rounded]]
1345 Operations described as "`correctly rounded`" will return the infinitely
1346 precise result, [eq]#x#, rounded so as to be representable in
1351 These execution modes affect only correctly rounded SPIR-V instructions.
1421 2+| Correctly rounded.
1423 2+| Correctly rounded.
1425 2+| Correctly rounded.
1445 2+| Correctly rounded.
1506 2+| Correctly rounded.
[all …]
/third_party/python/Objects/
Dfloatobject.c928 double rounded; in double_round() local
962 rounded = _Py_dg_strtod(mybuf, NULL); in double_round()
964 if (errno == ERANGE && fabs(rounded) >= 1.) in double_round()
968 result = PyFloat_FromDouble(rounded); in double_round()
1047 double x, rounded; in float___round___impl() local
1054 rounded = round(x); in float___round___impl()
1055 if (fabs(x-rounded) == 0.5) in float___round___impl()
1057 rounded = 2.0*round(x/2.0); in float___round___impl()
1058 return PyLong_FromDouble(rounded); in float___round___impl()
/third_party/flutter/engine/flutter/lib/web_ui/test/
Dpath_test.dart84 test('Should detect rounded rectangular path', () {
94 test('Should detect non rounded rectangular path if empty', () {
106 'Should detect non rounded rectangular path if there are '
/third_party/node/deps/npm/node_modules/color-convert/
DREADME.md29 All functions have a rounded and unrounded variant. By default, return values are rounded. To get t…
/third_party/musl/libc-test/src/math/ucb/
DREADME7 correctly rounded and follow c99 annex F.
/third_party/ntfs-3g/include/ntfs-3g/
Dcompress.h33 s64 offs, s64 to_write, s64 rounded,

12345678910>>...16