Home
last modified time | relevance | path

Searched defs:y (Results 1 – 25 of 129) sorted by relevance

123456

/development/ndk/platforms/android-9/arch-arm/include/machine/
Dasm.h53 # define __CONCAT(x,y) x ## y argument
56 # define __CONCAT(x,y) x/**/y argument
93 #define ENTRY(y) _ENTRY(_C_LABEL(y)); _PROF_PROLOGUE argument
94 #define ENTRY_NP(y) _ENTRY(_C_LABEL(y)) argument
95 #define END(y) _END(_C_LABEL(y)) argument
96 #define ASENTRY(y) _ENTRY(_ASM_LABEL(y)); _PROF_PROLOGUE argument
97 #define ASENTRY_NP(y) _ENTRY(_ASM_LABEL(y)) argument
98 #define ASEND(y) _END(_ASM_LABEL(y)) argument
101 #define ENTRY_PRIVATE(y) ENTRY(y); .hidden _C_LABEL(y) argument
103 #define ENTRY_PRIVATE(y) ENTRY(y) argument
[all …]
/development/ndk/platforms/android-9/include/
Dmath.h117 #define isgreater(x, y) __builtin_isgreater((x), (y)) argument
118 #define isgreaterequal(x, y) __builtin_isgreaterequal((x), (y)) argument
119 #define isless(x, y) __builtin_isless((x), (y)) argument
120 #define islessequal(x, y) __builtin_islessequal((x), (y)) argument
121 #define islessgreater(x, y) __builtin_islessgreater((x), (y)) argument
122 #define isunordered(x, y) __builtin_isunordered((x), (y)) argument
124 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) argument
125 #define isgreaterequal(x, y) (!isunordered((x), (y)) && (x) >= (y)) argument
126 #define isless(x, y) (!isunordered((x), (y)) && (x) < (y)) argument
127 #define islessequal(x, y) (!isunordered((x), (y)) && (x) <= (y)) argument
[all …]
/development/ndk/platforms/android-21/include/
Dmath.h108 #define isgreater(x, y) __builtin_isgreater((x), (y)) argument
109 #define isgreaterequal(x, y) __builtin_isgreaterequal((x), (y)) argument
110 #define isless(x, y) __builtin_isless((x), (y)) argument
111 #define islessequal(x, y) __builtin_islessequal((x), (y)) argument
112 #define islessgreater(x, y) __builtin_islessgreater((x), (y)) argument
113 #define isunordered(x, y) __builtin_isunordered((x), (y)) argument
115 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) argument
116 #define isgreaterequal(x, y) (!isunordered((x), (y)) && (x) >= (y)) argument
117 #define isless(x, y) (!isunordered((x), (y)) && (x) < (y)) argument
118 #define islessequal(x, y) (!isunordered((x), (y)) && (x) <= (y)) argument
[all …]
Derr.h45 #define __errlike(x, y) __attribute__((__format__(printf, x, y))) argument
/development/ndk/platforms/android-13/include/
Dmath.h117 #define isgreater(x, y) __builtin_isgreater((x), (y)) argument
118 #define isgreaterequal(x, y) __builtin_isgreaterequal((x), (y)) argument
119 #define isless(x, y) __builtin_isless((x), (y)) argument
120 #define islessequal(x, y) __builtin_islessequal((x), (y)) argument
121 #define islessgreater(x, y) __builtin_islessgreater((x), (y)) argument
122 #define isunordered(x, y) __builtin_isunordered((x), (y)) argument
124 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) argument
125 #define isgreaterequal(x, y) (!isunordered((x), (y)) && (x) >= (y)) argument
126 #define isless(x, y) (!isunordered((x), (y)) && (x) < (y)) argument
127 #define islessequal(x, y) (!isunordered((x), (y)) && (x) <= (y)) argument
[all …]
/development/ndk/platforms/android-18/include/
Dmath.h117 #define isgreater(x, y) __builtin_isgreater((x), (y)) argument
118 #define isgreaterequal(x, y) __builtin_isgreaterequal((x), (y)) argument
119 #define isless(x, y) __builtin_isless((x), (y)) argument
120 #define islessequal(x, y) __builtin_islessequal((x), (y)) argument
121 #define islessgreater(x, y) __builtin_islessgreater((x), (y)) argument
122 #define isunordered(x, y) __builtin_isunordered((x), (y)) argument
124 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) argument
125 #define isgreaterequal(x, y) (!isunordered((x), (y)) && (x) >= (y)) argument
126 #define isless(x, y) (!isunordered((x), (y)) && (x) < (y)) argument
127 #define islessequal(x, y) (!isunordered((x), (y)) && (x) <= (y)) argument
[all …]
/development/ndk/platforms/android-9/arch-x86/include/machine/
Dasm.h75 #define CVAROFF(x, y) _C_LABEL(x) + y argument
78 # define __CONCAT(x,y) x ## y argument
81 # define __CONCAT(x,y) x/**/y argument
119 #define ENTRY(y) _ENTRY(_C_LABEL(y)); _PROF_PROLOGUE argument
120 #define NENTRY(y) _ENTRY(_C_LABEL(y)) argument
121 #define END(y) _END(_C_LABEL(y)) argument
122 #define ASENTRY(y) _ENTRY(_ASM_LABEL(y)); _PROF_PROLOGUE argument
124 #define ENTRY_PRIVATE(y) ENTRY(y); .hidden _C_LABEL(y) argument
/development/samples/devbytes/animation/CurvedMotion/src/com/example/android/curvedmotion/
DPathPoint.java60 private PathPoint(int operation, float x, float y) { in PathPoint()
69 private PathPoint(float c0X, float c0Y, float c1X, float c1Y, float x, float y) { in PathPoint()
82 public static PathPoint lineTo(float x, float y) { in lineTo()
90 public static PathPoint curveTo(float c0X, float c0Y, float c1X, float c1Y, float x, float y) { in curveTo()
98 public static PathPoint moveTo(float x, float y) { in moveTo()
DAnimatorPath.java40 public void moveTo(float x, float y) { in moveTo()
48 public void lineTo(float x, float y) { in lineTo()
57 public void curveTo(float c0X, float c0Y, float c1X, float c1Y, float x, float y) { in curveTo()
/development/ndk/platforms/android-21/arch-arm64/include/machine/
Dasm.h49 #define PIC_SYM(x,y) x ## ( ## y ## ) argument
51 #define PIC_SYM(x,y) x argument
/development/ndk/platforms/android-21/arch-arm/include/machine/
Dasm.h54 #define PIC_SYM(x,y) x ## ( ## y ## ) argument
56 #define PIC_SYM(x,y) x argument
/development/ndk/platforms/android-9/arch-mips/include/asm/
Ddebug.h24 #define db_verify(x, y) x argument
25 #define db_verify_warn(x, y) x argument
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
DMatrixStack.java126 public void glRotatef(float angle, float x, float y, float z) { in glRotatef()
132 public void glRotatex(int angle, int x, int y, int z) { in glRotatex()
136 public void glScalef(float x, float y, float z) { in glScalef()
140 public void glScalex(int x, int y, int z) { in glScalex()
144 public void glTranslatef(float x, float y, float z) { in glTranslatef()
148 public void glTranslatex(int x, int y, int z) { in glTranslatex()
/development/ndk/platforms/android-21/include/sys/
Dparam.h39 #define howmany(x, y) (((x)+((y)-1))/(y)) argument
41 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) argument
Dcdefs.h70 #define __GNUC_PREREQ(x, y) \ argument
74 #define __GNUC_PREREQ(x, y) 0 argument
82 #define __static_cast(x,y) static_cast<x>(y) argument
86 #define __static_cast(x,y) (x)y argument
98 #define ___CONCAT(x,y) __CONCAT(x,y) argument
102 #define __CONCAT(x,y) x ## y argument
118 #define __CONCAT(x,y) x/**/y argument
234 #define __printflike(x, y) __attribute__((__format__(printf, x, y))) __nonnull((x)) argument
235 #define __scanflike(x, y) __attribute__((__format__(scanf, x, y))) __nonnull((x)) argument
/development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
DLatinKeyboard.java65 protected Key createKeyFromXml(Resources res, Row parent, int x, int y, in createKeyFromXml()
149 public LatinKey(Resources res, Keyboard.Row parent, int x, int y, in LatinKey()
159 public boolean isInside(int x, int y) { in isInside()
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
DBitmapMesh.java46 private static void setXY(float[] array, int index, float x, float y) { in setXY()
90 float y = src[i+1]; in warp() local
118 int y = (int)pt[1]; in onTouchEvent() local
DAlphaBitmap.java44 float y = bm.getHeight(); in drawIntoBitmap() local
79 float y = 10; in onDraw() local
DSweep.java46 float y = 100; in SampleView() local
57 float y = 100; in onDraw() local
DFingerPaint.java94 private void touch_start(float x, float y) { in touch_start()
100 private void touch_move(float x, float y) { in touch_move()
120 float y = event.getY(); in onTouchEvent() local
/development/samples/browseable/BasicMultitouch/src/com.example.android.basicmultitouch/
DTouchDisplayView.java56 public float y; field in TouchDisplayView.TouchHistory
71 public static TouchHistory obtain(float x, float y, float pressure) { in obtain()
90 public void setTouch(float x, float y, float pressure) { in setTouch()
108 public void addHistory(float x, float y) { in addHistory()
/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
DGLVertex.java24 public float y; field in GLVertex
36 GLVertex(float x, float y, float z, int index) { in GLVertex()
/development/ndk/platforms/android-9/include/sys/
Dcdefs.h70 #define __GNUC_PREREQ(x, y) \ argument
74 #define __GNUC_PREREQ(x, y) 0 argument
82 #define __static_cast(x,y) static_cast<x>(y) argument
86 #define __static_cast(x,y) (x)y argument
104 #define ___CONCAT(x,y) __CONCAT(x,y) argument
108 #define __CONCAT(x,y) x ## y argument
124 #define __CONCAT(x,y) x/**/y argument
240 #define __printflike(x, y) __attribute__((__format__(printf, x, y))) __nonnull((x)) argument
241 #define __scanflike(x, y) __attribute__((__format__(scanf, x, y))) __nonnull((x)) argument
/development/samples/ApiDemos/src/com/example/android/apis/animation/
DAnimationLoading.java152 private ShapeHolder createBall(float x, float y) { in createBall()
162 private void addBall(float x, float y, int color) { in addBall()
168 private void addBall(float x, float y) { in addBall()
DCustomEvaluator.java63 public XYHolder(float x, float y) { in XYHolder()
80 public void setY(float y) { in setY()
141 private ShapeHolder createBall(float x, float y) { in createBall()

123456