Home
last modified time | relevance | path

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

12345678910>>...27

/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/typescript/tests/baselines/reference/
DfindAllRefsWithShorthandPropertyAssignment2.baseline.jsonc2 // var /*FIND ALL REFS*/[|dx|] = "Foo";
4 // module M { export var dx; }
7 // export var y = { dx, z };
9 // M.y.dx;
18 "name": "var dx: string",
33 "text": "dx",
73 // var dx = "Foo";
75 // module M { export var /*FIND ALL REFS*/[|dx|]; }
78 // export var y = { [|dx|], z };
80 // M.y.dx;
[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.types75 >Point : { x: number; y: number; z?: number | undefined; moveBy(dx: number, dy: number, dz?: number…
86 moveBy(dx: number, dy: number, dz?: number): void;
87 >moveBy : (dx: number, dy: number, dz?: number) => 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
[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 …]
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
DtargetTypeTest1.js7 public add(dx: number, dy: number): Point;
32 Point.prototype.add = function(dx, dy) { argument
33 return new Point(this.x + dx, this.y + dy);
44 add: function(dx, dy) { argument
45 return new Point(this.x + dx, this.y + dy);
90 Point.prototype.add = function (dx, dy) { argument
91 return new Point(this.x + dx, this.y + dy);
100 add: function (dx, dy) { argument
101 return new Point(this.x + dx, this.y + dy);
/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/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/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/ffmpeg/libavcodec/x86/
Dttadsp.asm34 cglobal tta_filter_process, 5,5,%2, qm, dx, dl, error, in, shift, round
42 psignd m0, m4, m6 ; filter->qm[i] -= filter->dx[i];
45 paddd m3, m1 ; filter->qm[i] += filter->dx[i];
83 palignr m5, m4, 4 ; filter->dx[0] = filter->dx[1]; filter->dx[1] = filter->dx[2];
84 ; filter->dx[2] = filter->dx[3]; filter->dx[3] = filter->dx[4];
89 psrad m4, m1, 30 ; filter->dx[4] = ((filter->dl[4] >> 30) | 1);
90 por m4, [pd_1224 ] ; filter->dx[5] = ((filter->dl[5] >> 30) | 2) & ~1;
91 pand m4, [pd_n0113] ; filter->dx[6] = ((filter->dl[6] >> 30) | 2) & ~1;
92 ; filter->dx[7] = ((filter->dl[7] >> 30) | 4) & ~3;
Dttaencdsp.asm34 cglobal ttaenc_filter_process, 5,5,%2, qm, dx, dl, error, in, shift, round
42 psignd m0, m4, m6 ; filter->qm[i] -= filter->dx[i];
45 paddd m3, m1 ; filter->qm[i] += filter->dx[i];
83 palignr m5, m4, 4 ; filter->dx[0] = filter->dx[1]; filter->dx[1] = filter->dx[2];
84 ; filter->dx[2] = filter->dx[3]; filter->dx[3] = filter->dx[4];
89 psrad m4, m1, 30 ; filter->dx[4] = ((filter->dl[4] >> 30) | 1);
90 por m4, [pd_1224 ] ; filter->dx[5] = ((filter->dl[5] >> 30) | 2) & ~1;
91 pand m4, [pd_n0113] ; filter->dx[6] = ((filter->dl[6] >> 30) | 2) & ~1;
92 ; filter->dx[7] = ((filter->dl[7] >> 30) | 4) & ~3;
/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 …]
/third_party/skia/src/core/
DSkBitmapProcState_matrixProcs.cpp25 SkFixed dx, in can_truncate_to_fixed_for_decal() argument
32 if (dx <= SK_Fixed1 / 256) { in can_truncate_to_fixed_for_decal()
47 const uint64_t lastFx = fx + sk_64_mul(dx, count - 1); in can_truncate_to_fixed_for_decal()
57 static void decal_nofilter_scale(uint32_t dst[], SkFixed fx, SkFixed dx, int count) { in decal_nofilter_scale() argument
62 (fx + dx) >> 16); in decal_nofilter_scale()
63 fx += dx+dx; in decal_nofilter_scale()
68 case 2: ((uint16_t*)dst)[1] = SkToU16((fx + dx) >> 16); [[fallthrough]]; in decal_nofilter_scale()
94 const SkFractionalInt dx = s.fInvSxFractionalInt; in nofilter_scale() local
98 const SkFixed fixedDx = SkFractionalIntToFixed(dx); in nofilter_scale()
109 tilex(SkFractionalIntToFixed(fx + dx), maxX)); in nofilter_scale()
[all …]
/third_party/musl/porting/liteos_a/kernel/src/math/
Dcbrtl.c33 double_t dr, dt, dx; in cbrtl() local
83 dx = x; in cbrtl()
86 dt = dt * (dx + dx + dr) / (dx + dr + dr); in cbrtl()
90 dt = dt * (dx + dx + dr) / (dx + dr + dr); in cbrtl()

12345678910>>...27