Home
last modified time | relevance | path

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

12345678910>>...44

/external/qemu-pc-bios/vgabios/
Dvbe.c106 mov ax, dx
107 push dx
109 mov dx, # VBE_DISPI_IOPORT_INDEX
111 out dx, ax
113 mov dx, # VBE_DISPI_IOPORT_DATA
114 out dx, ax
115 in ax, dx
116 pop dx
117 cmp dx, ax
147 mov dx, # VBE_DISPI_IOPORT_INDEX
[all …]
Dclext.c391 mov dx, #0x3C4 variable
392 out dx, al variable
393 inc dx
394 in al, dx
398 dec dx
399 out dx, ax variable
401 out dx, ax variable
403 mov dx, #0x3CE variable
404 out dx, ax variable
406 out dx, ax variable
[all …]
Dvgabios.c417 mov dx, #0x3C2
419 outb dx,al
422 mov dx, #0x3C4
424 outb dx,al
425 mov dx, #0x3C5
427 outb dx,al
1493 mov dx, # VGAREG_GRDC_ADDRESS
1495 out dx, ax
1497 out dx, ax
1499 out dx, ax
[all …]
/external/chromium_org/third_party/skia/src/effects/gradients/
DSkClampRange.cpp16 static int chop(int64_t x0, SkFixed edge, int64_t x1, int64_t dx, int count) { in chop() argument
17 SkASSERT(dx > 0); in chop()
26 int64_t n = (edge - x0 + dx - 1) / dx; in chop()
63 int64_t dx = dx0; in init() local
65 int64_t ex = fx + (count - 1) * dx; in init()
88 ex += dx; in init()
94 bool swap = dx < 0; in init()
96 dx = -dx; in init()
99 ccount = (SK_FixedMax - fx + dx - 1) / dx; in init()
101 dx = -dx; in init()
[all …]
/external/skia/src/effects/gradients/
DSkClampRange.cpp16 static int chop(int64_t x0, SkFixed edge, int64_t x1, int64_t dx, int count) { in chop() argument
17 SkASSERT(dx > 0); in chop()
26 int64_t n = (edge - x0 + dx - 1) / dx; in chop()
63 int64_t dx = dx0; in init() local
65 int64_t ex = fx + (count - 1) * dx; in init()
88 ex += dx; in init()
94 bool swap = dx < 0; in init()
96 dx = -dx; in init()
99 ccount = (SK_FixedMax - fx + dx - 1) / dx; in init()
101 dx = -dx; in init()
[all …]
/external/chromium_org/third_party/skia/src/opts/
DSkBitmapProcState_matrixProcs_neon.cpp16 static void decal_nofilter_scale_neon(uint32_t dst[], SkFixed fx, SkFixed dx, int count);
17 static void decal_filter_scale_neon(uint32_t dst[], SkFixed fx, SkFixed dx, int count);
36 void decal_nofilter_scale_neon(uint32_t dst[], SkFixed fx, SkFixed dx, int count) { in decal_nofilter_scale_neon() argument
39 SkFixed dx8 = dx * 8; in decal_nofilter_scale_neon()
45 lbase = vsetq_lane_s32(fx + dx, lbase, 1); in decal_nofilter_scale_neon()
46 lbase = vsetq_lane_s32(fx + dx + dx, lbase, 2); in decal_nofilter_scale_neon()
47 lbase = vsetq_lane_s32(fx + dx + dx + dx, lbase, 3); in decal_nofilter_scale_neon()
48 hbase = lbase + vdupq_n_s32(4 * dx); in decal_nofilter_scale_neon()
67 *xx++ = SkToU16(fx >> 16); fx += dx; in decal_nofilter_scale_neon()
71 void decal_filter_scale_neon(uint32_t dst[], SkFixed fx, SkFixed dx, int count) { in decal_filter_scale_neon() argument
[all …]
DSkBitmapProcState_matrix_clamp_neon.h84 const SkFixed dx = s.fInvSx; in SCALE_NOFILTER_NAME() local
89 (unsigned)((fx + dx * (count - 1)) >> 16) <= maxX) { in SCALE_NOFILTER_NAME()
90 decal_nofilter_scale_neon(xy, fx, dx, count); in SCALE_NOFILTER_NAME()
103 SkFixed dx2 = dx+dx; in SCALE_NOFILTER_NAME()
112 fx1 = fx+dx; in SCALE_NOFILTER_NAME()
113 fx2 = fx1+dx; in SCALE_NOFILTER_NAME()
114 fx3 = fx2+dx; in SCALE_NOFILTER_NAME()
155 *xx++ = TILEX_PROCF(fx, maxX); fx += dx; in SCALE_NOFILTER_NAME()
178 SkFixed dx = s.fInvSx; in AFFINE_NOFILTER_NAME() local
186 SkFixed dx4 = dx * 4; in AFFINE_NOFILTER_NAME()
[all …]
DSkBitmapProcState_opts_SSE2.cpp255 const SkFixed dx = s.fInvSx; in ClampX_ClampY_filter_scale_SSE2() local
269 if (dx > 0 && (unsigned)(fx >> 16) <= maxX && in ClampX_ClampY_filter_scale_SSE2()
270 (unsigned)((fx + dx * (count - 1)) >> 16) < maxX) { in ClampX_ClampY_filter_scale_SSE2()
276 fx += dx; in ClampX_ClampY_filter_scale_SSE2()
281 __m128i wide_dx4 = _mm_set1_epi32(dx * 4); in ClampX_ClampY_filter_scale_SSE2()
282 __m128i wide_fx = _mm_set_epi32(fx + dx * 3, fx + dx * 2, in ClampX_ClampY_filter_scale_SSE2()
283 fx + dx, fx); in ClampX_ClampY_filter_scale_SSE2()
295 fx += dx * 4; in ClampX_ClampY_filter_scale_SSE2()
304 fx += dx; in ClampX_ClampY_filter_scale_SSE2()
314 fx += dx; in ClampX_ClampY_filter_scale_SSE2()
[all …]
/external/skia/src/opts/
DSkBitmapProcState_matrixProcs_neon.cpp16 static void decal_nofilter_scale_neon(uint32_t dst[], SkFixed fx, SkFixed dx, int count);
17 static void decal_filter_scale_neon(uint32_t dst[], SkFixed fx, SkFixed dx, int count);
36 void decal_nofilter_scale_neon(uint32_t dst[], SkFixed fx, SkFixed dx, int count) { in decal_nofilter_scale_neon() argument
39 SkFixed dx8 = dx * 8; in decal_nofilter_scale_neon()
45 lbase = vsetq_lane_s32(fx + dx, lbase, 1); in decal_nofilter_scale_neon()
46 lbase = vsetq_lane_s32(fx + dx + dx, lbase, 2); in decal_nofilter_scale_neon()
47 lbase = vsetq_lane_s32(fx + dx + dx + dx, lbase, 3); in decal_nofilter_scale_neon()
48 hbase = lbase + vdupq_n_s32(4 * dx); in decal_nofilter_scale_neon()
67 *xx++ = SkToU16(fx >> 16); fx += dx; in decal_nofilter_scale_neon()
71 void decal_filter_scale_neon(uint32_t dst[], SkFixed fx, SkFixed dx, int count) { in decal_filter_scale_neon() argument
[all …]
DSkBitmapProcState_matrix_clamp_neon.h84 const SkFixed dx = s.fInvSx; in SCALE_NOFILTER_NAME() local
89 (unsigned)((fx + dx * (count - 1)) >> 16) <= maxX) { in SCALE_NOFILTER_NAME()
90 decal_nofilter_scale_neon(xy, fx, dx, count); in SCALE_NOFILTER_NAME()
103 SkFixed dx2 = dx+dx; in SCALE_NOFILTER_NAME()
112 fx1 = fx+dx; in SCALE_NOFILTER_NAME()
113 fx2 = fx1+dx; in SCALE_NOFILTER_NAME()
114 fx3 = fx2+dx; in SCALE_NOFILTER_NAME()
155 *xx++ = TILEX_PROCF(fx, maxX); fx += dx; in SCALE_NOFILTER_NAME()
178 SkFixed dx = s.fInvSx; in AFFINE_NOFILTER_NAME() local
186 SkFixed dx4 = dx * 4; in AFFINE_NOFILTER_NAME()
[all …]
DSkBitmapProcState_opts_SSE2.cpp255 const SkFixed dx = s.fInvSx; in ClampX_ClampY_filter_scale_SSE2() local
269 if (dx > 0 && (unsigned)(fx >> 16) <= maxX && in ClampX_ClampY_filter_scale_SSE2()
270 (unsigned)((fx + dx * (count - 1)) >> 16) < maxX) { in ClampX_ClampY_filter_scale_SSE2()
276 fx += dx; in ClampX_ClampY_filter_scale_SSE2()
281 __m128i wide_dx4 = _mm_set1_epi32(dx * 4); in ClampX_ClampY_filter_scale_SSE2()
282 __m128i wide_fx = _mm_set_epi32(fx + dx * 3, fx + dx * 2, in ClampX_ClampY_filter_scale_SSE2()
283 fx + dx, fx); in ClampX_ClampY_filter_scale_SSE2()
295 fx += dx * 4; in ClampX_ClampY_filter_scale_SSE2()
304 fx += dx; in ClampX_ClampY_filter_scale_SSE2()
314 fx += dx; in ClampX_ClampY_filter_scale_SSE2()
[all …]
/external/opencv/cvaux/src/
Dcvlines.cpp49 int dx = end.x - start.x, dy = end.y - start.y;
60 if( dx < 0 )
62 dx = -dx;
74 if( dx > dy )
78 if( *dst_num <= dx )
80 *dst_num = dx + 1;
82 err = dx;
83 dx += dx;
85 for( i = dx; i >= 0; i -= 2, dst += 3 )
93 err += dx & mask;
[all …]
/external/dexmaker/src/main/java/com/google/dexmaker/
DConstants.java19 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.rop.cst.CstShort;
28 import com.android.dx.rop.cst.CstString;
[all …]
DTypeId.java19 import com.android.dx.rop.cst.CstType;
37 = new TypeId<Boolean>(com.android.dx.rop.type.Type.BOOLEAN);
40 public static final TypeId<Byte> BYTE = new TypeId<Byte>(com.android.dx.rop.type.Type.BYTE);
44 = new TypeId<Character>(com.android.dx.rop.type.Type.CHAR);
47 …public static final TypeId<Double> DOUBLE = new TypeId<Double>(com.android.dx.rop.type.Type.DOUBLE…
50 public static final TypeId<Float> FLOAT = new TypeId<Float>(com.android.dx.rop.type.Type.FLOAT);
53 public static final TypeId<Integer> INT = new TypeId<Integer>(com.android.dx.rop.type.Type.INT);
56 public static final TypeId<Long> LONG = new TypeId<Long>(com.android.dx.rop.type.Type.LONG);
59 public static final TypeId<Short> SHORT = new TypeId<Short>(com.android.dx.rop.type.Type.SHORT);
62 public static final TypeId<Void> VOID = new TypeId<Void>(com.android.dx.rop.type.Type.VOID);
[all …]
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/
DRegisterAllocator.java17 package com.android.dx.ssa.back;
19 import com.android.dx.rop.code.RegOps;
20 import com.android.dx.rop.code.RegisterSpec;
21 import com.android.dx.rop.code.PlainInsn;
22 import com.android.dx.rop.code.Rops;
23 import com.android.dx.rop.code.SourcePosition;
24 import com.android.dx.rop.code.RegisterSpecList;
25 import com.android.dx.ssa.NormalSsaInsn;
26 import com.android.dx.ssa.RegisterMapper;
27 import com.android.dx.ssa.SsaInsn;
[all …]
DInterferenceGraph.java17 package com.android.dx.ssa.back;
19 import com.android.dx.ssa.SsaMethod;
20 import com.android.dx.ssa.SsaBasicBlock;
21 import com.android.dx.ssa.SsaInsn;
22 import com.android.dx.ssa.PhiInsn;
23 import com.android.dx.ssa.SetFactory;
24 import com.android.dx.rop.code.RegisterSpec;
25 import com.android.dx.util.IntSet;
26 import com.android.dx.util.BitIntSet;
27 import com.android.dx.util.ListIntSet;
/external/freetype/src/autofit/
Dafangles.c105 af_angle_atan( FT_Fixed dx,
109 FT_Fixed ax = dx;
125 if ( dx < 0 )
184 af_angle_atan( FT_Fixed dx, in af_angle_atan() argument
194 if ( dx < 0 ) in af_angle_atan()
198 else if ( dx == 0 ) in af_angle_atan()
207 if ( dx < 0 ) in af_angle_atan()
209 dx = -dx; in af_angle_atan()
219 tmp = dx; in af_angle_atan()
220 dx = -dy; in af_angle_atan()
[all …]
/external/chromium_org/third_party/freetype/src/autofit/
Dafangles.c105 af_angle_atan( FT_Fixed dx,
109 FT_Fixed ax = dx;
125 if ( dx < 0 )
184 af_angle_atan( FT_Fixed dx, in af_angle_atan() argument
194 if ( dx < 0 ) in af_angle_atan()
198 else if ( dx == 0 ) in af_angle_atan()
207 if ( dx < 0 ) in af_angle_atan()
209 dx = -dx; in af_angle_atan()
219 tmp = dx; in af_angle_atan()
220 dx = -dy; in af_angle_atan()
[all …]
/external/skia/tests/
DClampRangeTest.cpp51 SkFixed fx, SkFixed dx, int count) { in slow_check() argument
59 fx += dx; in slow_check()
65 fx += dx; in slow_check()
74 fx += dx; in slow_check()
79 fx += dx; in slow_check()
85 static void test_range(SkFixed fx, SkFixed dx, int count) { in test_range() argument
87 range.init(fx, dx, count, V0, V1); in test_range()
88 slow_check(range, fx, dx, count); in test_range()
118 SkFixed dx = (sx - fx) / count; in DEF_TEST() local
119 test_range(fx, dx, count); in DEF_TEST()
[all …]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
DValueEncoder.java17 package com.android.dx.dex.file;
19 import com.android.dx.rop.annotation.Annotation;
20 import com.android.dx.rop.annotation.NameValuePair;
21 import com.android.dx.rop.cst.Constant;
22 import com.android.dx.rop.cst.CstAnnotation;
23 import com.android.dx.rop.cst.CstArray;
24 import com.android.dx.rop.cst.CstBoolean;
25 import com.android.dx.rop.cst.CstByte;
26 import com.android.dx.rop.cst.CstChar;
27 import com.android.dx.rop.cst.CstDouble;
[all …]
DCodeItem.java17 package com.android.dx.dex.file;
19 import com.android.dx.dex.code.CstInsn;
20 import com.android.dx.dex.code.CatchTable;
21 import com.android.dx.dex.code.DalvCode;
22 import com.android.dx.dex.code.DalvInsn;
23 import com.android.dx.dex.code.DalvInsnList;
24 import com.android.dx.dex.code.LocalList;
25 import com.android.dx.dex.code.PositionList;
26 import com.android.dx.rop.cst.Constant;
27 import com.android.dx.rop.cst.CstMemberRef;
[all …]
/external/qemu-pc-bios/bochs/bios/
Drombios32start.S87 movw $0xb3, %dx
88 outb %al, %dx
94 movw $0xb2, %dx
95 inb %dx, %al
100 mov $PM_IO_BASE + 0x04, %dx /* PMCNTRL */
101 inw %dx, %ax
103 outw %ax, %dx
112 mov $PM_IO_BASE + 0x04, %dx /* PMCNTRL */
113 inw %dx, %ax
115 outw %ax, %dx
/external/chromium_org/third_party/skia/src/core/
DSkBitmap_scroll.cpp11 bool SkBitmap::scrollRect(const SkIRect* subset, int dx, int dy, in scrollRect() argument
23 tmp.scrollRect(NULL, dx, dy, inval); in scrollRect()
49 if ((dx | dy) == 0 || width <= 0 || height <= 0) { in scrollRect()
64 r.offset(dx, dy); in scrollRect()
100 if (dx <= 0) { in scrollRect()
101 src -= dx << shift; in scrollRect()
102 width += dx; in scrollRect()
104 dst += dx << shift; in scrollRect()
105 width -= dx; in scrollRect()
/external/skia/src/core/
DSkBitmap_scroll.cpp11 bool SkBitmap::scrollRect(const SkIRect* subset, int dx, int dy, in scrollRect() argument
23 tmp.scrollRect(NULL, dx, dy, inval); in scrollRect()
49 if ((dx | dy) == 0 || width <= 0 || height <= 0) { in scrollRect()
64 r.offset(dx, dy); in scrollRect()
100 if (dx <= 0) { in scrollRect()
101 src -= dx << shift; in scrollRect()
102 width += dx; in scrollRect()
104 dst += dx << shift; in scrollRect()
105 width -= dx; in scrollRect()
/external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
DForm21c.java17 package com.android.dx.dex.code.form;
19 import com.android.dx.dex.code.CstInsn;
20 import com.android.dx.dex.code.DalvInsn;
21 import com.android.dx.dex.code.InsnFormat;
22 import com.android.dx.rop.code.RegisterSpec;
23 import com.android.dx.rop.code.RegisterSpecList;
24 import com.android.dx.rop.cst.Constant;
25 import com.android.dx.rop.cst.CstFieldRef;
26 import com.android.dx.rop.cst.CstString;
27 import com.android.dx.rop.cst.CstType;
[all …]

12345678910>>...44