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

1234567891011>>

/freebsd-10.0-release/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.0-release/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
86 * Compare the value that @a mem points to with @a cmp. If they are
87 * the same swap the value with @a with.
89 * @note svn_atomic_cas should not be combined with the other
92 * way that is incompatible with the other atomic operations.
95 #define svn_atomic_cas(mem, with, cmp) \
96 apr_atomic_cas32((mem), (with), (cmp))
98 #define svn_atomic_cas(mem, with, cm
[all...]
/freebsd-10.0-release/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.0-release/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.0-release/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.0-release/contrib/unbound/
H A Dfreebsd-configure.sh31 --with-conf-file=/var/unbound/unbound.conf \
32 --with-run-dir=/var/unbound \
33 --with-username=unbound
/freebsd-10.0-release/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
H A Derr.copyoutbadaddr.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.0-release/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.0-release/tools/regression/geom_uzip/etalon/
H A Detalon.txt26 The Jabberwock, with eyes of flame,
32 He left it dead, and with its head
/freebsd-10.0-release/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.0-release/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.0-release/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_
/freebsd-10.0-release/crypto/openssh/
H A Dfreebsd-configure.sh9 --with-pam
10 --with-tcp-wrappers
11 --with-libedit
12 --with-ssl-engine
18 # generate config.h with krb5 and stash it
19 sh configure $configure_args --with-kerberos5
/freebsd-10.0-release/gnu/usr.bin/grep/tests/
H A Dwarning.sh14 with the line number, the name of the file,
/freebsd-10.0-release/sys/dev/sym/
H A DREADME.sym34 * Redistribution and use in source and binary forms, with or without
41 * documentation and/or other materials provided with the distribution.
62 This file was bundled with the `sym' driver source files, when
/freebsd-10.0-release/contrib/opie/
H A Dconfigure42 # The variables have the same names as the options, with
157 # Obsolete; use --with-gas.
205 --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
206 --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
211 echo "--enable and --with options recognized:$ac_help"
365 -with-* | --with-*)
366 ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
388 # Obsolete; use --with-x.
678 # Extract the first word of "gcc", so it can be a program name with arg
[all...]

Completed in 83 milliseconds

1234567891011>>