Searched refs:dx (Results 1 - 25 of 762) sorted by relevance

1234567891011>>

/external/strace/linux/metag/
H A Dget_error.c7 if (check_errno && is_negated_errno(metag_regs.dx[0][0])) {
9 tcp->u_error = -metag_regs.dx[0][0];
11 tcp->u_rval = metag_regs.dx[0][0];
H A Dget_scno.c5 tcp->scno = metag_regs.dx[0][1]; /* syscall number in D1Re0 (D1.0) */
H A Dset_error.c4 metag_regs.dx[0][0] = -tcp->u_error;
11 metag_regs.dx[0][0] = tcp->u_rval;
H A Dget_syscall_args.c9 tcp->u_arg[i] = (&metag_regs.dx[3][1])[-i];
H A Dset_scno.c4 metag_regs.dx[0][1] = scno;
/external/dexmaker/dexmaker-mockito-inline/src/main/java/com/android/dx/mockito/inline/
H A DIllegalClassFormatException.java17 package com.android.dx.mockito.inline;
H A DUnmodifiableClassException.java17 package com.android.dx.mockito.inline;
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/util/
H A DTestUtil.java1 package com.android.dx.util;
/external/skia/src/core/
H A DSkBitmapProcState_utils.h20 * 1. dx > 0
21 * 2. [fx, fx+dx, fx+2dx, fx+3dx, ... fx+(count-1)dx] are all <= maxX
24 * just SkFixed, so we will abort the decal_ call if dx is very small, since
29 SkFixed dx,
33 // if decal_ kept SkFractionalInt precision, this would just be dx <= 0
36 if (dx <= SK_Fixed1 / 256) {
51 const uint64_t lastFx = fx + sk_64_mul(dx, coun
28 can_truncate_to_fixed_for_decal(SkFixed fx, SkFixed dx, int count, unsigned max) argument
[all...]
/external/skqp/src/core/
H A DSkBitmapProcState_utils.h20 * 1. dx > 0
21 * 2. [fx, fx+dx, fx+2dx, fx+3dx, ... fx+(count-1)dx] are all <= maxX
24 * just SkFixed, so we will abort the decal_ call if dx is very small, since
29 SkFixed dx,
33 // if decal_ kept SkFractionalInt precision, this would just be dx <= 0
36 if (dx <= SK_Fixed1 / 256) {
51 const uint64_t lastFx = fx + sk_64_mul(dx, coun
28 can_truncate_to_fixed_for_decal(SkFixed fx, SkFixed dx, int count, unsigned max) argument
[all...]
/external/dexmaker/dexmaker/src/main/java/com/android/dx/
H A DConstants.java17 package com.android.dx;
19 import com.android.dx.rop.cst.CstBoolean;
20 import com.android.dx.rop.cst.CstByte;
21 import com.android.dx.rop.cst.CstChar;
22 import com.android.dx.rop.cst.CstDouble;
23 import com.android.dx.rop.cst.CstFloat;
24 import com.android.dx.rop.cst.CstInteger;
25 import com.android.dx.rop.cst.CstKnownNull;
26 import com.android.dx.rop.cst.CstLong;
27 import com.android.dx
[all...]
H A DUnaryOp.java17 package com.android.dx;
19 import com.android.dx.rop.code.Rop;
20 import com.android.dx.rop.code.Rops;
H A DComparison.java17 package com.android.dx;
19 import com.android.dx.rop.code.Rop;
20 import com.android.dx.rop.code.Rops;
21 import com.android.dx.rop.type.TypeList;
/external/pdfium/third_party/agg23/
H A Dagg_math.h33 float dx = x2 - x1; local
35 return FXSYS_sqrt2(dx, dy);
41 float dx = x2 - x1; local
43 float d = FXSYS_sqrt2(dx, dy);
47 return ((x - x2) * dy / d) - ((y - y2) * dx / d);
50 float cx, float cy, float dx, float dy,
53 float num = ((ay - cy) * (dx - cx)) - ((ax - cx) * (dy - cy));
54 float den = ((bx - ax) * (dy - cy)) - ((by - ay) * (dx - cx));
49 calc_intersection(float ax, float ay, float bx, float by, float cx, float cy, float dx, float dy, float* x, float* y) argument
/external/freetype/src/autofit/
H A Dafangles.c40 * dy * PI / (|dx|+|dy|)
45 af_angle_atan( FT_Fixed dx,
49 FT_Fixed ax = dx;
65 if ( dx < 0 )
124 af_angle_atan( FT_Fixed dx,
134 if ( dx < 0 )
138 else if ( dx == 0 )
147 if ( dx < 0 )
149 dx = -dx;
[all...]
/external/skia/include/effects/
H A DSkBlurDrawLooper.h19 sk_sp<SkDrawLooper> SK_API Make(SkColor color, SkScalar sigma, SkScalar dx, SkScalar dy);
/external/skia/src/opts/
H A DSkBitmapProcState_matrix_neon.h49 const SkFractionalInt dx = s.fInvSxFractionalInt; local
54 const SkFixed fixedDx = SkFractionalIntToFixed(dx);
62 SkFractionalInt dx2 = dx+dx;
66 // now build fx/fx+dx/fx+2dx/fx+3dx
71 fx1 = fx+dx;
72 fx2 = fx1+dx;
73 fx3 = fx2+dx;
173 const SkFractionalInt dx = s.fInvSxFractionalInt; local
[all...]
H A DSkBitmapProcState_matrixProcs_neon.cpp17 static void decal_nofilter_scale_neon(uint32_t dst[], SkFixed fx, SkFixed dx, int count);
18 static void decal_filter_scale_neon(uint32_t dst[], SkFixed fx, SkFixed dx, int count);
145 void decal_nofilter_scale_neon(uint32_t dst[], SkFixed fx, SkFixed dx, int count) { argument
148 SkFixed dx8 = dx * 8;
154 lbase = vsetq_lane_s32(fx + dx, lbase, 1);
155 lbase = vsetq_lane_s32(fx + dx + dx, lbase, 2);
156 lbase = vsetq_lane_s32(fx + dx + dx + dx, lbas
180 decal_filter_scale_neon(uint32_t dst[], SkFixed fx, SkFixed dx, int count) argument
[all...]
/external/skqp/include/effects/
H A DSkBlurDrawLooper.h19 sk_sp<SkDrawLooper> SK_API Make(SkColor color, SkScalar sigma, SkScalar dx, SkScalar dy);
/external/skqp/src/opts/
H A DSkBitmapProcState_matrix_neon.h49 const SkFractionalInt dx = s.fInvSxFractionalInt; local
54 const SkFixed fixedDx = SkFractionalIntToFixed(dx);
62 SkFractionalInt dx2 = dx+dx;
66 // now build fx/fx+dx/fx+2dx/fx+3dx
71 fx1 = fx+dx;
72 fx2 = fx1+dx;
73 fx3 = fx2+dx;
173 const SkFractionalInt dx = s.fInvSxFractionalInt; local
[all...]
/external/skia/gm/
H A Dspritebitmap.cpp26 int dx, int dy, sk_sp<SkImageFilter> filter) {
30 SkRect clipR = SkRect::MakeXYWH(SkIntToScalar(dx),
44 canvas->drawBitmap(bm, SkIntToScalar(dx), SkIntToScalar(dy), &paint);
71 int dx = 10; variable
77 draw_1_bitmap(canvas, bm, false, dx, dy, nullptr);
79 draw_1_bitmap(canvas, bm, false, dx, dy, filter);
81 draw_1_bitmap(canvas, bm, true, dx, dy, nullptr);
83 draw_1_bitmap(canvas, bm, true, dx, dy, filter);
25 draw_1_bitmap(SkCanvas* canvas, const SkBitmap& bm, bool doClip, int dx, int dy, sk_sp<SkImageFilter> filter) argument
/external/skqp/gm/
H A Dspritebitmap.cpp26 int dx, int dy, sk_sp<SkImageFilter> filter) {
30 SkRect clipR = SkRect::MakeXYWH(SkIntToScalar(dx),
44 canvas->drawBitmap(bm, SkIntToScalar(dx), SkIntToScalar(dy), &paint);
71 int dx = 10; variable
77 draw_1_bitmap(canvas, bm, false, dx, dy, nullptr);
79 draw_1_bitmap(canvas, bm, false, dx, dy, filter);
81 draw_1_bitmap(canvas, bm, true, dx, dy, nullptr);
83 draw_1_bitmap(canvas, bm, true, dx, dy, filter);
25 draw_1_bitmap(SkCanvas* canvas, const SkBitmap& bm, bool doClip, int dx, int dy, sk_sp<SkImageFilter> filter) argument
/external/dexmaker/lib/
H A Ddalvik-dx-1.jar ... android/dx/io/ com/android/dx/io/instructions/ com/android/dx/merge/ com/android/dx/rop/ com/android/dx/rop/annotation ...
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
H A DNat384.java15 int[] dx = Nat192.create(), dy = Nat192.create();
16 boolean neg = Nat192.diff(x, 6, x, 0, dx, 0) != Nat192.diff(y, 6, y, 0, dy, 0);
19 Nat192.mul(dx, dy, tt);
34 int[] dx = Nat192.create();
35 Nat192.diff(x, 6, x, 0, dx, 0);
38 Nat192.square(dx, tt);
H A DNat512.java15 int[] dx = Nat256.create(), dy = Nat256.create();
16 boolean neg = Nat256.diff(x, 8, x, 0, dx, 0) != Nat256.diff(y, 8, y, 0, dy, 0);
19 Nat256.mul(dx, dy, tt);
34 int[] dx = Nat256.create();
35 Nat256.diff(x, 8, x, 0, dx, 0);
38 Nat256.square(dx, tt);

Completed in 472 milliseconds

1234567891011>>