HomeSort by relevance Sort by last modified time
    Searched defs:flags (Results 1 - 25 of 6248) 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/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/syslinux/com32/lib/
fopen.c 11 int flags = O_RDONLY; local
18 flags = O_RDONLY;
21 flags = O_WRONLY | O_CREAT | O_TRUNC;
24 flags = O_WRONLY | O_CREAT | O_APPEND;
34 flags = (flags & ~(O_RDONLY | O_WRONLY)) | O_RDWR;
37 fd = open(file, flags, 0666);
fopendev.c 11 int flags = O_RDONLY; local
18 flags = O_RDONLY;
21 flags = O_WRONLY | O_CREAT | O_TRUNC;
24 flags = O_WRONLY | O_CREAT | O_APPEND;
34 flags = (flags & ~(O_RDONLY | O_WRONLY)) | O_RDWR;
37 fd = opendev(file, flags);
  /external/syslinux/com32/lib/sys/
zfopen.c 12 int flags = O_RDONLY; local
19 flags = O_RDONLY;
22 flags = O_WRONLY | O_CREAT | O_TRUNC;
25 flags = O_WRONLY | O_CREAT | O_APPEND;
35 flags = (flags & ~(O_RDONLY | O_WRONLY)) | O_RDWR;
38 fd = zopen(file, flags, 0666);
  /external/tensorflow/tensorflow/c/
c_api_experimental.cc 29 // These XLA flags are needed to trigger XLA properly from C (more generally
32 tensorflow::legacy_flags::MarkForCompilationPassFlags* flags = local
34 flags->tf_xla_cpu_global_jit = true;
35 flags->tf_xla_min_cluster_size = 1;
  /external/tensorflow/tensorflow/tools/dist_test/python/
mnist_replica.py 46 flags = tf.app.flags variable
47 flags.DEFINE_string("data_dir", "/tmp/mnist-data",
49 flags.DEFINE_boolean("download_only", False,
52 flags.DEFINE_integer("task_index", None,
56 flags.DEFINE_integer("num_gpus", 1, "Total number of gpus for each machine."
58 flags.DEFINE_integer("replicas_to_aggregate", None,
62 flags.DEFINE_integer("hidden_units", 100,
64 flags.DEFINE_integer("train_steps", 200,
66 flags.DEFINE_integer("batch_size", 100, "Training batch size"
    [all...]
  /external/tensorflow/tensorflow/tools/docs/
generate.py 44 flags = doc_generator.parse_known_args() variable
53 sys.exit(doc_generator.build(flags))
generate_1_0.py 44 flags = doc_generator.parse_known_args() variable
92 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 28 int flags = (toys.optflags&FLAG_d)*0x70000; local
31 flags |= SWAP_FLAG_PREFER | (TT.priority << SWAP_FLAG_PRIO_SHIFT);
33 if (swapon(*toys.optargs, flags))
  /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,
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonGNUInfo.cpp 23 /// flags - the value of ElfXX_Ehdr::e_flags
24 uint64_t HexagonGNUInfo::flags() const { function in class:mcld::HexagonGNUInfo
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter/
xt_socket.h 11 __u8 flags; member in struct:xt_socket_mtinfo1
  /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...]

Completed in 780 milliseconds

1 2 3 4 5 6 7 8 91011>>