/freebsd/lib/msun/tests/ |
H A D | fmaxmin_test.c | 58 testall_r(long double big, long double small, int rmode) in testall_r() argument 60 long double expected_max = isnan(big) ? small : big; in testall_r() 61 long double expected_min = isnan(small) ? big : small; in testall_r() 62 TEST(fmaxf, float, big, small, expected_max, rmode); in testall_r() 63 TEST(fmaxf, float, small, big, expected_max, rmode); in testall_r() 64 TEST(fmax, double, big, small, expected_max, rmode); in testall_r() 65 TEST(fmax, double, small, big, expected_max, rmode); in testall_r() 66 TEST(fmaxl, long double, big, small, expected_max, rmode); in testall_r() 67 TEST(fmaxl, long double, small, big, expected_max, rmode); in testall_r() 68 TEST(fminf, float, big, small, expected_min, rmode); in testall_r() [all …]
|
/freebsd/contrib/googletest/googletest/test/ |
H A D | BUILD.bazel | 42 size = "small", 115 size = "small", 123 size = "small", 130 size = "small", 141 size = "small", 152 size = "small", 176 size = "small", 195 size = "small", 217 size = "small", 292 size = "small", [all …]
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/rsend/ |
H A D | send-cpL_varied_recsize.ksh | 166 typeset small=$((128 * 1024)) 173 for recsize in $small $large; do 183 check $opts $small log_must 186 check $opts $small log_mustnot 196 check -p $large log_must $small $large 197 check -L $large log_must $large $small 198 check -cp $large log_must $small $large 199 check -cL $large log_must $large $small
|
/freebsd/crypto/openssl/test/ssl-tests/ |
H A D | 13-fragmentation.cnf | 8 test-3 = 3-small-app-data 9 test-4 = 4-small-app-data-large-fragment-size 19 test-14 = 14-small-app-data-aes-sha1-multibuffer 20 test-15 = 15-small-app-data-aes-sha2-multibuffer 98 [3-small-app-data] 99 ssl_conf = 3-small-app-data-ssl 101 [3-small-app-data-ssl] 102 server = 3-small-app-data-server 103 client = 3-small-app-data-client 105 [3-small-app-data-server] [all …]
|
H A D | 13-fragmentation.cnf.in | 45 name => "small-app-data", 53 name => "small-app-data-large-fragment-size", 160 # Test that multibuffer-capable code also handles small data correctly. 164 name => "small-app-data-aes-sha1-multibuffer", 176 name => "small-app-data-aes-sha2-multibuffer",
|
/freebsd/usr.bin/stat/ |
H A D | stat.c | 624 int l, small, formats; in format1() local 628 small = 0; in format1() 637 small = (sizeof(st->st_dev) == 4); in format1() 662 small = (sizeof(st->st_ino) == 4); in format1() 670 small = (sizeof(st->st_mode) == 4); in format1() 702 small = (sizeof(st->st_dev) == 4); in format1() 710 small = (sizeof(st->st_uid) == 4); in format1() 723 small = (sizeof(st->st_gid) == 4); in format1() 752 small = (sizeof(ts.tv_sec) == 4); in format1() 768 small = (sizeof(st->st_size) == 4); in format1() [all …]
|
/freebsd/crypto/openssl/crypto/ec/ |
H A D | ecp_nistp256.c | 258 static void smallfelem_neg(felem out, const smallfelem small) in smallfelem_neg() argument 261 out[0] = zero105[0] - small[0]; in smallfelem_neg() 262 out[1] = zero105[1] - small[1]; in smallfelem_neg() 263 out[2] = zero105[2] - small[2]; in smallfelem_neg() 264 out[3] = zero105[3] - small[3]; in smallfelem_neg() 485 static void smallfelem_square(longfelem out, const smallfelem small) in smallfelem_square() argument 490 a = ((uint128_t) small[0]) * small[0]; in smallfelem_square() 496 a = ((uint128_t) small[0]) * small[1]; in smallfelem_square() 503 a = ((uint128_t) small[0]) * small[2]; in smallfelem_square() 510 a = ((uint128_t) small[0]) * small[3]; in smallfelem_square() [all …]
|
/freebsd/contrib/bzip2/ |
H A D | bzlib.h | 80 # ifdef small 82 # undef small 119 int small 143 int small, 219 int small,
|
/freebsd/contrib/llvm-project/lld/docs/ELF/ |
H A D | large_sections.rst | 24 For example, x86-64's medium code model splits global variables into small and 29 Large globals are placed in separate sections from small globals, and those 32 do not affect affect the distance of small globals to text. The large versions 39 large sections next to the small sections with the same RWX permissions when 48 non-PIC code, large sections should be placed after all small sections to avoid 49 ``.lrodata`` pushing small symbols out of the lower 2GB of the address space.
|
/freebsd/contrib/bc/scripts/ |
H A D | sqrt_random.bc | 43 # See below. This is to help bias toward small numbers. 46 # I want to bias toward small numbers, so let's give a 50 percent chance to 48 bits = divmod(bits, 2, small[]) 51 while (!small[0]) 54 bits = divmod(bits, 2, small[])
|
/freebsd/etc/termcap/ |
H A D | Makefile | 4 CLEANFILES+= termcap.small 5 CONFS= termcap.small 20 termcap.small: termcap
|
/freebsd/lib/libc/i386/string/ |
H A D | wmemchr.S | 47 jz small 68 jmp small 91 small: movl %ebx,%ecx label
|
/freebsd/release/tools/ |
H A D | oci-image-static.conf | 23 cp ../etc/termcap/termcap.small $m/etc/termcap.small || return $? 24 cp ../etc/termcap/termcap.small $m/usr/share/misc/termcap || return $?
|
/freebsd/crypto/openssh/ |
H A D | sntrup761.c | 1699 typedef int8_t small; typedef 1703 typedef small Inputs[p]; 1707 static small F3_freeze(int16_t x) { return x - 3 * ((10923 * x + 16384) >> 15); } in F3_freeze() 1718 static int Weightw_mask(small *r) { in Weightw_mask() 1825 static void R3_fromRq(small *out, const Fq *r) { in R3_fromRq() 1830 static void R3_mult(small *h, const small *f, const small *g) { in R3_mult() 1841 static int R3_recip(small *out, const small *in) { in R3_recip() 1842 small f[p + 1], g[p + 1], v[p + 1], r[p + 1]; in R3_recip() 1877 static void Rq_mult_small(Fq *h, const Fq *f, const small *g) { in Rq_mult_small() 1903 static int Rq_recip3(Fq *out, const small *in) { in Rq_recip3() [all …]
|
/freebsd/contrib/netbsd-tests/lib/libc/sys/ |
H A D | t_getlogin.c | 51 char small[0]; in ATF_TC_BODY() local 53 ATF_REQUIRE(getlogin_r(small, sizeof(small)) == ERANGE); in ATF_TC_BODY()
|
/freebsd/rescue/ |
H A D | README | 11 As an added bonus, /rescue is fairly small (thanks to crunchgen) and 21 3) Produce a toolkit suitable for small distributions. 24 /sbin to /rescue to produce a small and fairly complete FreeBSD
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/crypto/ |
H A D | aes_gcm_test.txt | 753 comment: small IV sizes 764 comment: small IV sizes 3041 comment: small IV sizes 3052 comment: small IV sizes 3063 comment: small IV sizes 3074 comment: small IV sizes 3085 comment: small IV sizes 3096 comment: small IV sizes 3107 comment: small IV sizes 3118 comment: small IV sizes [all …]
|
/freebsd/contrib/one-true-awk/testdir/ |
H A D | README.TESTS | 8 - About 160 small tests called t.* that constitute a random 12 - About 60 small tests called p.* that come from the first 32 tests in a small language, then generate awk programs that
|
/freebsd/contrib/googletest/googlemock/test/ |
H A D | BUILD.bazel | 40 size = "small", 83 size = "small", 115 size = "small",
|
/freebsd/share/i18n/csmapper/APPLE/ |
H A D | GAELIC%UCS.src | 96 # capital and small y with acute, grave, and circumflex; capital and 97 # small w with acute, grave, circumflex and diaeresis; capital and 98 # small b, c, d, f, g, m, p, s, t with dot above; tironian et; small 99 # long r, small long s, and small long s with dot above. It has 36
|
H A D | UCS%GAELIC.src | 96 # capital and small y with acute, grave, and circumflex; capital and 97 # small w with acute, grave, circumflex and diaeresis; capital and 98 # small b, c, d, f, g, m, p, s, t with dot above; tironian et; small 99 # long r, small long s, and small long s with dot above. It has 36
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
H A D | HTMLLogger.css | 52 font-size: x-small; 138 font-size: x-small; 158 font-size: xx-small;
|
/freebsd/crypto/heimdal/doc/doxyout/gssapi/html/ |
H A D | tabs.css | 35 font-size : x-small; 69 font-size : x-small;
|
/freebsd/crypto/heimdal/doc/doxyout/hcrypto/html/ |
H A D | tabs.css | 35 font-size : x-small; 69 font-size : x-small;
|
/freebsd/crypto/heimdal/doc/doxyout/hdb/html/ |
H A D | tabs.css | 35 font-size : x-small; 69 font-size : x-small;
|