/frameworks/base/graphics/java/android/graphics/ |
PorterDuffXfermode.java | 23 public final PorterDuff.Mode mode; field in class:PorterDuffXfermode 26 * Create an xfermode that uses the specified porter-duff mode. 28 * @param mode The porter-duff mode that is applied 30 public PorterDuffXfermode(PorterDuff.Mode mode) { 31 this.mode = mode; 32 native_instance = nativeCreateXfermode(mode.nativeInt) [all...] |
/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
fwide.c | 37 fwide(FILE *fp, int mode) 43 * for mode value. 47 if (mode > 0) 48 mode = 1; 49 else if (mode < 0) 50 mode = -1; 57 if (wcio->wcio_mode == 0 && mode != 0) 58 wcio->wcio_mode = mode; 60 mode = wcio->wcio_mode; 63 return mode; [all...] |
/frameworks/native/opengl/tools/glgen/stubs/gles11/ |
glDrawArraysIndirect.java | 1 // C function void glDrawArraysIndirect ( GLenum mode, const void *indirect ); 3 public static native void glDrawArraysIndirect(int mode, long indirect);
|
glDrawElementsIndirect.java | 1 // C function glDrawElementsIndirect ( GLenum mode, GLenum type, const void *indirect ); 3 public static native void glDrawElementsIndirect(int mode, int type, long indirect);
|
/external/valgrind/none/tests/s390x/ |
rounding-5.c | 8 Rounding mode is provided via FPC. */ 26 set_rounding_mode(unsigned mode) 28 printf("setting FPC rounding mode to %s\n", rtext(mode)); 29 register unsigned r asm("1") = mode; 33 void cefbr(unsigned mode) 35 set_rounding_mode(mode); 43 void cegbr(unsigned mode) 45 set_rounding_mode(mode); 53 void cdgbr(unsigned mode) 66 int mode; local [all...] |
srnmt.stdout.exp | 1 initial rounding mode = 0 2 rounding mode = 3 3 rounding mode = 2 4 rounding mode = 1 5 rounding mode = 0 6 rounding mode = 7 7 rounding mode = 6 8 rounding mode = 5 9 rounding mode = 4
|
srnm.stdout.exp | 1 initial rounding mode = 0 2 rounding mode = 3 3 rounding mode = 2 4 rounding mode = 1 5 rounding mode = 0 6 rounding mode = 3 7 rounding mode = 2 8 rounding mode = 3
|
srnmb.stdout.exp | 1 initial rounding mode = 0 2 rounding mode = 3 3 rounding mode = 2 4 rounding mode = 1 5 rounding mode = 0 6 rounding mode = 1 7 rounding mode = 0
|
/external/clang/test/CodeGen/ |
pr13168.c | 5 void PR_OpenFile(int mode) { 6 _open64(0, mode);
|
/external/libpng/tests/ |
pngvalid-gamma-alpha-mode | 2 exec ./pngvalid --gamma-alpha-mode
|
pngvalid-gamma-expand16-alpha-mode | 2 exec ./pngvalid --gamma-alpha-mode --expand16
|
/bionic/libc/bionic/ |
__umask_chk.cpp | 40 * Validate that umask is called with sane mode. 45 extern "C" mode_t __umask_chk(mode_t mode) { 46 if (__predict_false((mode & 0777) != mode)) { 50 return umask(mode);
|
faccessat.cpp | 35 int faccessat(int dirfd, const char* pathname, int mode, int flags) { 36 // "The mode specifies the accessibility check(s) to be performed, 39 if ((mode != F_OK) && ((mode & ~(R_OK | W_OK | X_OK)) != 0) && 40 ((mode & (R_OK | W_OK | X_OK)) == 0)) { 58 return ___faccessat(dirfd, pathname, mode);
|
access.cpp | 32 int access(const char* path, int mode) { 33 return faccessat(AT_FDCWD, path, mode, 0);
|
reboot.cpp | 34 int reboot(int mode) { 35 return __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, mode, NULL);
|
mkfifo.cpp | 33 int mkfifo(const char* path, mode_t mode) { 34 return mkfifoat(AT_FDCWD, path, mode); 37 int mkfifoat(int fd, const char* path, mode_t mode) { 38 return mknodat(fd, path, (mode & ~S_IFMT) | S_IFIFO, 0);
|
/external/libvncserver/x11vnc/ |
pm.h | 38 extern void set_dpms_mode(char *mode);
|
/external/strace/ |
printmode.c | 9 sprintmode(int mode) 16 if ((mode & S_IFMT) == 0) 18 else if ((s = xlookup(modetypes, mode & S_IFMT)) == NULL) { 19 sprintf(buf, "%#o", mode); 23 (mode & S_ISUID) ? "|S_ISUID" : "", 24 (mode & S_ISGID) ? "|S_ISGID" : "", 25 (mode & S_ISVTX) ? "|S_ISVTX" : ""); 26 mode &= ~(S_IFMT|S_ISUID|S_ISGID|S_ISVTX); 27 if (mode) 28 sprintf((char*)s, "|%#o", mode); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
tty.py | 19 """Put terminal into a raw mode.""" 20 mode = tcgetattr(fd) 21 mode[IFLAG] = mode[IFLAG] & ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON) 22 mode[OFLAG] = mode[OFLAG] & ~(OPOST) 23 mode[CFLAG] = mode[CFLAG] & ~(CSIZE | PARENB) 24 mode[CFLAG] = mode[CFLAG] | CS [all...] |
stat.py | 19 # Extract bits from the mode 21 def S_IMODE(mode): 22 return mode & 07777 24 def S_IFMT(mode): 25 return mode & 0170000 40 def S_ISDIR(mode): 41 return S_IFMT(mode) == S_IFDIR 43 def S_ISCHR(mode): 44 return S_IFMT(mode) == S_IFCHR 46 def S_ISBLK(mode) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
tty.py | 19 """Put terminal into a raw mode.""" 20 mode = tcgetattr(fd) 21 mode[IFLAG] = mode[IFLAG] & ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON) 22 mode[OFLAG] = mode[OFLAG] & ~(OPOST) 23 mode[CFLAG] = mode[CFLAG] & ~(CSIZE | PARENB) 24 mode[CFLAG] = mode[CFLAG] | CS [all...] |
stat.py | 19 # Extract bits from the mode 21 def S_IMODE(mode): 22 return mode & 07777 24 def S_IFMT(mode): 25 return mode & 0170000 40 def S_ISDIR(mode): 41 return S_IFMT(mode) == S_IFDIR 43 def S_ISCHR(mode): 44 return S_IFMT(mode) == S_IFCHR 46 def S_ISBLK(mode) [all...] |
/external/skia/src/opts/ |
SkXfermode_opts_arm.cpp | 6 SkXfermode::Mode mode); 8 extern SkXfermodeProc SkPlatformXfermodeProcFactory_impl_neon(SkXfermode::Mode mode); 11 SkXfermode::Mode mode) { 15 SkXfermodeProc SkPlatformXfermodeProcFactory_impl(SkXfermode::Mode mode) { 20 SkXfermode::Mode mode) { [all...] |
/external/deqp/framework/common/ |
tcuTexVerifierUtil.hpp | 59 inline bool isNearestMipmapFilter (const Sampler::FilterMode mode) 61 return mode == Sampler::NEAREST_MIPMAP_NEAREST || mode == Sampler::LINEAR_MIPMAP_NEAREST; 64 inline bool isLinearMipmapFilter (const Sampler::FilterMode mode) 66 return mode == Sampler::NEAREST_MIPMAP_LINEAR || mode == Sampler::LINEAR_MIPMAP_LINEAR; 69 inline bool isMipmapFilter (const Sampler::FilterMode mode) 71 return isNearestMipmapFilter(mode) || isLinearMipmapFilter(mode); 74 inline bool isLinearFilter (const Sampler::FilterMode mode) [all...] |
/development/ndk/platforms/android-3/include/linux/netfilter/ |
xt_CONNSECMARK.h | 21 u_int8_t mode; member in struct:xt_connsecmark_target_info
|