Home
last modified time | relevance | path

Searched refs:swap (Results 1 – 25 of 1360) sorted by relevance

12345678910>>...55

/freebsd/contrib/netbsd-tests/sbin/resize_ffs/
H A Dt_grow_swapped.sh40 test_case grow_16M_v0_4096 resize_ffs 4096 512 32768 131072 0 28 swap
41 test_case grow_16M_v0_8192 resize_ffs 8192 1024 32768 131072 0 28 swap
46 test_case grow_24M_v0_4096 resize_ffs 4096 512 49152 65536 0 41 swap
47 test_case grow_24M_v0_8192 resize_ffs 8192 1024 49152 65536 0 42 swap
51 test_case grow_32M_v0_4096 resize_ffs 4096 512 65536 131072 0 55 swap
52 test_case grow_32M_v0_8192 resize_ffs 8192 1024 65536 131072 0 56 swap
56 test_case grow_48M_v0_4096 resize_ffs 4096 512 98304 131072 0 82 swap
68 test_case grow_16M_v1_4096 resize_ffs 4096 512 32768 131072 1 28 swap
74 test_case grow_24M_v1_4096 resize_ffs 4096 512 49152 65536 1 41 swap
75 test_case grow_24M_v1_8192 resize_ffs 8192 1024 49152 65536 1 42 swap
[all …]
H A Dt_shrink_swapped.sh38 test_case shrink_24M_16M_v0_4096 resize_ffs 4096 512 49152 32768 0 41 swap
39 test_case shrink_24M_16M_v0_8192 resize_ffs 8192 1024 49152 32768 0 42 swap
43 test_case shrink_32M_24M_v0_4096 resize_ffs 4096 512 65536 49152 0 55 swap
44 test_case shrink_32M_24M_v0_8192 resize_ffs 8192 1024 65536 49152 0 56 swap
48 test_case shrink_48M_16M_v0_4096 resize_ffs 4096 512 98304 32768 0 82 swap
49 test_case shrink_48M_16M_v0_8192 resize_ffs 8192 1024 98304 32768 0 84 swap
59 test_case shrink_24M_16M_v1_4096 resize_ffs 4096 512 49152 32768 1 41 swap
60 test_case shrink_24M_16M_v1_8192 resize_ffs 8192 1024 49152 32768 1 42 swap
64 test_case shrink_32M_24M_v1_4096 resize_ffs 4096 512 65536 49152 1 55 swap
65 test_case shrink_32M_24M_v1_8192 resize_ffs 8192 1024 65536 49152 1 56 swap
[all …]
/freebsd/contrib/file/src/
H A Delfclass.h34 type = elf_getu16(swap, elfhdr.e_type);
39 phnum = elf_getu16(swap, elfhdr.e_phnum);
43 if (dophn_core(ms, clazz, swap, fd,
44 CAST(off_t, elf_getu(swap, elfhdr.e_phoff)), phnum,
52 phnum = elf_getu16(swap, elfhdr.e_phnum);
55 shnum = elf_getu16(swap, elfhdr.e_shnum);
58 if (dophn_exec(ms, clazz, swap, fd,
65 shnum = elf_getu16(swap, elfhdr.e_shnum);
68 if (doshn(ms, clazz, swap, fd,
71 fsize, elf_getu16(swap, elfhdr.e_machine),
[all …]
H A Dreadelf.c76 getu16(int swap, uint16_t value) in getu16() argument
83 if (swap) { in getu16()
95 getu32(int swap, uint32_t value) in getu32() argument
102 if (swap) { in getu32()
116 getu64(int swap, uint64_t value) in getu64() argument
123 if (swap) { in getu64()
140 #define elf_getu16(swap, value) getu16(swap, value) argument
141 #define elf_getu32(swap, value) getu32(swap, value) argument
142 #define elf_getu64(swap, value) getu64(swap, value) argument
643 elf_getu32(swap, desc[2]), elf_getu32(swap, desc[3])) == -1) in do_os_note()
[all …]
/freebsd/crypto/openssl/crypto/perlasm/
H A Dcbc.pl126 &bswap("eax") if $swap;
127 &bswap("ebx") if $swap;
137 &bswap("eax") if $swap;
138 &bswap("ebx") if $swap;
196 &bswap("eax") if $swap;
197 &bswap("ebx") if $swap;
207 &bswap("eax") if $swap;
208 &bswap("ebx") if $swap;
229 &bswap("eax") if $swap;
230 &bswap("ebx") if $swap;
[all …]
/freebsd/share/examples/bootforth/
H A Dframes.4th74 2dup 1+ swap 5 pick + swap 4 pick 1- -rot
76 2dup swap 1+ swap 5 pick 1- -rot
78 2dup swap 1+ swap 4 pick + 5 pick 1- -rot
82 2dup swap 5 pick + swap at-xy rt_el @ emit \ Draw right top corner
83 2 pick + swap 3 pick + swap at-xy rb_el @ emit
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DPassManagerInternal.h78 using std::swap; in swap()
79 swap(LHS.Pass, RHS.Pass); in swap()
83 swap(*this, RHS);
209 using std::swap;
210 swap(LHS.Result, RHS.Result);
214 swap(*this, RHS);
248 using std::swap;
253 swap(*this, RHS);
303 using std::swap;
304 swap(LHS.Pass, RHS.Pass);
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__concepts/
H A Dswappable.h44 void swap(_Tp&, _Tp&) = delete;
51 swap(std::forward<_Tp>(__t), std::forward<_Up>(__u)); in requires()
77 noexcept(noexcept(swap(std::forward<_Tp>(__t), std::forward<_Up>(__u)))) { in operator()
78 swap(std::forward<_Tp>(__t), std::forward<_Up>(__u)); in operator()
102 inline constexpr auto swap = __swap::__fn{};
107 concept swappable = requires(_Tp& __a, _Tp& __b) { ranges::swap(__a, __b); }; in requires()
111 ranges::swap(std::forward<_Tp>(__t), std::forward<_Tp>(__t)); in requires()
112 ranges::swap(std::forward<_Up>(__u), std::forward<_Up>(__u)); in requires()
113 ranges::swap(std::forward<_Tp>(__t), std::forward<_Up>(__u)); in requires()
114 ranges::swap(std::forward<_Up>(__u), std::forward<_Tp>(__t)); in requires()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DSmallPtrSet.cpp218 std::swap(this->CurArray, RHS.CurArray); in swap()
219 std::swap(this->CurArraySize, RHS.CurArraySize); in swap()
220 std::swap(this->NumNonEmpty, RHS.NumNonEmpty); in swap()
221 std::swap(this->NumTombstones, RHS.NumTombstones); in swap()
232 std::swap(RHS.CurArraySize, this->CurArraySize); in swap()
233 std::swap(this->NumNonEmpty, RHS.NumNonEmpty); in swap()
234 std::swap(this->NumTombstones, RHS.NumTombstones); in swap()
246 std::swap(RHS.CurArraySize, this->CurArraySize); in swap()
247 std::swap(RHS.NumNonEmpty, this->NumNonEmpty); in swap()
268 std::swap(this->NumNonEmpty, RHS.NumNonEmpty); in swap()
[all …]
/freebsd/tools/test/stress2/misc/
H A Dswap.sh37 sed '1,/^EOF/d' < $odir/$0 > $dir/swap.c
38 mycc -o swap -Wall -Wextra -O2 swap.c || exit 1
39 rm -f swap.c
49 log=/tmp/swap.log
51 /tmp/swap $((size / 4096))
56 rm -f /tmp/swap
H A Dunionfs14.sh40 mdconfig -a -t swap -s 256m -u $mdstart
45 mdconfig -a -t swap -s 512m -u $((mdstart + i))
56 (cd ../testcases/swap; ./swap -t 5m -i 20 > /dev/null) &
79 while pgrep -q swap; do pkill swap; done
H A Dunionfs9.sh45 mdconfig -a -t swap -s 256m -u $mdstart
50 mdconfig -a -t swap -s 512m -u $((mdstart + i))
60 (cd ../testcases/swap; ./swap -t 5m -i 20 > /dev/null) &
85 while pgrep -q swap; do pkill swap; done
H A Dswap6.sh37 (cd ../testcases/swap; ./swap -t 10m -i 100 -l 100 -h > /dev/null) &
40 while pgrep -q swap; do
43 [ $mx -ge $min ] && pkill swap
H A Dsyzkaller20.sh101 (cd ../testcases/swap; ./swap -t 1m -i 20 -h > /dev/null 2>&1) &
104 pkill -9 syzkaller20 swap
105 while pgrep -q swap; do pkill swap; done
H A Dlockf3.sh42 mdconfig -a -t swap -s 40m -u $mdstart
49 $here/../testcases/swap/swap -t 10m -i 200 > /dev/null &
51 pkill swap
54 while pgrep -q swap; do
55 pkill swap
H A Dnullfs30.sh49 mdconfig -a -t swap -s 256m -u $md1
52 mdconfig -a -t swap -s 256m -u $md2
71 (cd ../testcases/swap; ./swap -t 5m -i 20 > /dev/null) &
93 while pgrep -q swap; do pkill swap; done
H A Ddd.sh38 (cd ../testcases/swap; ./swap -t 30m -i 20) > /dev/null 2>&1 &
61 while pgrep -q swap; do
62 pkill -9 swap
/freebsd/contrib/llvm-project/libcxx/include/
H A D__split_buffer287 swap(__buf);
414 std::swap(__first_, __x.__first_);
415 std::swap(__begin_, __x.__begin_);
416 std::swap(__end_, __x.__end_);
428 std::swap(__end_, __t.__end_);
444 std::swap(__end_, __t.__end_);
467 std::swap(__end_, __t.__end_);
489 std::swap(__end_, __t.__end_);
512 std::swap(__end_, __t.__end_);
534 std::swap(__end_, __t.__end_);
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/zvol/zvol_misc/
H A Dzvol_misc_005_neg.ksh56 swap -l | grep -qF $voldev && log_must swap -d $voldev
72 log_must swap -a $voldev
74 log_must swap -d $voldev
78 log_mustnot swap -a $voldev
/freebsd/contrib/llvm-project/libcxx/src/
H A Dios.cpp337 void ios_base::swap(ios_base& rhs) noexcept { in swap() function in ios_base
338 std::swap(__fmtflags_, rhs.__fmtflags_); in swap()
339 std::swap(__precision_, rhs.__precision_); in swap()
340 std::swap(__width_, rhs.__width_); in swap()
341 std::swap(__rdstate_, rhs.__rdstate_); in swap()
345 std::swap(lhs_loc, rhs_loc); in swap()
346 std::swap(__fn_, rhs.__fn_); in swap()
347 std::swap(__index_, rhs.__index_); in swap()
349 std::swap(__event_cap_, rhs.__event_cap_); in swap()
350 std::swap(__iarray_, rhs.__iarray_); in swap()
[all …]
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/
H A Dx25519_ref10.c66 unsigned int swap; in crypto_scalarmult_curve25519_ref10() local
84 swap = 0; in crypto_scalarmult_curve25519_ref10()
88 swap ^= b; in crypto_scalarmult_curve25519_ref10()
89 fe25519_cswap(x2, x3, swap); in crypto_scalarmult_curve25519_ref10()
90 fe25519_cswap(z2, z3, swap); in crypto_scalarmult_curve25519_ref10()
91 swap = b; in crypto_scalarmult_curve25519_ref10()
111 fe25519_cswap(x2, x3, swap); in crypto_scalarmult_curve25519_ref10()
112 fe25519_cswap(z2, z3, swap); in crypto_scalarmult_curve25519_ref10()
/freebsd/stand/forth/
H A Dframes.4th128 swap rot ( y x w -- R: y+h )
130 swap R> R> R> execute
139 2dup 1+ swap 5 pick + swap 4 pick 1- -rot
141 2dup swap 1+ swap 5 pick 1- -rot
143 2dup swap 1+ swap 4 pick + 5 pick 1- -rot
147 2dup swap 5 pick + swap at-xy rt_el @ xemit \ Draw right top corner
148 2 pick + swap 3 pick + swap at-xy rb_el @ xemit
/freebsd/contrib/llvm-project/llvm/include/llvm/XRay/
H A DProfile.h105 friend void swap(Profile &L, Profile &R) { in swap() function
106 using std::swap; in swap()
107 swap(L.Blocks, R.Blocks); in swap()
108 swap(L.NodeStorage, R.NodeStorage); in swap()
109 swap(L.Roots, R.Roots); in swap()
110 swap(L.PathIDMap, R.PathIDMap); in swap()
111 swap(L.NextID, R.NextID); in swap()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DUse.cpp14 void Use::swap(Use &RHS) { in swap() function in llvm::Use
18 std::swap(Val, RHS.Val); in swap()
19 std::swap(Next, RHS.Next); in swap()
20 std::swap(Prev, RHS.Prev); in swap()
/freebsd/contrib/googletest/googletest/src/
H A Dgtest-assertion-result.cc52 void AssertionResult::swap(AssertionResult& other) { in swap() function in testing::AssertionResult
53 using std::swap; in swap()
54 swap(success_, other.success_); in swap()
55 swap(message_, other.message_); in swap()

12345678910>>...55