Searched refs:swap (Results 126 - 150 of 1115) sorted by relevance

1234567891011>>

/freebsd-current/tools/test/stress2/misc/
H A Dunionfs16.sh32 mdconfig -a -t swap -s 3g -u $md1
33 mdconfig -a -t swap -s 3g -u $md2
41 rm $mp2/stress2/testcases/swap/swap
H A Dsendfile15.sh56 mdconfig -a -t swap -s 2g -u $mdstart
63 (cd $odir/../testcases/swap; ./swap -t 5m -i 20 > /dev/null) &
66 while pgrep -q swap; do
67 pkill swap
H A Dmmap31.sh44 (cd ../testcases/swap; ./swap -t 10m -i 20) > /dev/null &
49 while pkill -9 swap; do :; done
H A Dmmap7.sh45 (cd ../testcases/swap; ./swap -t 1m -i 2) &
49 while pkill -9 swap; do :; done
H A Dswap2.sh29 # Swap test. Variation of swap.sh
41 mdconfig -a -t swap -s 2g -u $mdstart
57 swap=`sysctl -n vm.swap_total`
59 if [ $swap -gt 0 ]; then
H A Dpageout.sh54 mdconfig -a -t swap -s 2g -u $mdstart || exit 1
66 daemon sh -c "(cd ../testcases/swap; ./swap -t 5m -i 20 -l 100 -h)" > /dev/null
73 while pgrep -q swap; do
74 pkill swap
H A Dshm2.sh43 (cd $odir/../testcases/swap; ./swap -t 2m -i 20 -h -l 100) &
45 while pkill swap; do sleep 1; done
H A Dkevent15.sh42 (cd ../testcases/swap; ./swap -t 3m -i 20 -l 80) &
47 while pkill swap; do sleep .1; done
H A Dpipe.sh44 daemon sh -c '(cd ../testcases/swap; ./swap -t 10m -i 20)' > /dev/null 2>&1
61 while pgrep -q swap; do
62 pkill -9 swap
H A Dtmpfs13.sh92 while pgrep -q swap; do
93 pkill -9 swap
H A Dtruss.sh54 "(cd $odir/../testcases/swap; ./swap -t 6m -i 20 -k -l 100)" > \
63 while pkill -9 swap; do
70 while pkill -9 swap; do
H A Dunionfs10.sh54 mdconfig -a -t swap -s 4g -u $md1
55 mdconfig -a -t swap -s 4g -u $md2
H A Dunionfs11.sh54 mdconfig -a -t swap -s 4g -u $md1
55 mdconfig -a -t swap -s 4g -u $md2
H A Dunionfs12.sh54 mdconfig -a -t swap -s 4g -u $md1
55 mdconfig -a -t swap -s 4g -u $md2
H A Dkevent11.sh46 mdconfig -a -t swap -s 2g -u $mdstart
51 (cd $odir/../testcases/swap; ./swap -t 5m -i 20 -h -l 100 > /dev/null) &
58 while pkill -9 swap; do :; done
H A Dmsdos2.sh40 mdconfig -a -t swap -s 1g -u $mdstart
49 mdconfig -a -t swap -s 1g -u $u
/freebsd-current/contrib/llvm-project/libcxx/include/__thread/
H A Djthread.h85 _LIBCPP_HIDE_FROM_ABI void swap(jthread& __other) noexcept {
86 std::swap(__stop_source_, __other.__stop_source_);
87 std::swap(__thread_, __other.__thread_);
108 _LIBCPP_HIDE_FROM_ABI friend void swap(jthread& __lhs, jthread& __rhs) noexcept { __lhs.swap(__rhs); }
/freebsd-current/crypto/heimdal/lib/roken/
H A Dqsort.c82 #define swap(a, b) \ macro
131 swap(pl, pl - es);
146 swap(a, pm);
154 swap(pa, pb);
162 swap(pc, pd);
169 swap(pb, pc);
179 swap(pl, pl - es);
/freebsd-current/sys/libkern/
H A Dqsort.c72 #define swap(a, b) \ macro
127 swap(pl, pl - es);
143 swap(a, pm);
151 swap(pa, pb);
159 swap(pc, pd);
166 swap(pb, pc);
176 swap(pl, pl - es);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ADT/
H A DADL.h40 using std::swap;
44 T &&rhs) noexcept(noexcept(swap(std::declval<T>(),
46 swap(std::forward<T>(lhs), std::forward<T>(rhs));
75 /// Swaps \p lhs with \p rhs using `std::swap` and functions found through
/freebsd-current/contrib/arm-optimized-routines/pl/math/
H A Dsv_sincos_common.h70 /* If odd quadrant, swap cos and sin. */
71 svbool_t swap = svcmpeq (pg, svlsl_x (pg, un, 63), 0); local
72 svfloat64_t ss = svsel (swap, s, c);
73 svfloat64_t cc = svsel (swap, c, s);
H A Dv_sincos_common.h67 /* If odd quadrant, swap cos and sin. */
68 uint64x2_t swap = vtstq_s64 (n, v_s64 (1)); local
69 float64x2_t ss = vbslq_f64 (swap, c, s);
70 float64x2_t cc = vbslq_f64 (swap, s, c);
H A Dv_sincosf_common.h65 /* If odd quadrant, swap cos and sin. */
66 uint32x4_t swap = vtstq_u32 (vreinterpretq_u32_s32 (n), v_u32 (1)); local
67 float32x4_t ss = vbslq_f32 (swap, c, s);
68 float32x4_t cc = vbslq_f32 (swap, s, c);
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DAtomic.cpp57 # error No compare-and-swap implementation for your platform!
/freebsd-current/contrib/llvm-project/llvm/tools/bugpoint/
H A DListReducer.h106 TheList.swap(ShuffledList);
130 TheList.swap(Suffix);
138 TheList.swap(Prefix);
191 TheList.swap(TestList);

Completed in 216 milliseconds

1234567891011>>