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

1 2 3 45 6 7 8 91011>>

  /external/strace/tests/
printflags.c 37 printflags(const struct xlat *xlat, unsigned long long flags,
40 if (flags == 0 && xlat->val == 0 && xlat->str) {
48 if (xlat->val && (flags & xlat->val) == xlat->val) {
54 flags &= ~xlat->val;
60 if (flags) {
63 printf("%#llx", flags);
67 if (flags) {
68 printf("%#llx", flags);
  /external/strace/tests-m32/
printflags.c 37 printflags(const struct xlat *xlat, unsigned long long flags,
40 if (flags == 0 && xlat->val == 0 && xlat->str) {
48 if (xlat->val && (flags & xlat->val) == xlat->val) {
54 flags &= ~xlat->val;
60 if (flags) {
63 printf("%#llx", flags);
67 if (flags) {
68 printf("%#llx", flags);
  /external/strace/tests-mx32/
printflags.c 37 printflags(const struct xlat *xlat, unsigned long long flags,
40 if (flags == 0 && xlat->val == 0 && xlat->str) {
48 if (xlat->val && (flags & xlat->val) == xlat->val) {
54 flags &= ~xlat->val;
60 if (flags) {
63 printf("%#llx", flags);
67 if (flags) {
68 printf("%#llx", flags);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/elf/
section8.d 2 #name: section flags
  /toolchain/binutils/binutils-2.27/include/vms/
dcx.h 33 unsigned char flags[4]; member in struct:vms_dcxmap
45 unsigned char flags[2]; member in struct:vms_dcxsbm
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-m68k/
isaa-mac.d 6 private flags = 12: \[isa A\] \[mac\]
isaa.d 6 private flags = 2: \[isa A\]
isaaplus.d 6 private flags = 3: \[isa A\+\]
isab-float.d 6 private flags = 8045: \[cfv4e\] \[isa B\] \[float\]
isab.d 6 private flags = 5: \[isa B\]
  /art/test/118-noimage-dex2oat/
run 17 flags="$@"
22 if [[ "${flags}" == *--prebuild* || "${flags}" != *--no-prebuild* ]] ; then
29 if [[ "${flags}" == *--no-relocate* ]] ; then
50 ${RUN} ${flags} ${bpath_arg} --runtime-option -Xnoimage-dex2oat --runtime-option -Xnodex2oat
55 ${RUN} ${flags} ${bpath_arg} --runtime-option -Xnoimage-dex2oat --runtime-option -Xnodex2oat \
61 ${RUN} ${flags} ${bpath_arg} --runtime-option -Ximage-dex2oat
66 ${RUN} ${flags} ${bpath_arg}
  /device/linaro/bootloader/arm-trusted-firmware/plat/arm/board/fvp/
fvp_security.c 24 if (get_arm_config()->flags & ARM_CONFIG_HAS_TZC)
  /external/clang/test/CodeGen/
2005-01-02-VAArgError-ICE.c 5 int flags(int a, int b, ...) { function
  /external/desugar/java/com/google/devtools/build/android/desugar/
BitFlags.java 18 /** 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}. Trivially
25 public static boolean isSet(int flags, int bitmask) {
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) {
34 return (flags & bitmask) == 0;
  /external/libmojo/mojo/edk/system/ports/
name.cc 16 std::ios::fmtflags flags(stream.flags());
20 stream.flags(flags);
  /external/ltp/include/lapi/
timerfd.h 30 int timerfd_create(int clockid, int flags)
32 return ltp_syscall(__NR_timerfd_create, clockid, flags);
37 int timerfd_settime(int fd, int flags, const struct itimerspec *new_value,
40 return ltp_syscall(__NR_timerfd_settime, fd, flags, new_value,
  /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/auxiliary/tgsi/
tgsi_emulate.h 36 tgsi_emulate(const struct tgsi_token *tokens, unsigned flags);
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_flush.h 40 unsigned flags,
46 unsigned flags);
58 void softpipe_texture_barrier(struct pipe_context *pipe, unsigned flags);
59 void softpipe_memory_barrier(struct pipe_context *pipe, unsigned flags);
  /external/skia/src/ports/
SkMemory_mozalloc.cpp 33 void* sk_malloc_flags(size_t size, unsigned flags) {
34 if (flags & SK_MALLOC_ZERO_INITIALIZE) {
35 return (flags & SK_MALLOC_THROW) ? moz_xcalloc(size, 1) : calloc(size, 1);
37 return (flags & SK_MALLOC_THROW) ? moz_xmalloc(size) : malloc(size);
  /external/skqp/src/ports/
SkMemory_mozalloc.cpp 33 void* sk_malloc_flags(size_t size, unsigned flags) {
34 if (flags & SK_MALLOC_ZERO_INITIALIZE) {
35 return (flags & SK_MALLOC_THROW) ? moz_xcalloc(size, 1) : calloc(size, 1);
37 return (flags & SK_MALLOC_THROW) ? moz_xmalloc(size) : malloc(size);
  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/
reference_picture_selection.cc 67 int flags = 0; local
70 flags |= VP8_EFLAG_NO_REF_LAST; // Don't reference the last frame
72 flags |= VP8_EFLAG_NO_REF_ARF; // Don't reference the alt-ref frame.
74 flags |= VP8_EFLAG_NO_REF_GF; // Don't reference the golden frame
88 flags |= VP8_EFLAG_NO_REF_LAST; // Don't reference the last frame.
90 flags |= VP8_EFLAG_FORCE_GF; // Update the golden reference.
91 flags |= VP8_EFLAG_NO_UPD_ARF; // Don't update alt-ref.
92 flags |= VP8_EFLAG_NO_REF_GF; // Don't reference the golden frame.
94 flags |= VP8_EFLAG_FORCE_ARF; // Update the alt-ref reference.
95 flags |= VP8_EFLAG_NO_UPD_GF; // Don't update the golden frame
    [all...]
  /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
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
zutil.c 34 uLong flags; local
36 flags = 0;
39 case 4: flags += 1; break;
40 case 8: flags += 2; break;
41 default: flags += 3;
45 case 4: flags += 1 << 2; break;
46 case 8: flags += 2 << 2; break;
47 default: flags += 3 << 2;
51 case 4: flags += 1 << 4; break;
52 case 8: flags += 2 << 4; break;
    [all...]
  /art/test/119-noimage-patchoat/
run 17 flags="$@"
21 if [[ "${flags}" == *--no-relocate* ]] ; then
34 ${RUN} ${flags} ${BPATH} --runtime-option -Xnoimage-dex2oat \
40 ${RUN} ${flags} ${BPATH} --runtime-option -Xnoimage-dex2oat \
47 ${RUN} ${flags} ${BPATH} --runtime-option -Ximage-dex2oat
52 ${RUN} ${flags} ${BPATH}

Completed in 1246 milliseconds

1 2 3 45 6 7 8 91011>>