| /freebsd/crypto/openssl/test/ssl-tests/ |
| H A D | 13-fragmentation.cnf | 5 test-0 = 0-one-fragment-minus-app-data 6 test-1 = 1-one-fragment-app-data 7 test-2 = 2-one-fragment-plus-app-data 8 test-3 = 3-small-app-data 9 test-4 = 4-small-app-data-large-fragment-size 10 test-5 = 5-medium-app-data 11 test-6 = 6-medium-plus-app-data 12 test-7 = 7-large-app-data 13 test-8 = 8-large-app-data-large-fragment-size 14 test-9 = 9-large-app-data-odd-fragment-size [all …]
|
| H A D | 13-fragmentation.cnf.in | 1 # -*- mode: perl; -*- 2 # Copyright 2016-2025 The OpenSSL Project Authors. All Rights Reserved. 10 ## Test packet fragmentation 22 name => "one-fragment-minus-app-data", 25 test => { 30 name => "one-fragment-app-data", 33 test => { 38 name => "one-fragment-plus-app-data", 41 test => { 46 name => "small-app-data", [all …]
|
| /freebsd/crypto/openssl/doc/designs/quic-design/ |
| H A D | quic-fault-injector.md | 10 The QUIC Fault Injector is a component within the OpenSSL test framework that 14 Typically an individual test will inject one particular misbehaviour (i.e. a 17 also offer the flexibility for a test to modify those normal protocol elements 18 as required for the specific test circumstances. The OpenSSL QUIC implementation 22 The QUIC Fault Injector will be external to libssl (it will be in the test 29 ----------------------- 34 handshake data (i.e. the contents of CRYPTO frames). However such faults may 38 "Finished" message exchange - so any modifications would be rejected and the 41 An example test might be to confirm that an OpenSSL QUIC client behaves 45 modified by a "man-in-the-middle". [all …]
|
| /freebsd/contrib/bzip2/ |
| H A D | README.COMPILATION.PROBLEMS | 1 ------------------------------------------------------------------ 3 lossless, block-sorting data compression. 6 Copyright (C) 1996-2019 Julian Seward <jseward@acm.org> 13 ------------------------------------------------------------------ 17 myself for x86-linux and amd64-linux. With makefile.msc, Visual C++ 18 6.0 and nmake, you can build a native Win32 version too. Large file 19 support seems to work correctly on at least on amd64-linux. 21 When I say "large file" I mean a file of size 2,147,483,648 (2^31) 23 but many newer ones can. Large files are pretty huge -- most files 24 you'll encounter are not Large Files. [all …]
|
| H A D | CHANGES | 1 ------------------------------------------------------------------ 3 lossless, block-sorting data compression. 6 Copyright (C) 1996-2019 Julian Seward <jseward@acm.org> 13 ------------------------------------------------------------------ 23 Removed 'ranlib' from Makefile, since most modern Unix-es 33 reporting the problem correctly. This shouldn't give any data loss 36 Made the inline declarations disappear for non-GCC compilers. 44 bzip2.c, so the non-fixedness of them in previous versions has no 48 * made zero-length BZ_FLUSH work correctly in bzCompress(). 49 * fixed bzWrite/bzRead to ignore zero-length requests. [all …]
|
| H A D | bzip2.1 | 3 bzip2, bunzip2 \- a block-sorting file compressor, v1.0.8 5 bzcat \- decompresses files to stdout 7 bzip2recover \- recovers data from damaged bzip2 files 12 .RB [ " \-cdfkqstvzVL123456789 " ] 19 .RB [ " \-fkvsVL " ] 25 .RB [ " \-s " ] 35 compresses files using the Burrows-Wheeler block sorting 38 LZ77/LZ78-based compressors, and approaches the performance of the PPM 41 The command-line options are deliberately very similar to 48 command-line flags. Each file is replaced by a compressed version of [all …]
|
| /freebsd/contrib/libarchive/libarchive/test/ |
| H A D | test_write_format_7zip_large.c | 1 /*- 20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 27 #include "test.h" 70 * Write a large file to it. in test_large() 85 /* NOTE: PPMd cannot handle random data correctly.*/ in test_large() 100 * Now, read the data back. in test_large() 102 /* With the test memory reader -- seeking mode. */ in test_large() 109 * Read and verify a large file. in test_large() 139 /* Test that making a 7-Zip archive file with bzip2 compression. */ in DEFINE_TEST() 145 /* Test that making a 7-Zip archive file without compression. */ in DEFINE_TEST() [all …]
|
| /freebsd/contrib/jemalloc/ |
| H A D | ChangeLog | 10 optimizations on common paths to rework of internal data structures and 13 workloads. The release has gone through large-scale production testing. 16 - Add the thread.idle mallctl which hints that the calling thread will be 18 - Allow small size classes to be the maximum size class to cache in the 19 thread-specific cache, through the opt.[lg_]tcache_max option. (@interwq, 21 - Make the behavior of realloc(ptr, 0) configurable with opt.zero_realloc. 23 - Add 'make uninstall' support. (@sangshuduo, @Lapenkov) 24 - Support C++17 over-aligne [all...] |
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/no_space/ |
| H A D | enospc_ganging.ksh | 2 # SPDX-License-Identifier: CDDL-1.0 19 # Exercise gang block IO paths for non-encrypted and encrypted datasets. 44 log_must dd if=/dev/urandom of=$TESTDIR/data bs=$bs count=$count 45 data_checksum=$(xxh128digest $TESTDIR/data) 47 # Test common large block configuration. 48 log_must zfs create -o recordsize=1m -o primarycache=metadata $TESTPOOL/gang 51 log_must dd if=$TESTDIR/data of=$mntpnt/file bs=$bs count=$count 60 log_must rm -f $TESTDIR/out 63 # Test common large block configuration with encryption. 65 -o recordsize=1m \ [all …]
|
| /freebsd/lib/libc/tests/net/ |
| H A D | link_addr_test.cc | 4 * SPDX-License-Identifier: ISC 38 #include <atf-c++.hpp> 88 * Return the data stored in a sockaddr_dl as a span. 91 data(const sockaddr_dl &sdl) in data() function 94 // data area. in data() 95 auto dlen = sdl.sdl_len - offsetof(sockaddr_dl, sdl_data); in data() 105 auto name = data(sdl).subspan(0, sdl.sdl_nlen); in ifname() 117 std::ranges::copy(data(sdl).subspan(sdl.sdl_nlen, ETHER_ADDR_LEN), in addr() 128 auto data = reinterpret_cast<const uint8_t *>(LLADDR(&sdl)); in lladdr() local 129 return {data, data + sdl.sdl_alen}; in lladdr() [all …]
|
| /freebsd/share/doc/papers/sysperf/ |
| H A D | 3.t | 22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 32 When 4.2BSD was first installed on several large timesharing systems 51 on one machine, a VAX-11/780 with eight megabytes of memory.\** 58 person-to-person telephone messages to per-organization distribution 83 pseudo-terminal handler in addition to the local hardware terminal 96 it certainly represents a realistic test. 97 This test was run on several occasions over a three month period. 99 between the test runs the shape of the profiles, 113 Micro-operation benchmarks 117 programs was constructed and run on a VAX-11/750 with 4.5 megabytes [all …]
|
| /freebsd/share/doc/papers/newvm/ |
| H A D | 1.t | 22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 59 a new page is allocated and filled either with initialized data or 85 Equally important in the large central timesharing environment 112 micro-processor has become powerful enough to allow users to have their 119 The workstations tend to have a large quantity of memory, 154 rather than to a locally-attached disk. 158 the file server that the data was up to date. 165 of the blocks on any locally-attached swap space analogously 167 Thus inactive swap blocks can also be used to cache less-recently-used 168 file data. [all …]
|
| /freebsd/sys/contrib/zstd/ |
| H A D | CHANGELOG | 2 perf: Regain Minimal memset()-ing During Reuse of Compression Contexts (@Cyan4973, #2969) 12 perf: faster mid-level compression speed in presence of highly repetitive patterns, by @senhuang42 13 perf: minor compression ratio improvements for small data at high levels, by @cyan4973 15 perf: faster compression speed on incompressible data, by @bindhvo 16 perf: on-demand reduced ZSTD_DCtx state size, using build macro ZSTD_DECODER_INTERNAL_BUFFER, at a … 20 build: improved meson unofficial build, by @eli-schwartz 22 …t advanced parameters information when compressing in very verbose mode (``-vv`), by @Svetlitski-FB 25 api: Various functions promoted from experimental to stable API: (#2579-2581, @senhuang42) 39 api: ZSTDMT_NBWORKERS_MAX reduced to 64 for 32-bit environments (@Cyan4973) 42 perf: Decompression loop refactor, speed improvements on `clang` and for `--long` modes (#2614 #263… [all …]
|
| H A D | TESTING.md | 8 ----------- 11 - Compilation on all supported targets (x86, x86_64, ARM, AArch64, PowerPC, and PowerPC64) 12 - Compilation on various versions of gcc, clang, and g++ 13 - `tests/playTests.sh` on x86_64, without the tests on long data (CLI tests) 14 - Small tests (`tests/legacy.c`, `tests/longmatch.c`) on x64_64 17 ------------ 20 - The following tests run with UBsan and Asan on x86_64 and x86, as well as with 22 - `tests/playTests.sh --test-large-data` 23 - Fuzzer tests: `tests/fuzzer.c`, `tests/zstreamtest.c`, and `tests/decodecorpus.c` 24 - `tests/zstreamtest.c` under Tsan (streaming mode, including multithreaded mode) [all …]
|
| /freebsd/sys/dev/qat/qat_api/include/lac/ |
| H A D | cpa_cy_prime.h | 1 /* SPDX-License-Identifier: BSD-3-Clause */ 2 /* Copyright(c) 2007-2025 Intel Corporation */ 13 * @defgroup cpaCyPrime Prime Number Test API 18 * These functions specify the API for the prime number test operations. 24 * Large numbers are represented on the QuickAssist API as described 25 * in the Large Number API (@ref cpaCyLn). 27 * In addition, the bit length of large numbers passed to the API 43 * Prime Test Operation Data. 45 * This structure contains the operation data for the cpaCyPrimeTest 55 * All numbers MUST be stored in big-endian order. [all …]
|
| /freebsd/contrib/one-true-awk/testdir/ |
| H A D | README.TESTS | 1 The archive of test files contains 3 - A shell file called REGRESS that controls the testing process. 5 - Several shell files called Compare* that control sub-parts 8 - About 160 small tests called t.* that constitute a random 12 - About 60 small tests called p.* that come from the first 14 basic stuff -- they have to work. 18 There are a couple of standard data files used with them, 19 test.data and test.countries, but others would work too. 21 - About 20 files called T.* that are self-contained and 23 For example, T.clv tests command-line variable handling. [all …]
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/rsend/ |
| H A D | send-cpL_varied_recsize.ksh | 1 #!/bin/ksh -p 2 # SPDX-License-Identifier: CDDL-1.0 27 # of all combinations of -c -p and -L. Verify the stream is compressed, 31 # +---------+--------+------------+------------+-----------+-----------+ 35 # +---------+--------+------------+------------+-----------+-----------+ 37 # | 128k | -c | Fails | Fails | 128k | 128k | 38 # | 128k | -p | 128k | 128k | 128k | 128k | 39 # | 128k | -L | 128k | 128k | 128k | 128k | 40 # | 128k | -cp | Fails | Fails | 128k | 128k | 41 # | 128k | -cL | Fails | Fails | 128k | 128k | [all …]
|
| /freebsd/sys/contrib/zlib/ |
| H A D | ChangeLog | 5 - Reject overflows of zip header fields in minizip 6 - Fix bug in inflateSync() for data held in bit buffer 7 - Add LIT_MEM define to use more memory for a small deflate speedup 8 - Fix decision on the emission of Zip64 end records in minizip 9 - Add bounds checking to ERR_MSG() macro, used by zError() 10 - Neutralize zip file traversal attacks in miniunz 11 - Fix a bug in ZLIB_DEBUG compiles in check_match() 12 - Various portability and appearance improvements 15 - Remove K&R function definitions and zlib2ansi 16 - Fix bug in deflateBound() for level 0 and memLevel 9 [all …]
|
| /freebsd/share/doc/smm/05.fastfs/ |
| H A D | 4.t | 22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 38 When running the ``list directory'' command on a large directory 42 The improvements are even more dramatic for large directories 53 The test programs measure the rate at which user programs can transfer 54 data to or from a file without performing any processing on it. 55 These programs must read and write enough data to 65 \(dg A UNIX command that is similar to the reading test that we used is 68 The systems were running multi-user but were otherwise quiescent. 73 As Table 2 shows, all file system test runs were on a VAX 11/750. 95 Table 2a \- Reading rates of the old and new UNIX file systems. [all …]
|
| /freebsd/share/doc/papers/diskperf/ |
| H A D | equip.ms | 22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 43 their controller, but we did not have time to test this device. 55 An important aspect of DSA is migrating a large part 72 data transfers from multiple drives. 76 the effects of a slow UNIBUS such as the one on the VAX-11/780. 94 Although a large number of disk drives use this interface, we tested 97 The controller ws first implemented for the VAX-11/750 as the SC750 107 It has also been upgraded to operate with higher data rate drives such 108 as the Fujitsu 2351As we used in this test. 109 The controller is contained in its own rack-mounted drawer with an integral [all …]
|
| /freebsd/tests/sys/kern/acct/ |
| H A D | acct_test.c | 1 /*- 19 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 40 #include <atf-c.h> 60 eps = fabs(expected - v.f) / expected; in check_result() 72 * Test case for encoding {0 sec, 0 usec} within a reasonable epsilon. 84 ATF_CHECK(fabs(v.f - 0.0) < FLT_EPSILON); in ATF_TC_BODY() 88 * Test case for encoding a random long number. 103 * Test case for encoding a small number of seconds {1 sec, 0 usec}. 120 * Test case for encoding a small number of usec {0 sec, 1 usec}. 137 * Test case for encoding a large number of usec {1 sec, 999.999 usec}. [all …]
|
| /freebsd/sbin/ipf/ipsend/ |
| H A D | iptest.1 | 4 iptest \- automatically generate a packets to test IP functionality 8 .B \-1234567 10 .B \-d 13 .B \-g 16 .B \-m 19 .B \-p 22 .B \-s 29 .B \-1 30 Run IP test group #1. This group of tests generates packets with the IP 38 .B \-2 [all …]
|
| /freebsd/contrib/libarchive/ |
| H A D | NEWS | 55 Jan 20, 2020: New tar option: --safe-writes (atomical file extraction) 69 Apr 16, 2019: Support for non-recursive list and extract 71 Apr 14, 2019: New tar option: --exclude-vcs 83 Jul 19, 2018: Avoid super-linear slowdown on malformed mtree files 108 Nov, 2016: libarchive is now being tested by the OSS-Fuzz project 121 Another test release in preparation for 3.2.0 124 This is a test release in preparation for 3.2.0 141 Apr 6, 2014: Add bsdcat command-line tool 174 Sep 27, 2012: Implement function used to seek within data blocks. 202 Nov 06, 2011: Update shared-library version calculations for libarchive 3.x [all …]
|
| /freebsd/lib/libc/db/test/ |
| H A D | README | 8 To run the tests, enter "sh run.test". If your system dictionary isn't 9 in /usr/share/dict/words, edit run.test to reflect the correct place. 11 Fairly large files (the command files) are built in this directory during 12 the test runs, and even larger files (the database files) are created in 16 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= 19 or data entry for a previous command. 24 + must be followed by [kK][dD]; the data value in the database 26 data value. 29 last character is not a carriage-return, a newline is appended. 34 + writes out the retrieved data DBT. [all …]
|
| /freebsd/crypto/krb5/src/plugins/kdb/db2/libdb2/test/ |
| H A D | README | 9 To run the tests, enter "sh run.test". If your system dictionary isn't 10 in /usr/share/dict/words, edit run.test to reflect the correct place. 12 Fairly large files (the command files) are built in this directory during 13 the test runs, and even larger files (the database files) are created in 17 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= 20 or data entry for a previous command. 25 + must be followed by [kK][dD]; the data value in the database 27 data value. 30 last character is not a carriage-return, a newline is appended. 35 + writes out the retrieved data DBT. [all …]
|