HomeSort by relevance Sort by last modified time
    Searched defs:flags (Results 1 - 25 of 3466) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2005-01-02-VAArgError-ICE.c 5 int flags(int a, int b, ...) { function
  /external/grpc-grpc/src/core/lib/iomgr/
socket_utils_linux.cc 35 int flags = 0; local
36 flags |= nonblock ? SOCK_NONBLOCK : 0;
37 flags |= cloexec ? SOCK_CLOEXEC : 0;
39 &resolved_addr->len, flags);
socket_utils_posix.cc 36 int fd, flags; local
41 flags = fcntl(fd, F_GETFL, 0);
42 if (flags < 0) goto close_and_error;
43 if (fcntl(fd, F_SETFL, flags | O_NONBLOCK) != 0) goto close_and_error;
46 flags = fcntl(fd, F_GETFD, 0);
47 if (flags < 0) goto close_and_error;
48 if (fcntl(fd, F_SETFD, flags | FD_CLOEXEC) != 0) goto close_and_error;
  /external/tcpdump/
print-otv.c 44 uint8_t flags; local
51 flags = *bp;
52 ND_PRINT((ndo, "flags [%s] (0x%02x), ", flags & 0x08 ? "I" : ".", flags));
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
funopen.c 58 int flags; local
65 flags = __SWR; /* write only */
68 flags = __SRD; /* read only */
70 flags = __SRW; /* read-write */
74 fp->_flags = flags;
setvbuf.c 64 int ret, flags; local
97 flags = fp->_flags;
98 if (flags & __SMBF)
100 flags &= ~(__SLBF | __SNBF | __SMBF | __SOPT | __SNPT | __SEOF);
111 flags |= __swhatbuf(fp, &iosize, &ttyflag);
133 fp->_flags = (unsigned short)(flags | __SNBF);
140 flags |= __SMBF;
150 flags |= __SNPT;
157 flags |= __SLBF;
158 fp->_flags = (unsigned short)flags;
    [all...]
  /external/compiler-rt/test/BlocksRuntime/
