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

1234567891011>>

/freebsd-10-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...]
/freebsd-10-stable/contrib/ipfilter/rules/
H A Dexample.124 block in proto tcp all with short
6 # drop and log any IP packets with options set in them.
8 block in log all with ipopts
10 # log packets with BOTH ssrr and lsrr set
12 log in all with opt lsrr,ssrr
16 block in quick all with opt lsrr
17 block in quick all with opt ssrr
H A Dexample.95 pass in all with opt sec
10 pass out on le1 all with opt sec-class topsecret
12 pass in on le1 all with opt sec-class topsecret
H A Dexample.525 pass in from any to any with ipopts
H A Dexample.132 # Log all short TCP packets to qe3, with 10.3.3.3 as the intended
5 block in on qe0 to qe3:10.3.3.3 proto tcp all with short
/freebsd-10-stable/contrib/apr/atomic/unix/
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
70 APR_DECLARE(apr_uint32_t) apr_atomic_cas32(volatile apr_uint32_t *mem, apr_uint32_t with,
77 : "r" (with), "m" (*(mem)), "0"(cmp)
92 APR_DECLARE(void*) apr_atomic_casptr(volatile void **mem, void *with, const void *cmp) argument
98 : "r" (with), "m" (*mem), "0" (cmp));
102 : "r" ((unsigned long)with), "m" (*mem),
110 APR_DECLARE(void*) apr_atomic_xchgptr(volatile void **mem, void *with) argument
116 : "0" (with));
120 : "0" (with));
[all...]
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
109 APR_DECLARE(apr_uint32_t) apr_atomic_cas32(volatile apr_uint32_t *mem, apr_uint32_t with,
123 : "b" (mem), "r" (with), "r" (cmp)
145 APR_DECLARE(void*) apr_atomic_casptr(volatile void **mem, void *with, const void *cmp) argument
158 : "b" (mem), "r" (with), "r" (cmp)
170 : "b" (mem), "r" (with), "r" (cmp)
178 APR_DECLARE(void*) apr_atomic_xchgptr(volatile void **mem, void *with) argument
189 : "b" (mem), "r" (with)
199 : "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
88 APR_DECLARE(apr_uint32_t) apr_atomic_cas32(volatile apr_uint32_t *mem, apr_uint32_t with,
93 : "d" (with), "m" (*mem)
113 APR_DECLARE(void*) apr_atomic_casptr(volatile void **mem, void *with, const void *cmp) argument
119 : "d" (with), "m" (*mem)
124 : "d" (with), "m" (*mem)
132 APR_DECLARE(void*) apr_atomic_xchgptr(volatile void **mem, void *with) argument
140 : "d" (with), "m" (*mem)
147 : "d" (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
58 APR_DECLARE(apr_uint32_t) apr_atomic_cas32(volatile apr_uint32_t *mem, apr_uint32_t with,
61 return atomic_cas_32(mem, cmp, with);
69 APR_DECLARE(void*) apr_atomic_casptr(volatile void **mem, void *with, const void *cmp) argument
71 return atomic_cas_ptr(mem, (void*) cmp, with);
74 APR_DECLARE(void*) apr_atomic_xchgptr(volatile void **mem, void *with) argument
76 return atomic_swap_ptr(mem, 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
148 APR_DECLARE(apr_uint32_t) apr_atomic_cas32(volatile apr_uint32_t *mem, apr_uint32_t with,
156 *mem = with;
177 APR_DECLARE(void*) apr_atomic_casptr(volatile void **mem, void *with, const void *cmp) argument
184 *mem = with;
192 APR_DECLARE(void*) apr_atomic_xchgptr(volatile void **mem, void *with) argument
198 *mem = with;
/freebsd-10-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-10-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))
/freebsd-10-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-10-stable/contrib/unbound/
H A Dfreebsd-configure.sh34 --with-conf-file=/var/unbound/unbound.conf \
35 --with-run-dir=/var/unbound \
36 --with-username=unbound
/freebsd-10-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-10-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-10-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
/freebsd-10-stable/lib/libkse/test/
H A Dmutex_d.exp234 Inheritence test with change of priority - PASS
237 Inheritence test with change of priority - PASS
240 Inheritence test with change of priority - PASS
243 Inheritence test with change of priority - PASS
246 Inheritence test with change of priority - PASS
251 Lock with ceiling priority < thread priority - PASS
252 Lock with ceiling priority = thread priority - PASS
253 Lock with ceiling priority > thread priority - PASS
254 Preemption with ceiling priority < thread priority - PASS
255 Preemption with ceilin
[all...]
/freebsd-10-stable/contrib/apr-util/
H A Dapu-config.in3 # contributor license agreements. See the NOTICE file distributed with
6 # (the "License"); you may not use this file except in compliance with
43 # NOTE: the following line is modified during 'make install': alter with care!
58 --avoid-ldap do not include ldap library information with --libs
59 --ldap-libs print library information to link with ldap
60 --avoid-dbm do not include DBM library information with --libs
61 --dbm-libs print additional library information to link with DBM
71 When linking with libtool, an application should do something like:
183 # Since the user is specifying they are linking with libtool, we
/freebsd-10-stable/contrib/jemalloc/
H A DFREEBSD-upgrade40 # changes, then extract blows away the work tree and re-creates it with the
76 --enable-utrace --with-xslroot=/usr/local/share/xsl/docbook \
77 --with-private-namespace=__jemalloc_

Completed in 202 milliseconds

1234567891011>>