Home
last modified time | relevance | path

Searched refs:dx (Results 1 – 25 of 1110) sorted by relevance

12345678910>>...45

/third_party/ffmpeg/libavcodec/
Dttaencdsp.c23 static void ttaenc_filter_process_c(int32_t *qm, int32_t *dx, int32_t *dl, in ttaenc_filter_process_c() argument
27 qm[0] -= dx[0]; qm[1] -= dx[1]; qm[2] -= dx[2]; qm[3] -= dx[3]; in ttaenc_filter_process_c()
28 qm[4] -= dx[4]; qm[5] -= dx[5]; qm[6] -= dx[6]; qm[7] -= dx[7]; in ttaenc_filter_process_c()
30 qm[0] += dx[0]; qm[1] += dx[1]; qm[2] += dx[2]; qm[3] += dx[3]; in ttaenc_filter_process_c()
31 qm[4] += dx[4]; qm[5] += dx[5]; qm[6] += dx[6]; qm[7] += dx[7]; in ttaenc_filter_process_c()
37 dx[0] = dx[1]; dx[1] = dx[2]; dx[2] = dx[3]; dx[3] = dx[4]; in ttaenc_filter_process_c()
40 dx[4] = ((dl[4] >> 30) | 1); in ttaenc_filter_process_c()
41 dx[5] = ((dl[5] >> 30) | 2) & ~1; in ttaenc_filter_process_c()
42 dx[6] = ((dl[6] >> 30) | 2) & ~1; in ttaenc_filter_process_c()
43 dx[7] = ((dl[7] >> 30) | 4) & ~3; in ttaenc_filter_process_c()
Dttadsp.c23 static void tta_filter_process_c(int32_t *qmi, int32_t *dx, int32_t *dl, in tta_filter_process_c() argument
29 qm[0] -= dx[0]; qm[1] -= dx[1]; qm[2] -= dx[2]; qm[3] -= dx[3]; in tta_filter_process_c()
30 qm[4] -= dx[4]; qm[5] -= dx[5]; qm[6] -= dx[6]; qm[7] -= dx[7]; in tta_filter_process_c()
32 qm[0] += dx[0]; qm[1] += dx[1]; qm[2] += dx[2]; qm[3] += dx[3]; in tta_filter_process_c()
33 qm[4] += dx[4]; qm[5] += dx[5]; qm[6] += dx[6]; qm[7] += dx[7]; in tta_filter_process_c()
39 dx[0] = dx[1]; dx[1] = dx[2]; dx[2] = dx[3]; dx[3] = dx[4]; in tta_filter_process_c()
42 dx[4] = ((dl[4] >> 30) | 1); in tta_filter_process_c()
43 dx[5] = ((dl[5] >> 30) | 2) & ~1; in tta_filter_process_c()
44 dx[6] = ((dl[6] >> 30) | 2) & ~1; in tta_filter_process_c()
45 dx[7] = ((dl[7] >> 30) | 4) & ~3; in tta_filter_process_c()
/third_party/flutter/skia/src/core/
DSkBitmapProcState_matrixProcs.cpp32 SkFixed dx, in can_truncate_to_fixed_for_decal() argument
39 if (dx <= SK_Fixed1 / 256) { in can_truncate_to_fixed_for_decal()
54 const uint64_t lastFx = fx + sk_64_mul(dx, count - 1); in can_truncate_to_fixed_for_decal()
64 static void decal_nofilter_scale(uint32_t dst[], SkFixed fx, SkFixed dx, int count) { in decal_nofilter_scale() argument
69 (fx + dx) >> 16); in decal_nofilter_scale()
70 fx += dx+dx; in decal_nofilter_scale()
75 case 2: ((uint16_t*)dst)[1] = SkToU16((fx + dx) >> 16); in decal_nofilter_scale()
102 const SkFractionalInt dx = s.fInvSxFractionalInt; in nofilter_scale() local
106 const SkFixed fixedDx = SkFractionalIntToFixed(dx); in nofilter_scale()
117 tile(SkFractionalIntToFixed(fx + dx), maxX)); in nofilter_scale()
[all …]
/third_party/typescript/tests/baselines/reference/
DthisTypeInObjectLiterals2.types86 moveBy(dx: number, dy: number, dz?: number): void;
87 >moveBy : (dx: number, dy: number, dz?: number | undefined) => void
88 >dx : number
95dx, dy, dz) { this.x += dx; this.y += dy; if (this.z && dz) { this…
105 moveBy(dx, dy, dz) {
106 >moveBy : (dx: number, dy: number, dz: number | undefined) => void
107 >dx : number
111 this.x += dx;
112 >this.x += dx : number
116 >dx : number
[all …]
DtargetTypeTest1.types15 public add(dx: number, dy: number): Point;
16 >add : (dx: number, dy: number) => Point
17 >dx : number
81 // dx, dy, and return type inferred using target typing
82 Point.prototype.add = function(dx, dy) {
83 >Point.prototype.add = function(dx, dy) { return new Point(this.x + dx, this.y + dy);} : (dx: nu…
84 >Point.prototype.add : (dx: number, dy: number) => Point
88 >add : (dx: number, dy: number) => Point
89 >function(dx, dy) { return new Point(this.x + dx, this.y + dy);} : (dx: number, dy: number) => P…
90 >dx : number
[all …]
DcastTest.types52 add(dx: number, dy: number): Point;
53 >add : (dx: number, dy: number) => Point
54 >dx : number
68 ><Point> ({ x: 0, y: 0, add: function(dx, dy) { return new Point(this.x + dx, this.…
69 …nction(dx, dy) { return new Point(this.x + dx, this.y + dy); }, mult: function(p) { r…
70 …unction(dx, dy) { return new Point(this.x + dx, this.y + dy); }, mult: function(p) { …
80 add: function(dx, dy) {
81 >add : (dx: number, dy: number) => Point
82 >function(dx, dy) { return new Point(this.x + dx, this.y + dy); } : (dx: number, dy: numb…
83 >dx : number
[all …]
DthisTypeInObjectLiterals2.js34 moveBy(dx: number, dy: number, dz?: number): void;
40 moveBy(dx, dy, dz) { argument
41 this.x += dx;
52 moveBy(dx, dy, dz) { argument
53 this.x += dx;
64 moveBy(dx, dy, dz) { argument
65 this.x += dx;
76 moveBy(dx, dy, dz) { argument
77 this.x += dx;
90 moveBy(dx, dy, dz) { argument
[all …]
DassignToPrototype1.types5 add(dx: number, dy: number): void;
6 >add : (dx: number, dy: number) => void
7 >dx : number
11 Point.prototype.add = function(dx, dy) {
12 >Point.prototype.add = function(dx, dy) {} : (dx: number, dy: number) => void
13 >Point.prototype.add : (dx: number, dy: number) => void
17 >add : (dx: number, dy: number) => void
18 >function(dx, dy) {} : (dx: number, dy: number) => void
19 >dx : number
DinstanceAndStaticDeclarations1.types15 var dx = this.x - p.x;
16 >dx : number
35 return Math.sqrt(dx * dx + dy * dy);
36 >Math.sqrt(dx * dx + dy * dy) : number
40 >dx * dx + dy * dy : number
41 >dx * dx : number
42 >dx : number
43 >dx : number
/third_party/flutter/flutter/packages/flutter/test/physics/
Dnewton_test.dart18 expect(friction.dx(0.0), 400.0);
22 expect(friction.dx(1.0), 120.0);
23 expect(friction.dx(2.0), 36.0);
24 expect(friction.dx(3.0), closeTo(10.8, 0.00001));
25 expect(friction.dx(4.0) < 3.5, true);
38 double endVelocity = f.dx(1.0);
49 expect(friction.dx(0.0), 600.0);
54 expect(friction.dx(1.0), closeTo(endVelocity, epsilon));
62 endVelocity = f.dx(1.0);
70 expect(friction.dx(1.0), closeTo(endVelocity, epsilon));
[all …]
/third_party/mesa3d/src/gallium/winsys/svga/drm/
Dvmw_msg.c88 ax, bx, cx, dx, si, di) \ argument
94 "=d"(dx), \
133 ax, bx, cx, dx, si, di) \ argument
142 "=d"(dx), \
157 ax, bx, cx, dx, si, di) \ argument
166 "=d"(dx), \
192 ax, bx, cx, dx, si, di) \ argument
203 "=d"(dx), \
219 ax, bx, cx, dx, si, di) \ argument
230 "=d"(dx), \
[all …]
/third_party/flutter/flutter/packages/flutter/test/painting/
Dtext_painter_test.dart24 expect(caretOffset.dx, 0);
26 expect(caretOffset.dx, painter.width);
33 expect(caretOffset.dx, painter.width);
45 expect(caretOffset.dx, 0);
47 expect(caretOffset.dx, painter.width / 2);
49 expect(caretOffset.dx, painter.width);
56 expect(caretOffset.dx, 0);
58 expect(caretOffset.dx, 0);
74 expect(caretOffset.dx, 0); // ��‍
76 expect(caretOffset.dx, painter.width);
[all …]
/third_party/flutter/skia/third_party/externals/freetype/src/autofit/
Dafangles.c45 af_angle_atan( FT_Fixed dx,
49 FT_Fixed ax = dx;
65 if ( dx < 0 )
124 af_angle_atan( FT_Fixed dx, in af_angle_atan() argument
134 if ( dx < 0 ) in af_angle_atan()
138 else if ( dx == 0 ) in af_angle_atan()
147 if ( dx < 0 ) in af_angle_atan()
149 dx = -dx; in af_angle_atan()
159 tmp = dx; in af_angle_atan()
160 dx = -dy; in af_angle_atan()
[all …]
/third_party/typescript/tests/cases/conformance/types/thisType/
DthisTypeInObjectLiterals2.ts37 moveBy(dx: number, dy: number, dz?: number): void;
43 moveBy(dx, dy, dz) {
44 this.x += dx;
55 moveBy(dx, dy, dz) {
56 this.x += dx;
67 moveBy(dx, dy, dz) {
68 this.x += dx;
79 moveBy(dx, dy, dz) {
80 this.x += dx;
93 moveBy(dx, dy, dz) {
[all …]
/third_party/gstreamer/gstplugins_good/gst/goom/
Ddrawmethods.c42 int x, y, dx, dy, yy, xx; in draw_line() local
97 dx = x2 - x1; in draw_line()
108 dx = x2 - x1; in draw_line()
113 if (dx == 0) { in draw_line()
153 if (dy > dx) { in draw_line()
154 dx = ((dx << 16) / dy); in draw_line()
164 x += dx; in draw_line()
170 dy = ((dy << 16) / dx); in draw_line()
190 if (-dy > dx) { in draw_line()
191 dx = ((dx << 16) / -dy); in draw_line()
[all …]
Dmmx.c149 int x, y, dx, dy, yy, xx; in draw_line_mmx() local
156 dx = x2 - x1; in draw_line_mmx()
167 dx = x2 - x1; in draw_line_mmx()
172 if (dx == 0) { in draw_line_mmx()
212 if (dy > dx) { in draw_line_mmx()
213 dx = ((dx << 16) / dy); in draw_line_mmx()
223 x += dx; in draw_line_mmx()
229 dy = ((dy << 16) / dx); in draw_line_mmx()
249 if (-dy > dx) { in draw_line_mmx()
250 dx = ((dx << 16) / -dy); in draw_line_mmx()
[all …]
Dxmmx.c260 int x, y, dx, dy, yy, xx; in draw_line_xmmx() local
267 dx = x2 - x1; in draw_line_xmmx()
278 dx = x2 - x1; in draw_line_xmmx()
283 if (dx == 0) { in draw_line_xmmx()
323 if (dy > dx) { in draw_line_xmmx()
324 dx = ((dx << 16) / dy); in draw_line_xmmx()
334 x += dx; in draw_line_xmmx()
340 dy = ((dy << 16) / dx); in draw_line_xmmx()
360 if (-dy > dx) { in draw_line_xmmx()
361 dx = ((dx << 16) / -dy); in draw_line_xmmx()
[all …]
/third_party/libinput/test/
Dtest-gestures.c49 double dx, dy; in test_gesture_swipe_3fg() local
95 dx = libinput_event_gesture_get_dx(gevent); in test_gesture_swipe_3fg()
97 ck_assert(dx == 0.0); in test_gesture_swipe_3fg()
106 dx = libinput_event_gesture_get_dx(gevent); in test_gesture_swipe_3fg()
109 ck_assert(dx == 0.0); in test_gesture_swipe_3fg()
111 ck_assert(dx < 0.0); in test_gesture_swipe_3fg()
113 ck_assert(dx > 0.0); in test_gesture_swipe_3fg()
122 dx = libinput_event_gesture_get_dx_unaccelerated(gevent); in test_gesture_swipe_3fg()
125 ck_assert(dx == 0.0); in test_gesture_swipe_3fg()
127 ck_assert(dx < 0.0); in test_gesture_swipe_3fg()
[all …]
Dtest-trackball.c137 double dx, dy; in START_TEST() local
153 dx = libinput_event_pointer_get_dx_unaccelerated(ptrev); in START_TEST()
158 ck_assert_double_eq(dx, 1.0); in START_TEST()
162 ck_assert_double_eq(dx, 0.0); in START_TEST()
166 ck_assert_double_eq(dx, -1.0); in START_TEST()
170 ck_assert_double_eq(dx, 0.0); in START_TEST()
187 double dx, dy; in START_TEST() local
203 dx = libinput_event_pointer_get_dx_unaccelerated(ptrev); in START_TEST()
208 ck_assert_double_eq(dx, 0.0); in START_TEST()
212 ck_assert_double_eq(dx, -1.0); in START_TEST()
[all …]
/third_party/skia/include/core/
DSkRect.h302 constexpr SkIRect makeOffset(int32_t dx, int32_t dy) const { in makeOffset()
304 Sk32_sat_add(fLeft, dx), Sk32_sat_add(fTop, dy), in makeOffset()
305 Sk32_sat_add(fRight, dx), Sk32_sat_add(fBottom, dy), in makeOffset()
334 SkIRect makeInset(int32_t dx, int32_t dy) const { in makeInset()
336 Sk32_sat_add(fLeft, dx), Sk32_sat_add(fTop, dy), in makeInset()
337 Sk32_sat_sub(fRight, dx), Sk32_sat_sub(fBottom, dy), in makeInset()
352 SkIRect makeOutset(int32_t dx, int32_t dy) const { in makeOutset()
354 Sk32_sat_sub(fLeft, dx), Sk32_sat_sub(fTop, dy), in makeOutset()
355 Sk32_sat_add(fRight, dx), Sk32_sat_add(fBottom, dy), in makeOutset()
369 void offset(int32_t dx, int32_t dy) { in offset()
[all …]
/third_party/flutter/skia/bench/
DInterpBench.cpp37 virtual void performTest(int16_t dst[], float x, float dx, int count) = 0;
62 void performTest(int16_t dst[], float fx, float dx, int count) override { in performTest() argument
64 SkFixed step = SkFloatToFixed(dx); in performTest()
81 void performTest(int16_t dst[], float fx, float dx, int count) override { in performTest() argument
83 int64_t step = (int64_t)(dx * 65536 * 655536); in performTest()
112 void performTest(int16_t dst[], float fx, float dx, int count) override { in performTest() argument
114 int64_t step = (int64_t)(dx * 65536 * 655536 * 65536); in performTest()
132 void performTest(int16_t dst[], float fx, float dx, int count) override { in performTest() argument
135 tmp = SkFloatToFixed(fx); dst[i + 0] = TILE(tmp, count); fx += dx; in performTest()
136 tmp = SkFloatToFixed(fx); dst[i + 1] = TILE(tmp, count); fx += dx; in performTest()
[all …]
/third_party/skia/bench/
DInterpBench.cpp37 virtual void performTest(int16_t dst[], float x, float dx, int count) = 0;
62 void performTest(int16_t dst[], float fx, float dx, int count) override { in performTest() argument
64 SkFixed step = SkFloatToFixed(dx); in performTest()
81 void performTest(int16_t dst[], float fx, float dx, int count) override { in performTest() argument
83 int64_t step = (int64_t)(dx * 65536 * 655536); in performTest()
112 void performTest(int16_t dst[], float fx, float dx, int count) override { in performTest() argument
114 int64_t step = (int64_t)(dx * 65536 * 655536 * 65536); in performTest()
132 void performTest(int16_t dst[], float fx, float dx, int count) override { in performTest() argument
135 tmp = SkFloatToFixed(fx); dst[i + 0] = TILE(tmp, count); fx += dx; in performTest()
136 tmp = SkFloatToFixed(fx); dst[i + 1] = TILE(tmp, count); fx += dx; in performTest()
[all …]
/third_party/gstreamer/gstplugins_good/gst/effectv/
Dgstdice.c115 gint i, map_x, map_y, map_i, base, dx, dy, di; in gst_dicetv_transform_frame() local
154 for (dx = 0; dx < g_cube_size; dx++) { in gst_dicetv_transform_frame()
164 for (dx = 0; dx < g_cube_size; dx++) { in gst_dicetv_transform_frame()
165 di = base + (dx * video_stride) + (g_cube_size - dy - 1); in gst_dicetv_transform_frame()
175 for (dx = 0; dx < g_cube_size; dx++) { in gst_dicetv_transform_frame()
185 for (dx = 0; dx < g_cube_size; dx++) { in gst_dicetv_transform_frame()
186 di = base + dy + (g_cube_size - dx - 1) * video_stride; in gst_dicetv_transform_frame()
/third_party/flutter/skia/include/core/
DSkRect.h291 SkIRect makeOffset(int32_t dx, int32_t dy) const { in makeOffset()
293 Sk32_sat_add(fLeft, dx), Sk32_sat_add(fTop, dy), in makeOffset()
294 Sk32_sat_add(fRight, dx), Sk32_sat_add(fBottom, dy), in makeOffset()
309 SkIRect makeInset(int32_t dx, int32_t dy) const { in makeInset()
311 Sk32_sat_add(fLeft, dx), Sk32_sat_add(fTop, dy), in makeInset()
312 Sk32_sat_sub(fRight, dx), Sk32_sat_sub(fBottom, dy), in makeInset()
327 SkIRect makeOutset(int32_t dx, int32_t dy) const { in makeOutset()
329 Sk32_sat_sub(fLeft, dx), Sk32_sat_sub(fTop, dy), in makeOutset()
330 Sk32_sat_add(fRight, dx), Sk32_sat_add(fBottom, dy), in makeOutset()
344 void offset(int32_t dx, int32_t dy) { in offset()
[all …]
/third_party/libinput/tools/
Dlibinput-analyze-per-slot-delta.py73 dx, dy = slot.dx / self.resolution[0], slot.dy / self.resolution[1]
75 dx, dy = slot.dx, slot.dy
76 if dx != 0 and dy != 0:
77 t = math.atan2(dx, dy)
88 if dx < 0:
102 dist = math.hypot(dx, dy)
110 if isinstance(dx, int) and isinstance(dy, int):
112 direction, color, dx, dy, reset
116 direction, color, dx, dy, reset
136 dx = 0 variable in Slot
[all …]

12345678910>>...45