HomeSort by: relevance | last modified time | path
    Searched refs:FLAGS (Results 1 - 25 of 35) sorted by relevancy

1 2

  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/go/
buildgo.sh 149 FLAGS=" -I../rtl -I../.. -I../../sanitizer_common -I../../../include -std=c++11 -Wall -fno-exceptions -fno-rtti -DSANITIZER_GO=1 -DSANITIZER_DEADLOCK_DETECTOR_VERSION=2 $OSCFLAGS $ARCHCFLAGS"
151 FLAGS="$FLAGS -DSANITIZER_DEBUG=0 -O3 -fomit-frame-pointer"
153 FLAGS="$FLAGS -mcpu=power8 -fno-function-sections"
155 FLAGS="$FLAGS -msse3"
158 FLAGS="$FLAGS -DSANITIZER_DEBUG=1 -g"
162 echo $CC gotsan.cc -c -o $DIR/race_$SUFFIX.syso $FLAGS $CFLAG
    [all...]
  /src/usr.bin/spell/spell/
spell.sh 38 FLAGS=
59 FLAGS="$FLAGS -b"
73 FLAGS="$FLAGS -v -o $VTMP"
75 x) FLAGS="$FLAGS -x"
108 $SPELLPROG $FLAGS $DICT $LANG $EXTRA | sort -u -k1f - $TMP | \
113 $SPELLPROG $FLAGS $DICT $LANG $EXTRA | sort -u -k1f - $TMP
  /src/usr.bin/make/unit-tests/
meta-cmd-cmp.mk 21 FLAGS?=
28 @echo FLAGS=${FLAGS:Uempty} > $@
31 @echo FLAGS=${FLAGS:Uempty} > $@
37 @echo This line not compared FLAGS=${FLAGS:Uempty} ${.OODATE:MNOMETA_CMP}
59 @${.MAKE} -dM -r -C ${.CURDIR} -f ${MAKEFILE} FLAGS=changed ${tests}
varmisc.mk 177 FLAGS= one two
178 FLAGS+= ${FLAGS.${.ALLSRC:M*.c:T:u}}
179 FLAGS.target2.c= three four
184 all: target1-flags target2-flags
185 target1-flags: target1.c
186 @echo $@: we have: ${FLAGS}
188 target2-flags: target2.c
189 @echo $@: we have: ${FLAGS}
    [all...]
Makefile 226 TESTS+= job-flags
314 TESTS+= sh-flags
509 # Override make flags for some of the tests; default is -k.
511 # settings FLAGS.test=-dv here, since that is closer to the test code.
512 FLAGS.cond-func-make= via-cmdline
513 FLAGS.doterror= # none, especially not -k
514 FLAGS.jobs-error-indirect= # none, especially not -k
515 FLAGS.jobs-error-nested= # none, especially not -k
516 FLAGS.jobs-error-nested-make= # none, especially not -k
517 FLAGS.varname-empty= -dv '$${:U}=cmdline-u' '=cmdline-plain
    [all...]
  /src/tools/compat/buildaux/
ax_check_compile_flag.m4 7 # AX_CHECK_COMPILE_FLAG(FLAG, [ACTION-SUCCESS], [ACTION-FAILURE], [EXTRA-FLAGS], [INPUT])
17 # If EXTRA-FLAGS is defined, it is added to the current language's default
18 # flags (e.g. CFLAGS) when the check is done. The check is thus made with
19 # the flags: "CFLAGS EXTRA-FLAGS FLAG". This can for example be used to
43 ax_check_save_flags=$[]_AC_LANG_PREFIX[]FLAGS
44 _AC_LANG_PREFIX[]FLAGS="$[]_AC_LANG_PREFIX[]FLAGS $4 $1"
48 _AC_LANG_PREFIX[]FLAGS=$ax_check_save_flags])
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/symbolizer/scripts/
build_symbolizer.sh 77 FLAGS=${FLAGS:-}
78 FLAGS="$FLAGS -fPIC -flto -Os -g0 -DNDEBUG"
84 CC=$CC CFLAGS="$FLAGS" RANLIB=/bin/true ./configure --static
91 LIBCXX_FLAGS="${FLAGS} -Wno-macro-redefined -I${LLVM_SRC}/projects/libcxxabi/include"
110 FLAGS="${FLAGS} -fno-rtti -fno-exceptions"
111 LLVM_FLAGS="${FLAGS} -nostdinc++ -I${ZLIB_BUILD} -I${LIBCXX_BUILD}/include/c++/v1"
161 $CC $FLAGS -fno-lto -c opt.bc -o symbolizer.
    [all...]
  /src/sys/external/bsd/drm2/include/linux/
