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

1 2 3 4 5 6 7 8 91011>>

  /art/test/151-OpenFileLimit/
run 17 flags="$@"
21 ${RUN} ${flags}
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/xlat_tables/
xlat_mmu_helpers.h 12 void enable_mmu_secure(uint32_t flags);
15 void enable_mmu_el1(unsigned int flags);
16 void enable_mmu_el3(unsigned int flags);
  /external/tensorflow/tensorflow/compiler/aot/
flags.cc 16 #include "tensorflow/compiler/aot/flags.h"
21 void AppendMainFlags(std::vector<Flag>* flag_list, MainFlags* flags) {
23 {"graph", &flags->graph,
27 {"config", &flags->config,
31 {"dump_fetch_nodes", &flags->dump_fetch_nodes,
32 "If set, only flags related to fetches are processed, and the resulting "
36 // Flags controlling the XLA ahead-of-time compilation, that correspond to
39 // TODO(toddw): The following flags also need to be supported:
42 {"target_triple", &flags->target_triple,
46 {"target_cpu", &flags->target_cpu
    [all...]
  /external/minijail/
syscall_wrapper.h 6 int sys_seccomp(unsigned int operation, unsigned int flags, void *args);
  /art/test/116-nodex2oat/
run 17 flags="${@}"
22 if [[ "${flags}" == *--prebuild* || "${flags}" != *--no-prebuild* ]] ; then
29 ${RUN} ${flags} --runtime-option -Xnodex2oat
34 ${RUN} ${flags} --runtime-option -Xdex2oat
39 ${RUN} ${flags}
  /art/test/117-nopatchoat/
run 17 # ensure flags includes prebuild and relocate. It doesn't make sense unless we
19 flags="$@"
24 if [[ "${flags}" == *--no-prebuild* ]] ; then
32 if [[ "${flags}" == *--no-relocate* ]] ; then
39 ${RUN} ${flags} --runtime-option -Xnodex2oat
44 ${RUN} ${flags} --runtime-option -Xdex2oat
49 ${RUN} ${flags}
  /art/test/613-inlining-dex-cache/
run 17 flags="$@"
20 exec ${RUN} ${flags/verify-at-runtime/interpret-only}
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
resolver_query_base.hpp 29 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 operator^(flags x, flags y
    [all...]
  /packages/services/Car/car-lib/src/android/car/media/
ICarVolumeCallback.aidl 30 void onGroupVolumeChanged(int groupId, int flags);
37 void onMasterMuteChanged(int flags);
  /art/test/147-stripped-dex-fallback/
run 17 # ensure flags includes prebuild.
18 flags="$@"
19 if [[ "${flags}" == *--no-prebuild* ]] ; then
24 ${RUN} ${flags} --strip-dex --runtime-option -Xnodex2oat
  /frameworks/base/media/java/android/media/
IVolumeController.aidl 26 void displaySafeVolumeWarning(int flags);
28 void volumeChanged(int streamType, int flags);
30 void masterMuteChanged(int flags);
  /packages/apps/Launcher3/src/com/android/launcher3/util/
FlagOp.java 9 public int apply(int flags) {
10 return flags;
16 public int apply(int flags) {
17 return flags | flag;
25 public int apply(int flags) {
26 return flags & ~flag;
  /prebuilts/clang/host/darwin-x86/clang-4053586/lib64/clang/5.0/include/sanitizer/
tsan_interface.h 35 // Mutex creation flags are passed to __tsan_mutex_create annotation.
37 // the flags may be passed to __tsan_mutex_pre_lock/__tsan_mutex_post_lock
48 // Mutex operation flags:
67 // Supported flags: mutex creation flags.
68 void __tsan_mutex_create(void *addr, unsigned flags);
71 // Supported flags: none.
72 void __tsan_mutex_destroy(void *addr, unsigned flags);
75 // Supported flags:
78 // - all mutex creation flags
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/compiler-rt/include/sanitizer/
tsan_interface.h 35 // Mutex creation flags are passed to __tsan_mutex_create annotation.
37 // the flags may be passed to __tsan_mutex_pre_lock/__tsan_mutex_post_lock
48 // Mutex operation flags:
67 // Supported flags: mutex creation flags.
68 void __tsan_mutex_create(void *addr, unsigned flags);
71 // Supported flags: none.
72 void __tsan_mutex_destroy(void *addr, unsigned flags);
75 // Supported flags:
78 // - all mutex creation flags
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/lib64/clang/5.0/include/sanitizer/
tsan_interface.h 35 // Mutex creation flags are passed to __tsan_mutex_create annotation.
37 // the flags may be passed to __tsan_mutex_pre_lock/__tsan_mutex_post_lock
48 // Mutex operation flags:
67 // Supported flags: mutex creation flags.
68 void __tsan_mutex_create(void *addr, unsigned flags);
71 // Supported flags: none.
72 void __tsan_mutex_destroy(void *addr, unsigned flags);
75 // Supported flags:
78 // - all mutex creation flags
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/compiler-rt/include/sanitizer/
tsan_interface.h 35 // Mutex creation flags are passed to __tsan_mutex_create annotation.
37 // the flags may be passed to __tsan_mutex_pre_lock/__tsan_mutex_post_lock
48 // Mutex operation flags:
67 // Supported flags: mutex creation flags.
68 void __tsan_mutex_create(void *addr, unsigned flags);
71 // Supported flags: none.
72 void __tsan_mutex_destroy(void *addr, unsigned flags);
75 // Supported flags:
78 // - all mutex creation flags
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
PatternErrorTest.java 41 // flags = 0 should raise no exception
42 int flags = 0; local
43 Pattern.compile("foo", flags);
45 // check that all valid flags accepted without exception
46 flags |= Pattern.UNIX_LINES;
47 flags |= Pattern.CASE_INSENSITIVE;
48 flags |= Pattern.MULTILINE;
49 flags |= Pattern.CANON_EQ;
50 flags |= Pattern.COMMENTS;
51 flags |= Pattern.DOTALL
    [all...]
  /external/syslinux/com32/modules/
cpuidtest.c 54 printf("Flags = ");
55 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
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
AccessFlags.java 22 * 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 */
    [all...]
  /external/tensorflow/tensorflow/compiler/jit/legacy_flags/
mark_for_compilation_pass_flags.cc 16 // Legacy flags for the XLA bridge's mark_for_compilation_pass module.
29 // Pointers to the parsed value of the flags and flag descriptors, initialized
31 static MarkForCompilationPassFlags* flags; member in namespace:tensorflow::legacy_flags
35 // Allocate *flags. Called via call_once(&flags_init,...).
37 flags = new MarkForCompilationPassFlags;
38 flags->tf_xla_auto_jit = 0;
39 flags->tf_xla_min_cluster_size = 2;
40 flags->tf_xla_max_cluster_size = std::numeric_limits<int32>::max();
41 flags->tf_xla_clustering_debug = false;
42 flags->tf_xla_cpu_global_jit = false
    [all...]
  /bionic/libc/bionic/
open.cpp 38 static inline int force_O_LARGEFILE(int flags) {
40 return flags; // No need, and aarch64's strace gets confused.
42 return flags | O_LARGEFILE;
46 static inline bool needs_mode(int flags) {
47 return ((flags & O_CREAT) == O_CREAT) || ((flags & O_TMPFILE) == O_TMPFILE);
55 int open(const char* pathname, int flags, ...) {
58 if (needs_mode(flags)) {
60 va_start(args, flags);
65 return __openat(AT_FDCWD, pathname, force_O_LARGEFILE(flags), mode)
    [all...]
  /external/strace/
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_???");
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/pt_common/
dynamic_pt_reading_utils.h 47 * Node Flags
49 static AK_FORCE_INLINE bool isMoved(const NodeFlags flags) {
50 return FLAG_IS_MOVED == (MASK_MOVED & flags);
53 static AK_FORCE_INLINE bool isDeleted(const NodeFlags flags) {
54 return FLAG_IS_DELETED == (MASK_MOVED & flags);
57 static AK_FORCE_INLINE bool willBecomeNonTerminal(const NodeFlags flags) {
58 return FLAG_WILL_BECOME_NON_TERMINAL == (MASK_MOVED & flags);
63 NodeFlags flags = originalFlags; local
64 flags = willBecomeNonTerminal ?
65 ((flags & (~MASK_MOVED)) | FLAG_WILL_BECOME_NON_TERMINAL) : flags
    [all...]
  /external/elfutils/libebl/
eblmachineflagcheck.c 38 ebl_machine_flag_check (Ebl *ebl, Elf64_Word flags)
40 return ebl != NULL ? ebl->machine_flag_check (flags) : (flags == 0);
eblmachinesectionflagcheck.c 1 /* Check SHF_MASKPROC flags.
37 ebl_machine_section_flag_check (Ebl *ebl, GElf_Xword flags)
39 return ebl != NULL ? ebl->machine_section_flag_check (flags) : (flags == 0);

Completed in 1407 milliseconds

1 2 3 4 5 6 7 8 91011>>