Home
last modified time | relevance | path

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

123456

/development/ndk/platforms/android-3/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-L/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 …]
/development/ndk/platforms/android-9/include/
Dmath.h119 #define isgreater(x, y) __builtin_isgreater((x), (y)) argument
120 #define isgreaterequal(x, y) __builtin_isgreaterequal((x), (y)) argument
121 #define isless(x, y) __builtin_isless((x), (y)) argument
122 #define islessequal(x, y) __builtin_islessequal((x), (y)) argument
123 #define islessgreater(x, y) __builtin_islessgreater((x), (y)) argument
124 #define isunordered(x, y) __builtin_isunordered((x), (y)) argument
126 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) argument
127 #define isgreaterequal(x, y) (!isunordered((x), (y)) && (x) >= (y)) argument
128 #define isless(x, y) (!isunordered((x), (y)) && (x) < (y)) argument
129 #define islessequal(x, y) (!isunordered((x), (y)) && (x) <= (y)) argument
[all …]
/development/ndk/platforms/android-18/include/
Dmath.h119 #define isgreater(x, y) __builtin_isgreater((x), (y)) argument
120 #define isgreaterequal(x, y) __builtin_isgreaterequal((x), (y)) argument
121 #define isless(x, y) __builtin_isless((x), (y)) argument
122 #define islessequal(x, y) __builtin_islessequal((x), (y)) argument
123 #define islessgreater(x, y) __builtin_islessgreater((x), (y)) argument
124 #define isunordered(x, y) __builtin_isunordered((x), (y)) argument
126 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) argument
127 #define isgreaterequal(x, y) (!isunordered((x), (y)) && (x) >= (y)) argument
128 #define isless(x, y) (!isunordered((x), (y)) && (x) < (y)) argument
129 #define islessequal(x, y) (!isunordered((x), (y)) && (x) <= (y)) argument
[all …]
/development/ndk/platforms/android-3/include/
Dmath.h119 #define isgreater(x, y) __builtin_isgreater((x), (y)) argument
120 #define isgreaterequal(x, y) __builtin_isgreaterequal((x), (y)) argument
121 #define isless(x, y) __builtin_isless((x), (y)) argument
122 #define islessequal(x, y) __builtin_islessequal((x), (y)) argument
123 #define islessgreater(x, y) __builtin_islessgreater((x), (y)) argument
124 #define isunordered(x, y) __builtin_isunordered((x), (y)) argument
126 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) argument
127 #define isgreaterequal(x, y) (!isunordered((x), (y)) && (x) >= (y)) argument
128 #define isless(x, y) (!isunordered((x), (y)) && (x) < (y)) argument
129 #define islessequal(x, y) (!isunordered((x), (y)) && (x) <= (y)) argument
[all …]
/development/ndk/platforms/android-13/include/
Dmath.h119 #define isgreater(x, y) __builtin_isgreater((x), (y)) argument
120 #define isgreaterequal(x, y) __builtin_isgreaterequal((x), (y)) argument
121 #define isless(x, y) __builtin_isless((x), (y)) argument
122 #define islessequal(x, y) __builtin_islessequal((x), (y)) argument
123 #define islessgreater(x, y) __builtin_islessgreater((x), (y)) argument
124 #define isunordered(x, y) __builtin_isunordered((x), (y)) argument
126 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) argument
127 #define isgreaterequal(x, y) (!isunordered((x), (y)) && (x) >= (y)) argument
128 #define isless(x, y) (!isunordered((x), (y)) && (x) < (y)) argument
129 #define islessequal(x, y) (!isunordered((x), (y)) && (x) <= (y)) argument
[all …]
/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-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/perftests/panorama/feature_mos/src/mosaic/
DtrsMatrix.h37 inline double ProjZ(double trs[3][3], double x, double y, double f) in ProjZ()
42 inline double ProjX(double trs[3][3], double x, double y, double z, double f) in ProjX()
47 inline double ProjY(double trs[3][3], double x, double y, double z, double f) in ProjY()
/development/ndk/platforms/android-L/arch-arm64/include/machine/
Dasm.h49 #define PIC_SYM(x,y) x ## ( ## y ## ) argument
51 #define PIC_SYM(x,y) x argument
/development/ndk/samples/two-libs/src/com/example/twolibs/
DTwoLibs.java32 int y = 42; in onCreate() local
45 public native int add(int x, int y); in add()
/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/ndk/platforms/android-L/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-L/include/sys/
Dparam.h39 #define howmany(x, y) (((x)+((y)-1))/(y)) argument
41 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) 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/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/ndk/samples/two-libs/jni/
Dfirst.c19 int first(int x, int y) in first()
Dsecond.c24 jint y ) in Java_com_example_twolibs_TwoLibs_add()
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
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
DBitmapMesh.java47 private static void setXY(float[] array, int index, float x, float y) { in setXY()
91 float y = src[i+1]; in warp() local
119 int y = (int)pt[1]; in onTouchEvent() local
/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/sources/android/ndk_helper/
DgestureDetector.cpp71 float y = AMotionEvent_getY( motion_event, 0 ) - down_y_; in Detect() local
108 float y = AMotionEvent_getY( motion_event, 0 ) - last_tap_y_; in Detect() local
235 float y = AMotionEvent_getY( event_, index ); in GetPointers() local
342 float y = AMotionEvent_getY( event_, iIndex ); in GetPointer() local
/development/samples/ApiDemos/src/com/example/android/apis/animation/
DAnimationLoading.java119 private ShapeHolder createBall(float x, float y) { in createBall()
129 private void addBall(float x, float y, int color) { in addBall()
135 private void addBall(float x, float y) { in addBall()

123456