/development/ndk/platforms/android-3/include/sys/ |
D | time.h | 51 #define timercmp(a, b, op) \ argument 56 #define timeradd(a, b, res) \ argument 66 #define timersub(a, b, res) \ argument
|
/development/tools/emulator/system/camera/ |
D | EmulatedCameraCommon.h | 57 #define min(a,b) (((a) < (b)) ? (a) : (b)) argument 58 #define max(a,b) (((a) > (b)) ? (a) : (b)) argument
|
D | Converters.h | 94 #define RGB565(r, g, b) static_cast<uint16_t>((((static_cast<uint16_t>(b) << 6) | g) << 5) | r) argument 96 #define RGB32(r, g, b) static_cast<uint32_t>((((static_cast<uint32_t>(b) << 8) | g) << 8) | r) argument 111 #define RGB565(r, g, b) static_cast<uint16_t>((((static_cast<uint16_t>(r) << 6) | g) << 5) | b) argument 113 #define RGB32(r, g, b) static_cast<uint32_t>((((static_cast<uint32_t>(r) << 8) | g) << 8) | b) argument 122 uint8_t r; uint8_t g; uint8_t b; uint8_t a; member 147 #define RGB2Y(r, g, b) (uint8_t)(((66 * (r) + 129 * (g) + 25 * (b) + 128) >> 8) + 16) argument 148 #define RGB2U(r, g, b) (uint8_t)(((-38 * (r) - 74 * (g) + 112 * (b) + 128) >> 8) + 128) argument 149 #define RGB2V(r, g, b) (uint8_t)(((112 * (r) - 94 * (g) - 18 * (b) + 128) >> 8) + 128) argument 153 R8G8B8ToYUV(uint8_t r, uint8_t g, uint8_t b, uint8_t* y, uint8_t* u, uint8_t* v) in R8G8B8ToYUV() 212 const uint16_t b = (YUV2BO(y,u,v) >> 3) & 0x1f; in YUVToRGB565() local
|
/development/ndk/platforms/android-3/include/linux/ |
D | jiffies.h | 64 #define time_after(a,b) (typecheck(unsigned long, a) && typecheck(unsigned long, b) && ((long… argument 65 #define time_before(a,b) time_after(b,a) argument 66 #define time_after_eq(a,b) (typecheck(unsigned long, a) && typecheck(unsigned long, b) && ((l… argument 67 #define time_before_eq(a,b) time_after_eq(b,a) argument
|
D | version.h | 13 #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) argument
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
D | BitmapPixels.java | 53 private static int pack8888(int r, int g, int b, int a) { in pack8888() 57 private static short pack565(int r, int g, int b) { in pack565() 61 private static short pack4444(int r, int g, int b, int a) { in pack4444() 76 int b = Color.blue(c); in premultiplyColor() local 91 int b = getB32(from) << 23; in makeRamp() local
|
D | CreateBitmap.java | 44 int b = 255 - Math.min(r, g); in createColors() local
|
D | ColorPickerDialog.java | 134 int b = ave(Color.blue(c0), Color.blue(c1), p); in interpColor() local 143 int b = Color.blue(color); in rotateColor() local
|
D | MeasureText.java | 42 int b = 255 - Math.min(r, g); in createColors() local
|
/development/tools/yuv420sp2rgb/ |
D | yuv420sp2rgb.c | 13 #define max(a,b) ({typeof(a) _a = (a); typeof(b) _b = (b); _a > _b ? _a : _b; }) argument 14 #define min(a,b) ({typeof(a) _a = (a); typeof(b) _b = (b); _a < _b ? _a : _b; }) argument 122 unsigned char b, in rgb16_cb() 132 unsigned char b, in common_rgb_cb() 176 unsigned char b, in rgb24_cb() 185 unsigned char b, in argb_cb()
|
D | debug.c | 7 int dump_hex_buffer(FILE *s, void *b, size_t len, size_t elsize) { in dump_hex_buffer()
|
/development/tools/emulator/opengl/host/libs/Translator/GLcommon/ |
D | etc1.cpp | 127 inline int convert4To8(int b) { in convert4To8() 133 inline int convert5To8(int b) { in convert5To8() 139 inline int convert6To8(int b) { in convert6To8() 150 inline int convert8To4(int b) { in convert8To4() 156 inline int convert8To5(int b) { in convert8To5() 167 void decode_subblock(etc1_byte* pOut, int r, int g, int b, const int* table, in decode_subblock() 240 inline void take_best(etc_compressed* a, const etc_compressed* b) { in take_best() 251 int b = 0; in etc_average_colors_subblock() local 308 int b = pBaseColors[2]; in chooseModifier() local 493 etc_compressed a, b; in etc1_encode_block() local [all …]
|
D | GLESpointer.cpp | 80 void GLESpointer::enable(bool b) { in enable()
|
/development/samples/SimpleJNI/src/com/example/android/simplejni/ |
D | SimpleJNI.java | 42 static native int add(int a, int b); in add()
|
/development/pdk/pndk/samples/samplejni/src/com/example/jniexample/ |
D | JNIExample.java | 24 static native int add(int a, int b); in add()
|
/development/ide/xcode/ports/ |
D | SkBitmap_Mac.cpp | 33 unsigned b = SkPacked16ToB32(c); in convert565_to_32() local 50 unsigned b = SkGetPackedB4444(c); in convert4444_to_555() local
|
/development/ndk/platforms/android-9/arch-x86/include/asm/ |
D | desc_32.h | 55 #define write_ldt_entry(dt, entry, a, b) write_dt_entry(dt, entry, a, b) argument 56 #define write_gdt_entry(dt, entry, a, b) write_dt_entry(dt, entry, a, b) argument 57 #define write_idt_entry(dt, entry, a, b) write_dt_entry(dt, entry, a, b) argument
|
D | byteorder.h | 35 struct { __u32 a,b; } s; in ___arch__swab64() member
|
/development/samples/ActionBarCompat/src/com/example/android/actionbarcompat/ |
D | SimpleMenu.java | 168 public void setGroupCheckable(int i, boolean b, boolean b1) { in setGroupCheckable() 172 public void setGroupVisible(int i, boolean b) { in setGroupVisible() 176 public void setGroupEnabled(int i, boolean b) { in setGroupEnabled() 200 public void setQwertyMode(boolean b) { in setQwertyMode()
|
D | SimpleMenuItem.java | 193 public MenuItem setCheckable(boolean b) { in setCheckable() 203 public MenuItem setChecked(boolean b) { in setChecked() 213 public MenuItem setVisible(boolean b) { in setVisible()
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
D | SecureViewOverlay.java | 52 protected void onLayout(boolean changed, int l, int t, int r, int b) { in onLayout()
|
/development/pdk/pndk/samples/samplejni/ |
D | native.cpp | 5 add(JNIEnv *env, jobject thiz, jint a, jint b) { in add()
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
D | FragmentArguments.java | 62 Bundle b = new Bundle(); in newInstance() local
|
/development/samples/SimpleJNI/jni/ |
D | native.cpp | 25 add(JNIEnv *env, jobject thiz, jint a, jint b) { in add()
|
/development/samples/Support4Demos/src/com/example/android/supportv4/app/ |
D | FragmentArgumentsSupport.java | 64 Bundle b = new Bundle(); in newInstance() local
|