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

1234567891011>>

/external/strace/linux/metag/
H A Dget_scno.c1 scno = metag_regs.dx[0][1]; /* syscall number in D1Re0 (D1.0) */
H A Dget_error.c2 if (check_errno && is_negated_errno(metag_regs.dx[0][0])) {
4 tcp->u_error = -metag_regs.dx[0][0];
6 tcp->u_rval = metag_regs.dx[0][0];
H A Dget_syscall_args.c5 tcp->u_arg[i] = ((unsigned long *)&metag_regs.dx[3][1])[-i];
/external/dexmaker/src/dx/java/com/android/dx/
H A DVersion.java17 package com.android.dx;
20 * Version number for dx.
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DByteInput.java17 package com.android.dx.util;
H A DByteOutput.java17 package com.android.dx.util;
H A DIntIterator.java17 package com.android.dx.util;
H A DLabeledItem.java17 package com.android.dx.util;
H A DToHuman.java17 package com.android.dx.util;
H A DWarning.java17 package com.android.dx.util;
H A DDexException.java17 package com.android.dx.util;
/external/jmonkeyengine/engine/src/core/com/jme3/input/event/
H A DMouseMotionEvent.java44 private int x, y, dx, dy, wheel, deltaWheel; field in class:MouseMotionEvent
46 public MouseMotionEvent(int x, int y, int dx, int dy, int wheel, int deltaWheel) { argument
49 this.dx = dx;
69 return dx;
107 return "MouseMotion(X="+x+", Y="+y+", DX="+dx+", DY="+dy+")";
/external/dexmaker/src/dx/java/com/android/dx/rop/type/
H A DTypeBearer.java17 package com.android.dx.rop.type;
19 import com.android.dx.util.ToHuman;
/external/skia/src/effects/gradients/
H A DSkClampRange.cpp38 * given each step is followed by x0 += dx
40 static int chop(int64_t x0, SkGradFixed edge, int64_t x1, int64_t dx, int count) { argument
41 SkASSERT(dx > 0);
50 int64_t n = (edge - x0 + dx - 1) / dx;
82 int64_t dx = dx0; local
86 if (!sk_64_smul_check(count - 1, dx, &count_times_dx)) {
93 int64_t ex = fx + (count - 1) * dx;
113 ex += dx;
115 bool doSwap = dx <
[all...]
/external/skia/src/core/
H A DSkBitmapProcState_utils.h13 * 1. dx > 0
14 * 2. [fx, fx+dx, fx+2dx, fx+3dx, ... fx+(count-1)dx] are all <= maxX
17 * just SkFixed, so we will abort the decal_ call if dx is very small, since
24 SkFixed dx = SkFractionalIntToFixed(frDx); local
26 // if decal_ kept SkFractionalInt precision, this would just be dx <= 0
29 if (dx <= SK_Fixed1 / 256) {
37 (unsigned)SkFixedFloorToInt(fx + dx * (coun
[all...]
H A DSkBitmap_scroll.cpp11 bool SkBitmap::scrollRect(const SkIRect* subset, int dx, int dy, argument
23 tmp.scrollRect(NULL, dx, dy, inval);
31 if ((dx | dy) == 0 || width <= 0 || height <= 0) {
46 r.offset(dx, dy);
82 if (dx <= 0) {
83 src -= dx << shift;
84 width += dx;
86 dst += dx << shift;
87 width -= dx;
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DCodeAddress.java17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpecList;
20 import com.android.dx.rop.code.SourcePosition;
H A DZeroSizeInsn.java17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpecList;
20 import com.android.dx.rop.code.SourcePosition;
21 import com.android.dx.util.AnnotatedOutput;
/external/dexmaker/src/main/java/com/google/dexmaker/
H A 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
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
H A DSpecialFormat.java17 package com.android.dx.dex.code.form;
19 import com.android.dx.dex.code.DalvInsn;
20 import com.android.dx.dex.code.InsnFormat;
21 import com.android.dx.util.AnnotatedOutput;
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DEncodedMember.java17 package com.android.dx.dex.file;
19 import com.android.dx.rop.cst.CstString;
20 import com.android.dx.util.AnnotatedOutput;
21 import com.android.dx.util.ToHuman;
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DCodeCursor.java17 package com.android.dx.io.instructions;
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DRegisterMapper.java17 package com.android.dx.ssa;
19 import com.android.dx.rop.code.RegisterSpec;
20 import com.android.dx.rop.code.RegisterSpecList;
21 import com.android.dx.util.ToHuman;
H A DSetFactory.java17 package com.android.dx.ssa;
19 import com.android.dx.util.BitIntSet;
20 import com.android.dx.util.IntSet;
21 import com.android.dx.util.ListIntSet;
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/
H A DNullRegisterAllocator.java17 package com.android.dx.ssa.back;
19 import com.android.dx.ssa.BasicRegisterMapper;
20 import com.android.dx.ssa.RegisterMapper;
21 import com.android.dx.ssa.SsaMethod;

Completed in 247 milliseconds

1234567891011>>