Searched refs:swap (Results 1 - 25 of 1115) sorted by relevance

1234567891011>>

/freebsd-current/contrib/netbsd-tests/sbin/resize_ffs/
H A Dt_grow_swapped.sh33 # resize_ffs blocksize fragsize fssize newfssize level numdata swap
37 # If 'swap' is included, byteswap the fs
40 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
42 test_case grow_16M_v0_16384 resize_ffs 16384 2048 32768 131072 0 29 swap
43 test_case grow_16M_v0_32768 resize_ffs 32768 4096 32768 131072 0 28 swap
44 test_case grow_16M_v0_65536 resize_ffs 65536 8192 32768 131072 0 26 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
48 test_case grow_24M_v0_16384 resize_ffs 16384 2048 49152 65536 0 43 swap
[all...]
H A Dt_shrink_swapped.sh33 # resize_ffs blocksize fragsize fssize newfssize level numdata swap
37 # If 'swap' is included, byteswap the fs
38 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
40 test_case shrink_24M_16M_v0_16384 resize_ffs 16384 2048 49152 32768 0 43 swap
41 test_case shrink_24M_16M_v0_32768 resize_ffs 32768 4096 49152 32768 0 42 swap
42 test_case shrink_24M_16M_v0_65536 resize_ffs 65536 8192 49152 32768 0 38 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
45 test_case shrink_32M_24M_v0_16384 resize_ffs 16384 2048 65536 49152 0 58 swap
[all...]
/freebsd-current/tools/test/stress2/misc/
H A Dfuse3.sh35 (cd ../testcases/swap; ./swap -t 10m -i 20 -h) &
38 while pgrep -q swap; do
H A Dsendfile7.sh40 ../testcases/swap/swap -t 2m -i 40 > /dev/null 2>&1
H A Dptrace4.sh54 pkill -9 swap syscall4
55 while pgrep -q swap; do
56 pkill -9 swap
H A Dmdconfig.sh36 mdconfig -at swap -S 65536 -s 20M -u $mdstart
H A Dswap6.sh36 min=10 # percent swap usage
37 (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
47 echo "FAIL Only $mx% swap used"
50 echo "$mx% swap used"
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
H A Dmulticast2.sh15 (cd ../testcases/swap; ./swap -t 2m -i 50 -v -h -l 100) &
25 while pkill swap; do :; done
H A Dsmrstress.sh47 (cd $here/../testcases/swap; ./swap -t 2m -i 20 -l 100) &
51 pkill swap
H A Dswap.sh29 # Swap test. Variation of testcases/swap.
30 # OOM seen: https://people.freebsd.org/~pho/stress/log/swap.txt
37 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 Ddevfs5.sh42 (cd ../testcases/swap; ./swap -t 30m -i 20 -h -l 100) &
60 while pkill swap; do :; done
H A Dtmpfs21.sh40 (cd ../testcases/swap; ./swap -t 10m -i 20) > /dev/null &
57 while pkill swap; do sleep .2; done
H A Dbadcode3.sh38 mdconfig -a -t swap -s 1g -u $mdstart
49 (cd $here/../testcases/swap; ./swap -t 5m -i 20) &
51 while pgrep -q swap; do
/freebsd-current/tools/test/stress2/testcases/swap/
H A DMakefile1 PROG= swap
/freebsd-current/contrib/file/src/
H A Delfclass.h32 swap = (u.c[sizeof(int32_t) - 1] + 1) != elfhdr.e_ident[EI_DATA];
34 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,
45 CAST(size_t, elf_getu16(swap, elfhdr.e_phentsize)),
52 phnum = elf_getu16(swap, elfhdr.e_phnum);
55 shnum = elf_getu16(swap, elfhdr.e_shnum);
58 if (dophn_exec(ms, clazz, swap, fd,
59 CAST(off_t, elf_getu(swap, elfhd
[all...]
H A Dreadelf.c76 getu16(int swap, uint16_t value) argument
83 if (swap) {
95 getu32(int swap, uint32_t value) argument
102 if (swap) {
116 getu64(int swap, uint64_t value) argument
123 if (swap) {
140 #define elf_getu16(swap, value) getu16(swap, value)
141 #define elf_getu32(swap, value) getu32(swap, valu
347 dophn_core(struct magic_set *ms, int clazz, int swap, int fd, off_t off, int num, size_t size, off_t fsize, int *flags, uint16_t *notecount) argument
423 do_note_netbsd_version(struct magic_set *ms, int swap, void *v) argument
472 do_note_freebsd_version(struct magic_set *ms, int swap, void *v) argument
594 do_os_note(struct magic_set *ms, unsigned char *nbuf, uint32_t type, int swap, uint32_t namesz, uint32_t descsz, size_t noff, size_t doff, int *flags) argument
693 do_pax_note(struct magic_set *ms, unsigned char *nbuf, uint32_t type, int swap, uint32_t namesz, uint32_t descsz, size_t noff, size_t doff, int *flags) argument
733 do_core_note(struct magic_set *ms, unsigned char *nbuf, uint32_t type, int swap, uint32_t namesz, uint32_t descsz, size_t noff, size_t doff, int *flags, size_t size, int clazz) argument
945 get_offset_from_virtaddr(struct magic_set *ms, int swap, int clazz, int fd, off_t off, int num, off_t fsize, uint64_t virtaddr) argument
979 get_string_on_virtaddr(struct magic_set *ms, int swap, int clazz, int fd, off_t ph_off, int ph_num, off_t fsize, uint64_t virtaddr, char *buf, ssize_t buflen) argument
1013 do_auxv_note(struct magic_set *ms, unsigned char *nbuf, uint32_t type, int swap, uint32_t namesz __attribute__((__unused__)), uint32_t descsz __attribute__((__unused__)), size_t noff __attribute__((__unused__)), size_t doff, int *flags, size_t size __attribute__((__unused__)), int clazz, int fd, off_t ph_off, int ph_num, off_t fsize) argument
1120 dodynamic(struct magic_set *ms, void *vbuf, size_t offset, size_t size, int clazz, int swap, int *pie, size_t *need) argument
1156 donote(struct magic_set *ms, void *vbuf, size_t offset, size_t size, int clazz, int swap, size_t align, int *flags, uint16_t *notecount, int fd, off_t ph_off, int ph_num, off_t fsize) argument
1349 doshn(struct magic_set *ms, int clazz, int swap, int fd, off_t off, int num, size_t size, off_t fsize, int mach, int strtab, int *flags, uint16_t *notecount) argument
1655 dophn_exec(struct magic_set *ms, int clazz, int swap, int fd, off_t off, int num, size_t size, off_t fsize, int sh_num, int *flags, uint16_t *notecount) argument
1824 int swap; local
[all...]
/freebsd-current/contrib/llvm-project/libcxx/include/__algorithm/
H A Diter_swap.h14 #include <__utility/swap.h>
24 // _NOEXCEPT_(_NOEXCEPT_(swap(*__a, *__b)))
25 _NOEXCEPT_(_NOEXCEPT_(swap(*std::declval<_ForwardIterator1>(), *std::declval<_ForwardIterator2>()))) {
26 swap(*__a, *__b);
/freebsd-current/contrib/llvm-project/llvm/lib/IR/
H A DUse.cpp14 void Use::swap(Use &RHS) { function in class:llvm::Use
18 std::swap(Val, RHS.Val);
19 std::swap(Next, RHS.Next);
20 std::swap(Prev, RHS.Prev);
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Dhazard_pointer.inc19 // 4.1.6, Hazard pointer swap
20 using std::swap;
/freebsd-current/sys/compat/linuxkpi/common/include/linux/
H A Dsort.h36 #define sort(base, num, size, cmp, swap) do { \
37 BUILD_BUG_ON_ZERO(swap); \
/freebsd-current/libexec/rc/rc.d/
H A Dswaplate12 desc="Setup late swap space"
16 load_rc_config swap
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/zvol/zvol_misc/
H A Dzvol_misc_005_neg.ksh38 # Verify a device cannot be dump and swap at the same time.
42 # 2. Set it as swap device.
56 swap -l | grep -qF $voldev && log_must swap -d $voldev
65 log_assert "Verify a device cannot be dump and swap at the same time."
71 # If device in swap list, it cannot be dump device
72 log_must swap -a $voldev
74 log_must swap -d $voldev
76 # If device has dedicated as dump device, it cannot add into swap list
78 log_mustnot swap
[all...]
/freebsd-current/contrib/googletest/googletest/src/
H A Dgtest-assertion-result.cc52 void AssertionResult::swap(AssertionResult& other) { function in class:testing::AssertionResult
53 using std::swap;
54 swap(success_, other.success_);
55 swap(message_, other.message_);
/freebsd-current/contrib/llvm-project/libcxx/include/__memory/
H A Dswap_allocator.h16 #include <__utility/swap.h>
32 using std::swap;
33 swap(__a1, __a2);

Completed in 387 milliseconds

1234567891011>>