/development/ndk/platforms/android-3/arch-arm/include/machine/ |
D | asm.h | 53 # define __CONCAT(x,y) x ## y argument 56 # define __CONCAT(x,y) x/**/y argument 87 #define ENTRY(y) _ENTRY(_C_LABEL(y)); _PROF_PROLOGUE argument 88 #define ENTRY_NP(y) _ENTRY(_C_LABEL(y)) argument 89 #define ASENTRY(y) _ENTRY(_ASM_LABEL(y)); _PROF_PROLOGUE argument 90 #define ASENTRY_NP(y) _ENTRY(_ASM_LABEL(y)) argument 96 #define PIC_SYM(x,y) x ## ( ## y ## ) argument 98 #define PIC_SYM(x,y) x/**/(/**/y/**/) argument 101 #define PIC_SYM(x,y) x argument
|
/development/ndk/platforms/android-9/include/ |
D | math.h | 119 #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/ |
D | math.h | 119 #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-9/arch-x86/include/machine/ |
D | asm.h | 75 #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 113 #define ENTRY(y) _ENTRY(_C_LABEL(y)); _PROF_PROLOGUE argument 114 #define NENTRY(y) _ENTRY(_C_LABEL(y)) argument 115 #define ASENTRY(y) _ENTRY(_ASM_LABEL(y)); _PROF_PROLOGUE argument
|
/development/ndk/samples/two-libs/src/com/example/twolibs/ |
D | TwoLibs.java | 32 int y = 42; in onCreate() local 45 public native int add(int x, int y); in add()
|
/development/tools/emulator/opengl/tests/event_injector/ |
D | EventInjector.cpp | 53 void EventInjector::sendMouseDown( int x, int y ) in sendMouseDown() 58 void EventInjector::sendMouseUp( int x, int y ) in sendMouseUp() 63 void EventInjector::sendMouseMotion( int x, int y ) in sendMouseMotion()
|
/development/samples/SoftKeyboard/src/com/example/android/softkeyboard/ |
D | LatinKeyboard.java | 41 protected Key createKeyFromXml(Resources res, Row parent, int x, int y, in createKeyFromXml() 96 … public LatinKey(Resources res, Keyboard.Row parent, int x, int y, XmlResourceParser parser) { in LatinKey() 105 public boolean isInside(int x, int y) { in isInside()
|
/development/tools/emulator/system/camera/ |
D | Converters.cpp | 39 for (int y = 0; y < height; y++) { in _YUV420SToRGB565() local 69 for (int y = 0; y < height; y++) { in _YUV420SToRGB32() local 144 const uint8_t* y = reinterpret_cast<const uint8_t*>(nv12); in NV12ToRGB565() local 152 const uint8_t* y = reinterpret_cast<const uint8_t*>(nv12); in NV12ToRGB32() local 160 const uint8_t* y = reinterpret_cast<const uint8_t*>(nv21); in NV21ToRGB565() local 168 const uint8_t* y = reinterpret_cast<const uint8_t*>(nv21); in NV21ToRGB32() local
|
D | Converters.h | 153 R8G8B8ToYUV(uint8_t r, uint8_t g, uint8_t b, uint8_t* y, uint8_t* u, uint8_t* v) in R8G8B8ToYUV() 162 RGB565ToYUV(uint16_t rgb, uint8_t* y, uint8_t* u, uint8_t* v) in RGB565ToYUV() 169 RGB32ToYUV(uint32_t rgb, uint8_t* y, uint8_t* u, uint8_t* v) in RGB32ToYUV() 199 #define YUV2R(y, u, v) clamp((298 * ((y)-16) + 409 * ((v)-128) + 128) >> 8) argument 200 #define YUV2G(y, u, v) clamp((298 * ((y)-16) - 100 * ((u)-128) - 208 * ((v)-128) + 128) >> 8) argument 201 #define YUV2B(y, u, v) clamp((298 * ((y)-16) + 516 * ((u)-128) + 128) >> 8) argument 206 YUVToRGB565(int y, int u, int v) in YUVToRGB565() 218 YUVToRGB32(int y, int u, int v) in YUVToRGB32()
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/ |
D | MatrixStack.java | 126 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/samples/two-libs/jni/ |
D | first.c | 19 int first(int x, int y) in first()
|
D | second.c | 24 jint y ) in Java_com_example_twolibs_TwoLibs_add()
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
D | AlphaBitmap.java | 44 float y = bm.getHeight(); in drawIntoBitmap() local 79 float y = 10; in onDraw() local
|
D | Sweep.java | 46 float y = 100; in SampleView() local 57 float y = 100; in onDraw() local
|
D | BitmapMesh.java | 47 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
|
D | FingerPaint.java | 94 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/ApiDemos/src/com/example/android/apis/graphics/kube/ |
D | GLVertex.java | 24 public float y; field in GLVertex 36 GLVertex(float x, float y, float z, int index) { in GLVertex()
|
/development/samples/RenderScript/MiscSamples/src/com/example/android/rs/miscsamples/ |
D | RsListRS.java | 96 public void onActionDown(int x, int y) { in onActionDown() 103 public void onActionMove(int x, int y) { in onActionMove()
|
/development/samples/ApiDemos/src/com/example/android/apis/animation/ |
D | AnimationLoading.java | 119 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()
|
D | CustomEvaluator.java | 63 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()
|
/development/samples/BrowserPlugin/src/com/android/sampleplugin/ |
D | BackgroundTest.java | 7 public int addInt(int x, int y) { in addInt()
|
/development/ndk/platforms/android-9/arch-x86/include/asm/ |
D | i8259.h | 15 #define __byte(x,y) (((unsigned char *) &(y))[x]) argument
|
/development/ndk/platforms/android-3/include/sys/ |
D | cdefs.h | 58 #define __GNUC_PREREQ__(x, y) \ argument 62 #define __GNUC_PREREQ__(x, y) 0 argument 70 #define __static_cast(x,y) static_cast<x>(y) argument 74 #define __static_cast(x,y) (x)y argument 86 #define ___CONCAT(x,y) __CONCAT(x,y) argument 90 #define __CONCAT(x,y) x ## y argument 106 #define __CONCAT(x,y) x/**/y argument
|
/development/ndk/platforms/android-9/include/sys/ |
D | cdefs.h | 52 #define __GNUC_PREREQ__(x, y) \ argument 56 #define __GNUC_PREREQ__(x, y) 0 argument 64 #define __static_cast(x,y) static_cast<x>(y) argument 68 #define __static_cast(x,y) (x)y argument 80 #define ___CONCAT(x,y) __CONCAT(x,y) argument 84 #define __CONCAT(x,y) x ## y argument 100 #define __CONCAT(x,y) x/**/y argument
|
/development/ndk/platforms/android-3/arch-arm/include/asm/ |
D | vga.h | 21 #define vga_writeb(x,y) (*((volatile unsigned char *)y) = (x)) argument
|