spinlock.h 92 #define spin_lock_irqsave(SPINLOCK, FLAGS) \
94 (FLAGS) = 0; \
98 #define spin_trylock_irqsave(SPINLOCK, FLAGS) \
99 ( (FLAGS) = 0, \
103 spin_unlock_irqrestore(spinlock_t *spinlock, unsigned long __unused flags)
114 #define spin_lock_irqsave_nested(SPINLOCK, FLAGS, SUBCLASS) \
115 spin_lock_irqsave(SPINLOCK, FLAGS)
seqlock.h 170 #define write_seqlock_irqsave(SEQLOCK, FLAGS) do { \
171 (FLAGS) = (unsigned long)splvm(); \
175 #define write_sequnlock_irqrestore(SEQLOCK, FLAGS) do { \
177 splx((int)(FLAGS)); \
  /src/sys/external/isc/libsodium/dist/m4/
ax_check_compile_flag.m4 7 # AX_CHECK_COMPILE_FLAG(FLAG, [ACTION-SUCCESS], [ACTION-FAILURE], [EXTRA-FLAGS])
17 # If EXTRA-FLAGS is defined, it is added to the current language's default
18 # flags (e.g. CFLAGS) when the check is done. The check is thus made with
19 # the flags: "CFLAGS EXTRA-FLAGS FLAG". This can for example be used to
64 ax_check_save_flags=$[]_AC_LANG_PREFIX[]FLAGS
65 _AC_LANG_PREFIX[]FLAGS="$[]_AC_LANG_PREFIX[]FLAGS $4 $1"
70 _AC_LANG_PREFIX[]FLAGS=$ax_check_save_flags])
ax_check_link_flag.m4 7 # AX_CHECK_LINK_FLAG(FLAG, [ACTION-SUCCESS], [ACTION-FAILURE], [EXTRA-FLAGS], [INPUT])
17 # If EXTRA-FLAGS is defined, it is added to the linker's default flags
18 # when the check is done. The check is thus made with the flags: "LDFLAGS
19 # EXTRA-FLAGS FLAG". This can for example be used to force the linker to
  /src/common/dist/zlib/
