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

1234567891011>>

/external/ltrace/testsuite/
H A Drun-my-tests.sh26 flags=''
29 flags="--verbose "
33 flags="${flags}--tool_exec=$2 "
36 flags="${flags}CFLAGS_FOR_TARGET=$1"
39 flags="$flags $3"
43 make check RUNTESTFLAGS="$flags"
/external/elfutils/src/libebl/
H A Deblmachineflagcheck.c38 ebl_machine_flag_check (ebl, flags)
40 Elf64_Word flags;
42 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, flags)
39 GElf_Xword flags;
41 return ebl != NULL ? ebl->machine_section_flag_check (flags) : (flags == 0);
/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/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
H A DSkBlitRow_opts_arm.cpp25 SkBlitRow::Proc16 SkBlitRow::PlatformFactory565(unsigned flags) { argument
26 return SK_ARM_NEON_WRAP(sk_blitrow_platform_565_procs_arm)[flags];
29 SkBlitRow::ColorProc16 SkBlitRow::PlatformColorFactory565(unsigned flags) { argument
30 return SK_ARM_NEON_WRAP(sk_blitrow_platform_565_colorprocs_arm)[flags];
33 SkBlitRow::Proc32 SkBlitRow::PlatformProcs32(unsigned flags) { argument
34 return SK_ARM_NEON_WRAP(sk_blitrow_platform_32_procs_arm)[flags];
/external/toybox/toys/other/
H A Dswapon.c25 int flags = 0; local
28 flags = SWAP_FLAG_PREFER | (TT.priority << SWAP_FLAG_PRIO_SHIFT);
30 if (swapon(*toys.optargs, flags))
H A Drmmod.c23 #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/chromium-trace/trace-viewer/third_party/WebOb/docs/
H A Ddoctests.py5 flags = doctest.ELLIPSIS|doctest.NORMALIZE_WHITESPACE
7 doctest.DocFileSuite('test_request.txt', optionflags=flags),
8 doctest.DocFileSuite('test_response.txt', optionflags=flags),
9 doctest.DocFileSuite('test_dec.txt', optionflags=flags),
10 doctest.DocFileSuite('do-it-yourself.txt', optionflags=flags),
11 doctest.DocFileSuite('file-example.txt', optionflags=flags),
12 doctest.DocFileSuite('index.txt', optionflags=flags),
13 doctest.DocFileSuite('reference.txt', optionflags=flags),
/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/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DAccessFlags.java22 * Constants used as "access flags" in various places in classes, and
23 * related utilities. Although, at the rop layer, flags are generally
26 * identical to Java access flags, but {@code ACC_SUPER} isn't
106 /** flags defined on classes */
111 /** flags defined on inner classes */
117 /** flags defined on fields */
122 /** flags defined on methods */
129 /** indicates conversion of class flags */
132 /** indicates conversion of field flags */
135 /** indicates conversion of method flags */
152 classString(int flags) argument
163 innerClassString(int flags) argument
174 fieldString(int flags) argument
185 methodString(int flags) argument
196 isPublic(int flags) argument
207 isProtected(int flags) argument
218 isPrivate(int flags) argument
229 isStatic(int flags) argument
240 isSynchronized(int flags) argument
251 isAbstract(int flags) argument
262 isNative(int flags) argument
273 isAnnotation(int flags) argument
284 isDeclaredSynchronized(int flags) argument
297 humanHelper(int flags, int mask, int what) argument
[all...]
/external/clang/test/CodeGen/
H A D2008-08-07-AlignPadding2.c7 int flags; member in struct:__anon1719
/external/toybox/toys/android/
H A Drestorecon.c34 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/bison/lib/
H A Dcloexec.c35 open or pipe2 that accept flags like O_CLOEXEC to create DESC
43 int flags = fcntl (desc, F_GETFD, 0); local
45 if (0 <= flags)
47 int newflags = (value ? flags | FD_CLOEXEC : flags & ~FD_CLOEXEC);
49 if (flags == newflags
H A Dmbswidth.h37 /* Optional flags to influence mbswidth/mbsnwidth behavior. */
51 extern int mbswidth (const char *string, int flags);
55 extern int mbsnwidth (const char *buf, size_t nbytes, int flags);
/external/valgrind/VEX/test/
H A Dtest-amd64-muldiv.h4 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
40 int64 res, s1, flags, resh; local
58 int64 res, s1, flags, resh; local
[all...]
H A Dtest-i386-muldiv.h4 int 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 int 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
40 int res, s1, flags, resh; local
[all...]
H A Dtest-i386-shift.h10 #define EXECSHIFT(size, res, s1, s2, flags) \
16 : "=g" (res), "=g" (flags)\
17 : "r" (s1), "0" (res), "1" (flags));
19 #define EXECSHIFT(size, res, s1, s2, flags) \
25 : "=q" (res), "=g" (flags)\
26 : "c" (s1), "0" (res), "1" (flags));
31 int res, flags; local
33 flags = iflags;
34 EXECSHIFT("", res, s1, s2, flags);
37 flags
44 int res, flags; local
67 int res, flags; local
80 int res, flags; local
96 int res, flags; local
[all...]
/external/libvpx/libvpx/vpx_ports/
H A Darm_cpudetect.c23 static int arm_cpu_env_flags(int *flags) { argument
27 *flags = (int)strtol(env, NULL, 0);
30 *flags = 0;
46 int flags; local
48 if (!arm_cpu_env_flags(&flags)) {
49 return flags;
53 flags |= HAS_MEDIA;
56 flags |= HAS_NEON;
58 return flags & mask;
68 int flags; local
[all...]
/external/libopus/celt/arm/
H A Darmcpu.c53 opus_uint32 flags; local
54 flags=0;
62 flags|=OPUS_CPU_ARM_EDSP;
71 flags|=OPUS_CPU_ARM_MEDIA;
80 flags|=OPUS_CPU_ARM_NEON;
88 return flags;
95 opus_uint32 flags = 0; local
104 /* 512 should be enough for anybody (it's even enough for all the flags that
118 flags |= OPUS_CPU_ARM_EDSP;
124 flags |
156 opus_uint32 flags = opus_cpu_capabilities(); local
[all...]
/external/elfutils/src/libelf/
H A Delf_flagdata.c41 elf_flagdata (data, cmd, flags)
44 unsigned int flags;
61 result = (data_scn->s->flags |= (flags & ELF_F_DIRTY));
63 result = (data_scn->s->flags &= ~(flags & ELF_F_DIRTY));
H A Delf_flagelf.c1 /* Manipulate ELF file flags.
41 elf_flagelf (elf, cmd, flags)
44 unsigned int flags;
58 result = (elf->flags
59 |= (flags & (ELF_F_DIRTY | ELF_F_LAYOUT | ELF_F_PERMISSIVE)));
61 result = (elf->flags
62 &= ~(flags & (ELF_F_DIRTY | ELF_F_LAYOUT | ELF_F_PERMISSIVE)));
H A Delf_flagscn.c1 /* Manipulate ELF section flags.
41 elf_flagscn (scn, cmd, flags)
44 unsigned int flags;
58 result = (scn->flags |= (flags & ELF_F_DIRTY));
60 result = (scn->flags &= ~(flags & ELF_F_DIRTY));
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DElemDesc.java26 * 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) argument
127 m_flags = flags;
134 * @param flags Bit flags tha
138 is(int flags) argument
156 setAttr(String name, int flags) argument
173 isAttrFlagSet(String name, int flags) argument
[all...]

Completed in 685 milliseconds

1234567891011>>