flagsisa.c 14 __block int flags; local
17 ^{ flags=1; isa = (void *)isa; };
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/shm_open/
11-1.c 26 int fd, flags; local
34 flags = fcntl(fd, F_GETFD);
35 if (flags == -1) {
43 if (flags & FD_CLOEXEC) {
47 printf("shm_open() does not set the FD_CLOEXEC flags.\n");
  /external/mesa3d/src/gallium/state_trackers/nine/
nine_quirk.c 41 static unsigned long flags = 0; local
45 flags = debug_get_flags_option("NINE_QUIRKS", nine_quirk_table, 0);
48 return !!(flags & quirk);
  /external/strace/
membarrier.c 36 int cmd = tcp->u_arg[0], flags = tcp->u_arg[1]; local
39 tprintf(", %d", flags);
process_vm.c 40 kernel_ulong_t flags = tcp->u_arg[5]; local
52 /* arg 6: flags */
53 tprintf(", %" PRI_klu ", %" PRI_klu, remote_iovcnt, flags);
62 kernel_ulong_t flags = tcp->u_arg[5]; local
73 /* arg 6: flags */
74 tprintf(", %" PRI_klu ", %" PRI_klu, remote_iovcnt, flags);
seccomp.c 39 unsigned int flags = tcp->u_arg[1]; local
47 tprintf("%u, ", flags);
56 printflags(seccomp_filter_flags, flags,
64 tprintf("%u, ", flags);
statx.c 45 unsigned int flags = tcp->u_arg[2]; local
46 printflags(at_statx_sync_types, flags & AT_STATX_SYNC_TYPE,
48 flags &= ~AT_STATX_SYNC_TYPE;
49 if (flags) {
51 printflags(at_flags, flags, NULL);
swapon.c 9 unsigned int flags = tcp->u_arg[1]; local
10 unsigned int prio = flags & SWAP_FLAG_PRIO_MASK;
11 flags &= ~SWAP_FLAG_PRIO_MASK;
15 if (flags) {
16 printflags(swap_flags, flags, "SWAP_FLAG_???");
  /external/tensorflow/tensorflow/lite/tutorials/
mnist_tflite.py 23 flags = tf.app.flags variable
25 flags.DEFINE_string('data_dir', '/tmp/data_dir',
27 flags.DEFINE_string('model_file', '',
31 flags = flags.FLAGS variable
38 flags.data_dir)).get_next()
72 interpreter = tf.lite.Interpreter(model_path=flags.model_file)
  /external/tensorflow/tensorflow/tools/docs/
generate.py 44 flags = doc_generator.parse_known_args() variable
49 sys.exit(doc_generator.build(flags))
  /external/toybox/toys/android/
restorecon.c 34 int flags = 0; local
36 if (toys.optflags & FLAG_D) flags |= SELINUX_ANDROID_RESTORECON_DATADATA;
37 if (toys.optflags & FLAG_F) flags |= SELINUX_ANDROID_RESTORECON_FORCE;
39 flags |= SELINUX_ANDROID_RESTORECON_RECURSE;
40 if (toys.optflags & FLAG_n) flags |= SELINUX_ANDROID_RESTORECON_NOCHANGE;
41 if (toys.optflags & FLAG_v) flags |= SELINUX_ANDROID_RESTORECON_VERBOSE;
44 if (selinux_android_restorecon(*s, flags) < 0)
  /external/toybox/toys/other/
swapon.c 29 int flags = (toys.optflags&FLAG_d)*0x70000; local
32 flags |= SWAP_FLAG_PREFER | (TT.p << SWAP_FLAG_PRIO_SHIFT);
34 if (swapon(*toys.optargs, flags))
  /external/u-boot/arch/x86/cpu/x86_64/
interrupts.c 8 #include <asm/processor-flags.h>
17 long flags; local
19 asm volatile ("pushfq ; popq %0 ; cli\n" : "=g" (flags) : );
21 return flags & X86_EFLAGS_IF;
  /external/u-boot/cmd/
hash.c 20 int flags = HASH_FLAG_ENV; local
26 flags |= HASH_FLAG_VERIFY;
36 return hash_command(*argv, flags, cmdtp, flag, argc - 1, argv + 1);
sha1sum.c 17 int flags = HASH_FLAG_ENV; local
28 flags |= HASH_FLAG_VERIFY;
34 return hash_command("sha1", flags, cmdtp, flag, ac, av);
  /external/vixl/
.ycm_extra_conf.py 10 # Paths in the compilation flags must be absolute to allow ycm to find them from
15 flags = [ variable
30 flags.append('-DVIXL_INCLUDE_SIMULATOR_AARCH64')
35 'flags': flags,
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
setvbuf.c 45 int ret, flags; local
71 flags = fp->_flags;
72 if (flags & __SMBF)
74 flags &= ~(__SLBF | __SNBF | __SMBF | __SOPT | __SNPT | __SEOF);
85 flags |= __swhatbuf(fp, &iosize, &ttyflag);
107 fp->_flags = flags | __SNBF;
114 flags |= __SMBF;
131 flags |= __SNPT;
137 flags |= __SLBF;
138 fp->_flags = flags;
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
Xform.c 23 /** Translate the Open flags into a Uefi Open Modes value.
25 The Open Flags are:
43 UINT64 flags; local
46 flags = (UINT64)((oflags & O_ACCMODE) + 1); // Handle the Read/Write flags
47 if(flags & EFI_FILE_MODE_WRITE) { // Asking for write only?
49 flags = EFI_FILE_MODE_READ | EFI_FILE_MODE_WRITE;
53 // We just set the flags here since the only valid EFI mode with create
55 flags = EFI_FILE_MODE_READ | EFI_FILE_MODE_WRITE | EFI_FILE_MODE_CREATE;
57 return flags;
93 UINT64 flags = 0; local
    [all...]
  /external/compiler-rt/lib/asan/
asan_flags.h 12 // ASan runtime flags.
32 struct Flags {
40 extern Flags asan_flags_dont_use_directly;
41 inline Flags *flags() { function in namespace:__asan

Completed in 498 milliseconds

1 2 3 4 5 6 7 8 91011>>