HomeSort by relevance Sort by last modified time
    Searched refs:mode (Results 1 - 25 of 11477) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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);
  /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...]
  /external/strace/
printmode.c 41 print_symbolic_mode_t(const unsigned int mode)
45 if (mode & S_IFMT) {
46 ifmt = xlookup(modetypes, mode & S_IFMT);
48 tprintf("%#03o", mode);
58 (mode & S_ISUID) ? "S_ISUID|" : "",
59 (mode & S_ISGID) ? "S_ISGID|" : "",
60 (mode & S_ISVTX) ? "S_ISVTX|" : "",
61 mode & ~(S_IFMT|S_ISUID|S_ISGID|S_ISVTX));
65 print_numeric_umode_t(const unsigned short mode)
67 tprintf("%#03ho", mode);
    [all...]
  /external/libpng/tests/
pngvalid-gamma-alpha-mode 2 exec ./pngvalid --strict --gamma-alpha-mode
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-sh/sh64/
relax3.s 2 .mode shmedia
6 .mode shcompact
  /external/autotest/server/cros/ap_configurators/
netgear4500_ap_configurator.py 16 def _set_mode(self, mode, band=None):
17 if mode == ap_spec.MODE_G or mode == ap_spec.MODE_A:
18 mode = 'Up to 54 Mbps'
19 elif mode == ap_spec.MODE_N:
20 mode = 'Up to 450 Mbps'
22 raise RuntimeError('Unsupported mode passed.')
27 self.select_item_from_popup_by_xpath(mode, xpath)
  /bionic/libc/include/bits/fortify/
stat.h 36 #define __umask_invalid_mode_str "'umask' called with invalid mode"
43 mode_t umask(mode_t mode)
46 __clang_error_if(mode & ~0777, __umask_invalid_mode_str) {
47 return __umask_chk(mode);
57 mode_t umask(mode_t mode) {
58 if (__builtin_constant_p(mode)) {
59 if ((mode & 0777) != mode) {
62 return __umask_real(mode);
64 return __umask_chk(mode);
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
fwide.c 50 fwide(FILE *fp, int mode)
62 * for mode value.
66 if (mode > 0)
67 mode = 1;
68 else if (mode < 0)
69 mode = -1;
76 if (wcio->wcio_mode == 0 && mode != 0)
77 wcio->wcio_mode = mode;
79 mode = wcio->wcio_mode;
82 return mode;
    [all...]
  /bionic/libc/bionic/
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)) {
59 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);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
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] | CS8
    [all...]
  /external/python/cpython2/Lib/
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...]
  /external/python/cpython3/Lib/
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...]
  /prebuilts/gdb/darwin-x86/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...]
  /prebuilts/gdb/linux-x86/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...]
  /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...]
  /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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
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...]

Completed in 470 milliseconds

1 2 3 4 5 6 7 8 91011>>