Home
last modified time | relevance | path

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

12345678910>>...30

/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/skia/src/core/
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 …]
DSkBitmapProcState_matrix_clamp.h88 const SkFixed dx = s.fInvSx; in SCALE_NOFILTER_NAME() local
93 (unsigned)((fx + dx * (count - 1)) >> 16) <= maxX) { in SCALE_NOFILTER_NAME()
94 decal_nofilter_scale(xy, fx, dx, count); in SCALE_NOFILTER_NAME()
107 SkFixed dx2 = dx+dx; in SCALE_NOFILTER_NAME()
117 fx1 = fx+dx; in SCALE_NOFILTER_NAME()
118 fx2 = fx1+dx; in SCALE_NOFILTER_NAME()
119 fx3 = fx2+dx; in SCALE_NOFILTER_NAME()
160 *xx++ = TILEX_PROCF(fx, maxX); fx += dx; in SCALE_NOFILTER_NAME()
183 SkFixed dx = s.fInvSx; in AFFINE_NOFILTER_NAME() local
191 SkFixed dx4 = dx * 4; in AFFINE_NOFILTER_NAME()
[all …]
DSkBitmapProcState_matrixProcs.cpp31 void decal_nofilter_scale(uint32_t dst[], SkFixed fx, SkFixed dx, int count);
32 void decal_filter_scale(uint32_t dst[], SkFixed fx, SkFixed dx, int count);
160 void decal_nofilter_scale(uint32_t dst[], SkFixed fx, SkFixed dx, int count) in decal_nofilter_scale() argument
167 SkFixed dx2 = dx+dx; in decal_nofilter_scale()
177 fx1 = fx+dx; in decal_nofilter_scale()
178 fx2 = fx1+dx; in decal_nofilter_scale()
179 fx3 = fx2+dx; in decal_nofilter_scale()
212 *dst++ = pack_two_shorts(fx >> 16, (fx + dx) >> 16); in decal_nofilter_scale()
213 fx += dx+dx; in decal_nofilter_scale()
214 *dst++ = pack_two_shorts(fx >> 16, (fx + dx) >> 16); in decal_nofilter_scale()
[all …]
DSkBitmap_scroll.cpp11 bool SkBitmap::scrollRect(const SkIRect* subset, int dx, int dy, in scrollRect() argument
19 tmp.scrollRect(NULL, dx, dy, inval); in scrollRect()
45 if ((dx | dy) == 0 || width <= 0 || height <= 0) { in scrollRect()
60 r.offset(dx, dy); in scrollRect()
96 if (dx <= 0) { in scrollRect()
97 src -= dx << shift; in scrollRect()
98 width += dx; in scrollRect()
100 dst += dx << shift; in scrollRect()
101 width -= dx; in scrollRect()
/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/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/src/opts/
DSkBitmapProcState_opts_SSE2.cpp254 const SkFixed dx = s.fInvSx; in ClampX_ClampY_filter_scale_SSE2() local
268 if (dx > 0 && (unsigned)(fx >> 16) <= maxX && in ClampX_ClampY_filter_scale_SSE2()
269 (unsigned)((fx + dx * (count - 1)) >> 16) < maxX) { in ClampX_ClampY_filter_scale_SSE2()
275 fx += dx; in ClampX_ClampY_filter_scale_SSE2()
280 __m128i wide_dx4 = _mm_set1_epi32(dx * 4); in ClampX_ClampY_filter_scale_SSE2()
281 __m128i wide_fx = _mm_set_epi32(fx + dx * 3, fx + dx * 2, in ClampX_ClampY_filter_scale_SSE2()
282 fx + dx, fx); in ClampX_ClampY_filter_scale_SSE2()
294 fx += dx * 4; in ClampX_ClampY_filter_scale_SSE2()
303 fx += dx; in ClampX_ClampY_filter_scale_SSE2()
313 fx += dx; in ClampX_ClampY_filter_scale_SSE2()
[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/webkit/Source/WebKit/efl/ewk/
Dewk_view_single.c160 static inline void _ewk_view_4b_move_region(uint32_t *image, int dx, int dy, size_t x, size_t y, si… in _ewk_view_4b_move_region() argument
169 if (dx <= 0) { in _ewk_view_4b_move_region()
170 w += dx; in _ewk_view_4b_move_region()
171 src -= dx; in _ewk_view_4b_move_region()
175 w -= dx; in _ewk_view_4b_move_region()
177 dst += w + dx -1; in _ewk_view_4b_move_region()
185 if (dx <= 0) { in _ewk_view_4b_move_region()
186 w += dx; in _ewk_view_4b_move_region()
187 src -= dx; in _ewk_view_4b_move_region()
191 w -= dx; in _ewk_view_4b_move_region()
[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/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/skia/tests/
DClampRangeTest.cpp50 SkFixed fx, SkFixed dx, int count) { in slow_check() argument
58 fx += dx; in slow_check()
64 fx += dx; in slow_check()
73 fx += dx; in slow_check()
78 fx += dx; in slow_check()
83 static void test_range(SkFixed fx, SkFixed dx, int count) { in test_range() argument
85 range.init(fx, dx, count, V0, V1); in test_range()
86 slow_check(range, fx, dx, count); in test_range()
117 SkFixed dx = (sx - fx) / count; in TestClampRange() local
118 test_range(fx, dx, count); in TestClampRange()
[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/opencv/cv/src/
Dcvdominants.cpp144 float dx, dy; in icvFindDominantPointsIPAN() local
158 dx = (float) (ptInf[i].pt.x - ptInf[ind].pt.x); in icvFindDominantPointsIPAN()
160 dist_r = dx * dx + dy * dy; in icvFindDominantPointsIPAN()
165 float dx, dy; in icvFindDominantPointsIPAN() local
182 dx = (float) (ptInf[i].pt.x - ptInf[ind].pt.x); in icvFindDominantPointsIPAN()
184 dist_r = dx * dx + dy * dy; in icvFindDominantPointsIPAN()
191 float dx, dy; in icvFindDominantPointsIPAN() local
207 dx = (float) (ptInf[i].pt.x - ptInf[ind].pt.x); in icvFindDominantPointsIPAN()
209 dist_l = dx * dx + dy * dy; in icvFindDominantPointsIPAN()
215 float dx, dy; in icvFindDominantPointsIPAN() local
[all …]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
DForm31c.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 …]
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 …]
DForm5rc.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.RegisterSpecList;
23 import com.android.dx.rop.cst.Constant;
24 import com.android.dx.rop.cst.CstMethodRef;
25 import com.android.dx.rop.cst.CstType;
26 import com.android.dx.util.AnnotatedOutput;
DForm3rc.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.RegisterSpecList;
23 import com.android.dx.rop.cst.Constant;
24 import com.android.dx.rop.cst.CstMethodRef;
25 import com.android.dx.rop.cst.CstType;
26 import com.android.dx.util.AnnotatedOutput;
DForm41c.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.CstType;
27 import com.android.dx.util.AnnotatedOutput;

12345678910>>...30