Searched refs:with (Results 1 - 25 of 523) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/bmake/unit-tests/
H A Dforsubst.exp1 .for with :S;... OK
H A Dposix.exp6 a command prefixed by '+' executes even with -n
10 echo "a command prefixed by '+' executes even with -n"
11 a command prefixed by '+' executes even with -n
16 echo "a command prefixed by '+' executes even with -n"
17 a command prefixed by '+' executes even with -n
H A Dposix1.exp28 Target with suffix transformations
32 Implied source with suffix transformations
36 Suffixless target with suffix transformations
40 Out-of-date dependencies with suffix transformations
44 Member with suffix transformations
68 Target with suffix transformations
72 Implied source with suffix transformations
76 Suffixless target with suffix transformations
80 Out-of-date dependencies with suffix transformations
84 Member with suffi
[all...]
H A Dforsubst.mk9 @echo ".for with :S;... OK"
H A Dposix1.mk18 # with single space, except in commands, where the escape and the newline
42 # ${VAR:s1=s2}: replace s1, if found, with s2 at end of each word in
53 # In the past substitutions did not work with the D/F forms and those
90 "Target with suffix transformations\n\
94 Implied source with suffix transformations\n\
98 Suffixless target with suffix transformations\n\
102 Out-of-date dependencies with suffix transformations\n\
106 Member with suffix transformations\n\
112 # The system makefiles make the .c.a rule .PRECIOUS with a special source,
131 # Some of these rules are padded with useles
[all...]
H A Dexport.mk8 # belive it or not, we expect this one to come out with $UT_FU unexpanded.
/freebsd-11-stable/contrib/elftoolchain/libelf/
H A Dos.NetBSD.mk7 MKLINT= no # lint dies with a sigbus
/freebsd-11-stable/usr.bin/soelim/tests/
H A DMakefile11 basic-with-space.in \
12 basic-with-space.out
/freebsd-11-stable/contrib/apr/atomic/unix/
H A Dppc.c2 * contributor license agreements. See the NOTICE file distributed with
5 * (the "License"); you may not use this file except in compliance with
113 APR_DECLARE(apr_uint32_t) apr_atomic_cas32(volatile apr_uint32_t *mem, apr_uint32_t with,
127 : "b" (mem), "r" (with), "r" (cmp)
149 APR_DECLARE(void*) apr_atomic_casptr(volatile void **mem, void *with, const void *cmp) argument
162 : "b" (mem), "r" (with), "r" (cmp)
174 : "b" (mem), "r" (with), "r" (cmp)
182 APR_DECLARE(void*) apr_atomic_xchgptr(volatile void **mem, void *with) argument
193 : "b" (mem), "r" (with)
203 : "b" (mem), "r" (with)
[all...]
H A Ds390.c2 * contributor license agreements. See the NOTICE file distributed with
5 * (the "License"); you may not use this file except in compliance with
92 APR_DECLARE(apr_uint32_t) apr_atomic_cas32(volatile apr_uint32_t *mem, apr_uint32_t with,
97 : "d" (with), "m" (*mem)
117 APR_DECLARE(void*) apr_atomic_casptr(volatile void **mem, void *with, const void *cmp) argument
123 : "d" (with), "m" (*mem)
128 : "d" (with), "m" (*mem)
136 APR_DECLARE(void*) apr_atomic_xchgptr(volatile void **mem, void *with) argument
144 : "d" (with), "m" (*mem)
151 : "d" (with), "
[all...]
H A Dia32.c2 * contributor license agreements. See the NOTICE file distributed with
5 * (the "License"); you may not use this file except in compliance with
74 APR_DECLARE(apr_uint32_t) apr_atomic_cas32(volatile apr_uint32_t *mem, apr_uint32_t with,
81 : "r" (with), "m" (*(mem)), "0"(cmp)
96 APR_DECLARE(void*) apr_atomic_casptr(volatile void **mem, void *with, const void *cmp) argument
102 : "r" (with), "m" (*mem), "0" (cmp));
106 : "r" ((unsigned long)with), "m" (*mem),
114 APR_DECLARE(void*) apr_atomic_xchgptr(volatile void **mem, void *with) argument
120 : "0" (with));
124 : "0" (with));
[all...]
H A Dbuiltins.c2 * contributor license agreements. See the NOTICE file distributed with
5 * (the "License"); you may not use this file except in compliance with
56 APR_DECLARE(apr_uint32_t) apr_atomic_cas32(volatile apr_uint32_t *mem, apr_uint32_t with,
59 return __sync_val_compare_and_swap(mem, cmp, with);
69 APR_DECLARE(void*) apr_atomic_casptr(volatile void **mem, void *with, const void *cmp) argument
71 return (void*) __sync_val_compare_and_swap(mem, cmp, with);
74 APR_DECLARE(void*) apr_atomic_xchgptr(volatile void **mem, void *with) argument
78 return (void*) __sync_lock_test_and_set(mem, with);
H A Dsolaris.c2 * contributor license agreements. See the NOTICE file distributed with
5 * (the "License"); you may not use this file except in compliance with
62 APR_DECLARE(apr_uint32_t) apr_atomic_cas32(volatile apr_uint32_t *mem, apr_uint32_t with,
65 return atomic_cas_32(mem, cmp, with);
73 APR_DECLARE(void*) apr_atomic_casptr(volatile void **mem, void *with, const void *cmp) argument
75 return atomic_cas_ptr(mem, (void*) cmp, with);
78 APR_DECLARE(void*) apr_atomic_xchgptr(volatile void **mem, void *with) argument
80 return atomic_swap_ptr(mem, with);
H A Dbuiltins64.c2 * contributor license agreements. See the NOTICE file distributed with
5 * (the "License"); you may not use this file except in compliance with
51 APR_DECLARE(apr_uint64_t) apr_atomic_cas64(volatile apr_uint64_t *mem, apr_uint64_t with,
54 return __sync_val_compare_and_swap(mem, cmp, with);
H A Dmutex.c2 * contributor license agreements. See the NOTICE file distributed with
5 * (the "License"); you may not use this file except in compliance with
149 APR_DECLARE(apr_uint32_t) apr_atomic_cas32(volatile apr_uint32_t *mem, apr_uint32_t with,
157 *mem = with;
178 APR_DECLARE(void*) apr_atomic_casptr(volatile void **mem, void *with, const void *cmp) argument
185 *mem = with;
193 APR_DECLARE(void*) apr_atomic_xchgptr(volatile void **mem, void *with) argument
199 *mem = with;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/
H A DHost.inc3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
26 // Override the default target with an environment variable named by LLVM_TARGET_TRIPLE_ENV.
/freebsd-11-stable/contrib/dialog/package/freebsd/
H A DMakefile18 COMMENT= An enhanced version of 'dialog' to work with ncurses
27 --with-libtool \
28 --with-ncursesw \
29 --with-package=${PORTNAME}
/freebsd-11-stable/contrib/apr/include/
H A Dapr_atomic.h2 * contributor license agreements. See the NOTICE file distributed with
5 * (the "License"); you may not use this file except in compliance with
98 * compare an apr_uint32_t's value with 'cmp'.
99 * If they are the same swap the value with 'with'
101 * @param with what to swap it with
105 APR_DECLARE(apr_uint32_t) apr_atomic_cas32(volatile apr_uint32_t *mem, apr_uint32_t with,
109 * exchange an apr_uint32_t's value with 'val'.
111 * @param val what to swap it with
[all...]
/freebsd-11-stable/contrib/subversion/subversion/include/private/
H A Dsvn_atomic.h6 * distributed with this work for additional information
10 * with the License. You may obtain a copy of the License at
66 * Compare the value that @a mem points to with @a cmp. If they are
67 * the same swap the value with @a with.
69 * @note svn_atomic_cas should not be combined with the other
72 * way that is incompatible with the other atomic operations.
74 #define svn_atomic_cas(mem, with, cmp) \
75 apr_atomic_cas32((mem), (with), (cmp))
H A Dsvn_dep_compat.h6 * distributed with this work for additional information
10 * with the License. You may obtain a copy of the License at
118 * site is necessary when using APR 1. No casts should be used with
123 #define svn_atomic_casptr(mem, with, cmp) \
124 apr_atomic_casptr((mem), (with), (cmp))
128 #define svn_atomic_casptr(mem, with, cmp) \
129 apr_atomic_casptr((void volatile **)(mem), (with), (cmp))
159 * svn: SQLite compiled for 3.7.4, but running with 3.7.3
/freebsd-11-stable/contrib/unbound/
H A Dfreebsd-configure.sh39 --with-conf-file=/var/unbound/unbound.conf \
40 --with-run-dir=/var/unbound \
41 --with-username=unbound
/freebsd-11-stable/contrib/dialog/package/debian/
H A Drules2 # MAde with the aid of dh_make, by Craig Small
38 --with-libtool \
39 --with-ncursesw \
40 --with-package=cdialog \
/freebsd-11-stable/contrib/jemalloc/
H A DFREEBSD-upgrade40 # changes, then extract blows away the work tree and re-creates it with the
76 --with-xslroot=/usr/local/share/xsl/docbook --with-private-namespace=__ \
77 --with-lg-page-sizes=12,13,14,16
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/
H A Derr.chillbadarg.ksh6 * You may not use this file except in compliance with the License.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/
H A Dtst.providers.ksh6 # You may not use this file except in compliance with the License.
15 # If applicable, add the following below this CDDL HEADER, with the
16 # fields enclosed by brackets "[]" replaced with your own identifying
30 echo failed to enable io provider with full privs
37 # Now make sure that we cannot enable the io provider with reduced privs
41 echo successfully enabled the io provider with reduced privs

Completed in 288 milliseconds

1234567891011>>