inflate.h 22 FLAGS, /* i: waiting for method and flags (gzip) */
24 OS, /* i: waiting for extra flags and operating system (gzip) */
62 (gzip) -> FLAGS -> TIME -> OS -> EXLEN -> EXTRA -> NAME -> COMMENT ->
89 int flags; /* gzip header method and flags, 0 if zlib, or member in struct:inflate_state
inflate.c 120 state->flags = -1;
421 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
644 state->mode = FLAGS;
673 state->flags = 0; /* indicate zlib header */
680 case FLAGS:
682 state->flags = (int)(hold);
683 if ((state->flags & 0xff) != Z_DEFLATED) {
688 if (state->flags & 0xe000) {
689 strm->msg = __UNCONST("unknown header flags set");
695 if ((state->flags & 0x0200) && (state->wrap & 4)
1386 int flags; \/* temporary to save header status *\/ local in function:inflateSync
    [all...]
  /src/sys/dev/ic/
z8536reg.h 122 #define CTCSR_MASK(FLAGS) ((FLAGS) & 0x3f)
  /src/usr.sbin/pf/pfs/
token.l 77 flags { return FLAGS;}
parse.y 87 %token NOSCRUB SCRUB FLAGS TTL MODE
256 | SCRUB FLAGS NUMBER MODE NUMBER TTL NUMBER {
259 yyfatal("scrub flags is too big");
  /src/sys/arch/i386/include/
bioscall.h 94 #define FLAGS r_flags.biosreg_half[BIOSREG_LO]
  /src/sys/arch/ews4800mips/stand/boot/
Makefile 66 FLAGS = ${MIPSFLAGS} ${DEBUGFLAGS} ${OPTFLAGS}
67 AFLAGS = -xassembler-with-cpp -D_LOCORE ${FLAGS}
68 CFLAGS = ${FLAGS} -ffreestanding
  /src/sys/arch/hp300/stand/inst/
inst.c 275 #define FLAGS(out, flag) \
388 FLAGS("Bad sectoring? [%c] ", D_BADSECT);
389 FLAGS("Ecc? [%c] ", D_ECC);
390 FLAGS("Removable? [%c] ", D_REMOVABLE);
  /src/sys/kern/
subr_kmem.c 243 #define KMEM_CACHE_PROBE(ARRAY, INDEX, PTR, REQSIZE, ALLOCSIZE, FLAGS) \
253 #define KMEM_CACHE_PROBE(ARRAY, INDEX, PTR, REQSIZE, ALLOCSIZE, FLAGS) do \
263 (uintptr_t)(FLAGS), \
471 int flags = 0; local in function:kmem_create_caches
488 flags |= PR_NOTOUCH;
504 pc = pool_cache_init(cache_size, align, 0, flags,
568 kmem_strdupsize(const char *str, size_t *lenp, km_flag_t flags)
571 char *ptr = kmem_alloc(len, flags);
582 kmem_strndup(const char *str, size_t maxlen, km_flag_t flags)
588 char *ptr = kmem_alloc(len + 1, flags);
    [all...]
  /src/usr.sbin/npf/npfctl/
npf_parse.y 123 %token FLAGS
938 : FLAGS tcp_flags SLASH tcp_flags
943 | FLAGS tcp_flags
  /src/sys/external/bsd/drm2/include/
i915_trace.h 79 "unsigned"/*flags*/);
82 uint64_t size, uint64_t align, unsigned flags)
85 vm->i915->drm.primary->index, vm, size, align, flags);
94 "unsigned"/*flags*/);
97 struct drm_mm_node *node, unsigned flags)
102 flags);
181 "uint32_t"/*flags*/)
183 #define I915_TRACE_REQ(M, F, N, R, FLAGS) \
190 (FLAGS))
194 trace_i915_request_queue(struct i915_request *request, uint32_t flags)
    [all...]
  /src/share/misc/
style 404 k = !(l & FLAGS);
532 (void)printf("%s uses %" PRId64 " blocks and has flags %#" PRIx32 "\n",
  /src/sys/uvm/
uvm_extern.h 125 /* bits 0xffff0000: mapping flags */
188 #define UVM_MAPFLAG(PROT,MAXPROT,INH,ADVICE,FLAGS) \
189 (((MAXPROT) << 8)|(PROT)|(INH)|((ADVICE) << 12)|(FLAGS))
195 * the following defines are for uvm_km_alloc/free's flags
218 * flags for uvm_pagealloc_strat()
224 * flags for ubc_uiomove()
234 * flags for ubc_release()
240 * flags for ubc_uiomove()
246 * flags for uvn_findpages().
599 int flags; /* flags; see below * member in struct:uvm_coredump_state
    [all...]
  /src/usr.bin/config/
gram.y 178 %token XFILE FILE_SYSTEM FLAGS
474 /* zero or more flags for a file */
492 /* zero or more flags for an object file */
522 /* device nodes without flags */
540 /* flags for device nodes */
991 /* optional device flags */
994 | FLAGS int32 { $$ = $2; }

Completed in 173 milliseconds

1 2