Searched refs:flags (Results 1 - 25 of 5611) sorted by relevance

1234567891011>>

/external/minijail/
H A Dsyscall_wrapper.h17 int sys_seccomp(unsigned int operation, unsigned int flags, void *args);
/external/desugar/java/com/google/devtools/build/android/desugar/
H A DBitFlags.java17 * Convenience method for working with {@code int} bitwise flags.
22 * Returns {@code true} iff <b>all</b> bits in {@code bitmask} are set in {@code flags}.
25 public static boolean isSet(int flags, int bitmask) { argument
26 return (flags & bitmask) == bitmask;
30 * Returns {@code true} iff <b>none</b> of the bits in {@code bitmask} are set in {@code flags}.
33 public static boolean noneSet(int flags, int bitmask) { argument
34 return (flags & bitmask) == 0;
/external/parameter-framework/asio/include/asio/ip/
H A Dresolver_query_base.hpp29 enum flags enum in class:asio::ip::resolver_query_base
42 friend flags operator&(flags x, flags y)
44 return static_cast<flags>(
48 friend flags operator|(flags x, flags y)
50 return static_cast<flags>(
54 friend flags operato
[all...]
/external/parameter-framework/asio-1.10.6/include/asio/ip/
H A Dresolver_query_base.hpp29 enum flags enum in class:asio::ip::resolver_query_base
42 friend flags operator&(flags x, flags y)
44 return static_cast<flags>(
48 friend flags operator|(flags x, flags y)
50 return static_cast<flags>(
54 friend flags operato
[all...]
/external/mesa3d/src/glsl/
H A Dast_type.cpp52 return this->qualifier.flags.i != 0;
57 return this->flags.q.smooth
58 || this->flags.q.flat
59 || this->flags.q.noperspective;
65 if (this->flags.q.smooth)
67 else if (this->flags.q.flat)
69 else if (this->flags.q.noperspective)
81 ubo_mat_mask.flags.i = 0;
82 ubo_mat_mask.flags.q.row_major = 1;
83 ubo_mat_mask.flags
[all...]
/external/syslinux/com32/modules/
H A Dcpuidtest.c55 if (cpu.flags.fpu)
57 if (cpu.flags.vme)
59 if (cpu.flags.de)
61 if (cpu.flags.pse)
63 if (cpu.flags.tsc)
65 if (cpu.flags.msr)
67 if (cpu.flags.pae)
69 if (cpu.flags.mce)
71 if (cpu.flags.cx8)
73 if (cpu.flags
[all...]
/external/strace/
H A Dswapon.c9 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/elfutils/libebl/
H A Deblmachineflagcheck.c38 ebl_machine_flag_check (Ebl *ebl, Elf64_Word flags) argument
40 return ebl != NULL ? ebl->machine_flag_check (flags) : (flags == 0);
H A Deblmachinesectionflagcheck.c1 /* Check SHF_MASKPROC flags.
37 ebl_machine_section_flag_check (Ebl *ebl, GElf_Xword flags) argument
39 return ebl != NULL ? ebl->machine_section_flag_check (flags) : (flags == 0);
/external/skia/src/opts/
H A DSkBlitRow_opts_none.cpp12 SkBlitRow::Proc16 SkBlitRow::PlatformFactory565(unsigned flags) { argument
16 SkBlitRow::ColorProc16 SkBlitRow::PlatformColorFactory565(unsigned flags) { argument
20 SkBlitRow::Proc32 SkBlitRow::PlatformProcs32(unsigned flags) { argument
/external/syslinux/com32/lib/syslinux/video/
H A Dreportmode.c36 void syslinux_report_video_mode(uint16_t flags, uint16_t xsize, uint16_t ysize) argument
38 if (flags > 0x0f)
41 using_vga(flags, xsize, ysize);
/external/compiler-rt/test/BlocksRuntime/
H A Dflagsisa.c14 __block int flags; local
17 ^{ flags=1; isa = (void *)isa; };
/external/kernel-headers/original/uapi/asm-arm/asm/
H A Dmman.h3 #define arch_mmap_check(addr, len, flags) \
4 (((flags) & MAP_FIXED && (addr) < FIRST_USER_ADDRESS) ? -EINVAL : 0)
/external/libnetfilter_conntrack/src/expect/
H A Dcompare.c16 unsigned int flags,
19 unsigned int flags))
25 return cmp(exp1, exp2, flags);
28 } else if (flags & NFCT_CMP_MASK &&
31 } else if (flags & NFCT_CMP_STRICT) {
39 unsigned int flags)
42 (struct nf_conntrack *)&exp2->master, flags);
47 unsigned int flags)
50 (struct nf_conntrack *)&exp2->expected, flags);
55 unsigned int flags)
13 exp_cmp(int attr, const struct nf_expect *exp1, const struct nf_expect *exp2, unsigned int flags, int (*cmp)(const struct nf_expect *exp1, const struct nf_expect *exp2, unsigned int flags)) argument
38 cmp_exp_master(const struct nf_expect *exp1, const struct nf_expect *exp2, unsigned int flags) argument
46 cmp_exp_expected(const struct nf_expect *exp1, const struct nf_expect *exp2, unsigned int flags) argument
54 cmp_exp_mask(const struct nf_expect *exp1, const struct nf_expect *exp2, unsigned int flags) argument
63 cmp_exp_zone(const struct nf_expect *exp1, const struct nf_expect *exp2, unsigned int flags) argument
70 cmp_exp_flags(const struct nf_expect *exp1, const struct nf_expect *exp2, unsigned int flags) argument
77 cmp_exp_hname(const struct nf_expect *exp1, const struct nf_expect *exp2, unsigned int flags) argument
84 cmp_exp_class(const struct nf_expect *exp1, const struct nf_expect *exp2, unsigned int flags) argument
91 cmp_exp_natt(const struct nf_expect *exp1, const struct nf_expect *exp2, unsigned int flags) argument
100 cmp_exp_natdir(const struct nf_expect *exp1, const struct nf_expect *exp2, unsigned int flags) argument
107 cmp_exp_expfn(const struct nf_expect *exp1, const struct nf_expect *exp2, unsigned int flags) argument
114 __cmp_expect(const struct nf_expect *exp1, const struct nf_expect *exp2, unsigned int flags) argument
[all...]
/external/syslinux/com32/lib/syslinux/
H A Dlocalboot.c35 void syslinux_local_boot(int16_t flags) argument
37 local_boot(flags);
/external/libvpx/libvpx/vpx_ports/
H A Darm_cpudetect.c24 static int arm_cpu_env_flags(int *flags) { argument
28 *flags = (int)strtol(env, NULL, 0);
31 *flags = 0;
47 int flags; local
49 if (!arm_cpu_env_flags(&flags)) {
50 return flags;
54 flags |= HAS_NEON;
56 return flags & mask;
70 int flags; local
72 if (!arm_cpu_env_flags(&flags)) {
98 int flags; local
119 int flags; local
[all...]
/external/syslinux/com32/lua/src/
H A Dcpu.c26 snprintf(buffer,sizeof(buffer), "flags.%s",value_str);
57 add_flag(L, lua_cpu.flags.fpu, "fpu");
58 add_flag(L, lua_cpu.flags.vme, "vme");
59 add_flag(L, lua_cpu.flags.de, "de");
60 add_flag(L, lua_cpu.flags.pse, "pse");
61 add_flag(L, lua_cpu.flags.tsc, "tsc");
62 add_flag(L, lua_cpu.flags.msr, "msr");
63 add_flag(L, lua_cpu.flags.pae, "pae");
64 add_flag(L, lua_cpu.flags.mce, "mce");
65 add_flag(L, lua_cpu.flags
[all...]
/external/clang/test/CodeGen/
H A D2008-08-07-AlignPadding2.c7 int flags; member in struct:__anon2049
/external/kmod/tools/
H A Dport.c6 int darwin_delete_module(const char *name, int flags) argument
/external/libmojo/mojo/edk/system/ports/
H A Dname.cc12 std::ios::fmtflags flags(stream.flags());
16 stream.flags(flags);
/external/ltp/testcases/kernel/syscalls/fanotify/
H A Dfanotify.h44 static int fanotify_init(unsigned int flags, unsigned int event_f_flags) argument
46 return syscall(__NR_fanotify_init, flags, event_f_flags);
49 static long fanotify_mark(int fd, unsigned int flags, uint64_t mask, argument
52 return syscall(__NR_fanotify_mark, fd, flags, mask, dfd, pathname);
/external/ltp/testcases/kernel/syscalls/umount2/
H A Dumount2.h21 static inline int umount2_retry(const char *target, int flags) argument
26 ret = umount2(target, flags);
32 target, flags, i);
38 target, flags);
/external/syslinux/com32/lib/
H A Dfopen.c11 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);
H A Dfopendev.c11 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/
H A Dzfopen.c12 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);

Completed in 884 milliseconds

1234567891011>>