HomeSort by relevance Sort by last modified time
    Searched refs:flags (Results 76 - 100 of 16899) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/valgrind/none/tests/amd64/
fb_test_amd64_muldiv.h 4 int64 res, s1, s0, flags; local
8 flags = 0;
14 : "=a" (res), "=g" (flags)
15 : "q" (s1), "0" (res), "1" (flags));
17 stringify(OP) "b", s0, s1, res, flags & CC_MASK);
22 int64 res, s1, flags, resh; local
26 flags = 0;
32 : "=a" (res), "=g" (flags), "=d" (resh)
33 : "q" (s1), "0" (res), "1" (flags), "2" (resh));
35 stringify(OP) "w", op0h, op0, s1, resh, res, flags & CC_MASK)
40 int64 res, s1, flags, resh; local
58 int64 res, s1, flags, resh; local
    [all...]
  /external/tensorflow/tensorflow/compiler/jit/legacy_flags/
parallel_check_op_flags.cc 16 // Legacy flags for the XLA bridge's parallel_check_op module.
29 // Pointers to the parsed value of the flags and flag descriptors, initialized
31 static ParallelCheckOpFlags* flags; member in namespace:tensorflow::legacy_flags
35 // Allocate *flags. Called via call_once(&flags_init,...).
37 flags = new ParallelCheckOpFlags;
38 flags->parallel_check_failfast = true;
39 flags->parallel_check_atol = "1e-5";
40 flags->parallel_check_rtol = "1e-5";
42 Flag("parallel_check_failfast", &flags->parallel_check_failfast,
44 Flag("parallel_check_atol", &flags->parallel_check_atol
    [all...]
  /libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
StatelessTestOp.java 33 int flags = op.opGetFlags(); local
36 return new ReferencePipeline.StatelessOp<Object, T>(upstream, op.inputShape(), flags) {
37 public Sink opWrapSink(int flags, Sink<T> sink) {
38 return op.opWrapSink(flags, isParallel(), sink);
42 return new IntPipeline.StatelessOp<Object>(upstream, op.inputShape(), flags) {
43 public Sink opWrapSink(int flags, Sink sink) {
44 return op.opWrapSink(flags, isParallel(), sink);
48 return new LongPipeline.StatelessOp<Object>(upstream, op.inputShape(), flags) {
50 public Sink opWrapSink(int flags, Sink sink) {
51 return op.opWrapSink(flags, isParallel(), sink)
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixChannelFactory.java 54 * Represents the flags from a user-supplied set of open options.
56 protected static class Flags {
68 static Flags toFlags(Set<? extends OpenOption> options) {
69 Flags flags = new Flags(); local
73 case READ : flags.read = true; break;
74 case WRITE : flags.write = true; break;
75 case APPEND : flags.append = true; break;
76 case TRUNCATE_EXISTING : flags.truncateExisting = true; break
119 Flags flags = Flags.toFlags(options); local
160 Flags flags = Flags.toFlags(options); local
    [all...]
  /external/toybox/scripts/
install.c 10 #define NEWTOY(name, opts, flags) {#name, flags},
11 #define OLDTOY(name, oldname, flags) {#name, flags},
15 struct {char *name; int flags;} toy_list[] = { member in struct:__anon40258
26 int fl = toy_list[i].flags;
  /external/toybox/toys/other/
rmmod.c 23 #define delete_module(mod, flags) syscall(__NR_delete_module, mod, flags)
27 unsigned int flags = O_NONBLOCK|O_EXCL; local
38 if (toys.optflags & FLAG_f) flags |= O_TRUNC;
39 if (toys.optflags & FLAG_w) flags &= ~O_NONBLOCK;
41 if (delete_module(mod_name, flags))
  /external/syslinux/com32/hdt/
hdt-cli-cpu.c 61 if (hardware->cpu.flags.lm)
65 if (hardware->cpu.flags.smp)
69 if (hardware->cpu.flags.vmx || hardware->cpu.flags.svm)
75 /* Let's compute the cpu flags display
76 * We have to maximize the number of flags per line */
80 /* Flush is only set when no more flags are present
86 snprintf(output_buffer, sizeof output_buffer, "Flags : %s\n",
141 if (hardware->cpu.flags.smp) {
147 if (hardware->cpu.flags.lm)
    [all...]
  /external/webrtc/webrtc/video/
video_loopback.cc 21 namespace flags { namespace in namespace:webrtc
23 // Flags common with screenshare loopback, with different default values.
66 // Flags common with screenshare loopback, with equal default values.
187 // Video-specific flags.
195 } // namespace flags
199 pipe_config.loss_percent = flags::LossPercent();
200 pipe_config.link_capacity_kbps = flags::LinkCapacityKbps();
201 pipe_config.queue_length_packets = flags::QueueSize();
202 pipe_config.queue_delay_ms = flags::AvgPropagationDelayMs();
203 pipe_config.delay_standard_deviation_ms = flags::StdPropagationDelayMs()
    [all...]
  /external/libnetfilter_conntrack/src/conntrack/
compare.c 16 unsigned int flags,
19 unsigned int flags), bool strict)
24 return cmp(ct1, ct2, flags);
27 } else if (flags & NFCT_CMP_MASK &&
29 return strict ? 0 : cmp(ct1, ct2, flags);
30 } else if (flags & NFCT_CMP_STRICT) {
31 return strict ? 0 : cmp(ct1, ct2, flags);
39 unsigned int flags)
47 unsigned int flags)
55 unsigned int flags)
    [all...]
  /bionic/libc/bionic/
accept4.cpp 21 int accept4(int sockfd, sockaddr* addr, socklen_t* addrlen, int flags) {
22 return __netdClientDispatch.accept4(sockfd, addr, addrlen, flags);
recv.cpp 31 ssize_t recv(int socket, void *buf, size_t len, int flags) {
32 return recvfrom(socket, buf, len, flags, NULL, 0);
send.cpp 31 ssize_t send(int socket, const void* buf, size_t len, int flags) {
32 return sendto(socket, buf, len, flags, NULL, 0);
  /device/linaro/bootloader/arm-trusted-firmware/plat/common/aarch32/
plat_common.c 19 void bl32_plat_enable_mmu(uint32_t flags)
21 enable_mmu_secure(flags);
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
recv.c 36 @param [in] flags Message control flags
48 int flags
59 flags,
send.c 35 @param [in] flags Message control flags
47 int flags
53 return sendto ( s, buffer, length, flags, NULL, 0 );
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ElemDesc.java 26 * This class has a series of flags (bit values) that describe an HTML element
35 /** Bit flags to tell about this element type. */
39 * Table of attribute names to integers, which contain bit flags telling about
120 * Construct an ElemDesc from a set of bit flags.
123 * @param flags Bit flags that describe the basic properties of this element type.
125 ElemDesc(int flags)
127 m_flags = flags;
134 * @param flags Bit flags that describe the basic properties of interest
    [all...]
  /external/expat/xmlwf/
xmlurl.h 41 unsigned flags);
  /external/libvpx/libvpx/vpx_ports/
ppc_cpudetect.c 21 static int cpu_env_flags(int *flags) {
25 *flags = (int)strtol(env, NULL, 0);
28 *flags = 0;
39 int flags; local
47 if (!cpu_env_flags(&flags)) {
48 return flags;
63 flags |= HAS_VSX;
74 return flags & mask;
  /external/ltp/include/lapi/
tee.h 27 ssize_t tee(int fd_in, int fd_out, size_t len, unsigned int flags)
29 return tst_syscall(__NR_tee, fd_in, fd_out, len, flags);
vmsplice.h 31 unsigned long nr_segs, unsigned int flags)
33 return tst_syscall(__NR_vmsplice, fd, iov, nr_segs, flags);
  /external/ltp/testcases/kernel/syscalls/openat/
openat.h 29 int openat(int dirfd, const char *pathname, int flags, mode_t mode)
31 return ltp_syscall(__NR_openat, dirfd, pathname, flags, mode);
  /external/ltp/testcases/kernel/syscalls/renameat2/
renameat2.h 28 const char *newpath, unsigned int flags)
31 newpath, flags);
  /external/skia/src/opts/
SkBlitRow_opts_arm.cpp 17 SkBlitRow::Proc32 SkBlitRow::PlatformProcs32(unsigned flags) {
18 return SK_ARM_NEON_WRAP(sk_blitrow_platform_32_procs_arm)[flags];
  /external/skqp/src/opts/
SkBlitRow_opts_arm.cpp 17 SkBlitRow::Proc32 SkBlitRow::PlatformProcs32(unsigned flags) {
18 return SK_ARM_NEON_WRAP(sk_blitrow_platform_32_procs_arm)[flags];
  /external/strace/
mount.c 46 kernel_ulong_t flags = tcp->u_arg[3]; local
49 if ((flags & MS_MGC_MSK) == MS_MGC_VAL) {
50 flags &= ~MS_MGC_MSK;
54 if (flags & MS_REMOUNT)
56 else if (flags & (MS_BIND | MS_MOVE | MS_SHARED
74 if (flags)
77 if (flags || !old_magic)
78 printflags64(mount_flags, flags, "MS_???");

Completed in 412 milliseconds

1 2 34 5 6 7 8 91011>>