/freebsd/contrib/googletest/googlemock/test/ |
H A D | gmock-matchers-arithmetic_test.cc | 54 Matcher<const Tuple2&> m = Eq(); in TEST() local 55 EXPECT_TRUE(m.Matches(Tuple2(5L, 5))); in TEST() 56 EXPECT_FALSE(m.Matches(Tuple2(5L, 6))); in TEST() 61 Matcher<const Tuple2&> m = Eq(); in TEST() local 62 EXPECT_EQ("are an equal pair", Describe(m)); in TEST() 68 Matcher<const Tuple2&> m = Ge(); in TEST() local 69 EXPECT_TRUE(m.Matches(Tuple2(5L, 4))); in TEST() 70 EXPECT_TRUE(m.Matches(Tuple2(5L, 5))); in TEST() 71 EXPECT_FALSE(m.Matches(Tuple2(5L, 6))); in TEST() 76 Matcher<const Tuple2&> m = Ge(); in TEST() local [all …]
|
/freebsd/share/misc/ |
H A D | pci_vendors | 131 1012 1012 PCMCIA 10/100 Ethernet Card [RTL81xx] 168 0731 910c JH910-M 173 0731 920c JH920-M 175 920c JH920-M 188 0731 930b JH930-M 190 930b JH930-M 288 ae32 Netelligent 10/100 TX PCI UTP 290 ae34 Netelligent 10 T PCI UTP 292 ae40 Netelligent Dual 10/100 TX PCI UTP 293 ae43 Netelligent Integrated 10/100 TX UTP [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/tests/unit/ |
H A D | interval_map_test.cpp | 20 IntervalMap<unsigned, unsigned, IntervalCoalescing::Enabled> M; in TEST() local 22 EXPECT_TRUE(M.empty()); in TEST() 23 EXPECT_TRUE(M.begin() == M.end()); in TEST() 24 EXPECT_TRUE(M.find(0) == M.end()); in TEST() 29 IntervalMap<unsigned, unsigned, IntervalCoalescing::Enabled> M; in TEST() local 31 M.insert(7, 8, 42); in TEST() 33 EXPECT_FALSE(M.empty()); in TEST() 34 EXPECT_EQ(std::next(M.begin()), M.end()); in TEST() 35 EXPECT_EQ(M.find(7), M.begin()); in TEST() 36 EXPECT_EQ(M.find(8), M.end()); in TEST() [all …]
|
/freebsd/share/man/man4/ |
H A D | xl.4 | 59 The Etherlink XL chips support built-in 10baseT, 10base2 and 10base5 63 NS 83840A 10/100 PHY for 10/100 Mbps support in full or half-duplex. 67 adapters such as the 3c905-TX and 3c905B-TX are capable of 10 or 87 .It 10baseT/UTP 88 Set 10Mbps operation. 105 .It 10base5/AUI 107 .It 10base2/BNC 132 3Com 3c900-TPO 134 3Com 3c900-COMBO 136 3Com 3c905-TX [all …]
|
/freebsd/contrib/sendmail/src/ |
H A D | milter.c | 77 # define SMFS_INMSG 'M' /* currently servicing a message */ 105 if (bitnset(SMF_TEMPFAIL, m->mf_flags)) \ 107 else if (bitnset(SMF_TEMPDROP, m->mf_flags)) \ 109 else if (bitnset(SMF_REJECT, m->mf_flags)) \ 195 ** Assumes 'm' is a milter structure for the current socket. 205 if (!SM_FD_OK_SELECT(m->mf_sock)) \ 209 (routine), m->mf_name, m->mf_sock, \ 214 m->mf_name, (routine), m->mf_sock, \ 216 milter_error(m, e); \ 223 SM_FD_SET(m->mf_sock, &fds); \ [all …]
|
/freebsd/sys/dev/wg/ |
H A D | wg_crypto.c | 52 static const uint8_t blake2s_sigma[10][16] = { 53 { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 }, 54 { 14, 10, 4, 8, 9, 15, 13, 6, 1, 12, 0, 2, 11, 7, 5, 3 }, 55 { 11, 8, 12, 0, 5, 2, 15, 13, 10, 14, 3, 6, 7, 1, 9, 4 }, 56 { 7, 9, 3, 1, 13, 12, 11, 14, 2, 6, 5, 10, 4, 0, 15, 8 }, 57 { 9, 0, 5, 7, 2, 4, 10, 15, 14, 1, 11, 12, 6, 8, 3, 13 }, 58 { 2, 12, 6, 10, 0, 11, 8, 3, 4, 13, 7, 5, 15, 14, 1, 9 }, 59 { 12, 5, 1, 15, 14, 13, 4, 10, 0, 7, 6, 3, 9, 2, 8, 11 }, 60 { 13, 11, 7, 14, 12, 1, 3, 9, 5, 0, 15, 4, 8, 6, 2, 10 }, 61 { 6, 15, 14, 9, 11, 3, 0, 8, 12, 2, 13, 7, 1, 4, 10, 5 }, [all …]
|
/freebsd/usr.bin/xinstall/tests/ |
H A D | install_test.sh | 431 local m=0755 cm=4444 434 atf_check chmod "$m" testf 437 atf_check_equal "$u:$g:10$m" "$(stat -f"%u:%g:%p" testc)" 440 atf_check_equal "$cu:$g:10$m" "$(stat -f"%u:%g:%p" testc)" 443 atf_check_equal "$u:$cg:10$m" "$(stat -f"%u:%g:%p" testc)" 446 atf_check_equal "$cu:$cg:10$m" "$(stat -f"%u:%g:%p" testc)" 448 atf_check install -m "$cm" testf testc 449 atf_check_equal "$u:$g:10$cm" "$(stat -f"%u:%g:%p" testc)" 451 atf_check install -o "$cu" -m "$cm" testf testc 452 atf_check_equal "$cu:$g:10$cm" "$(stat -f"%u:%g:%p" testc)" [all …]
|
/freebsd/lib/libcalendar/ |
H A D | calendar.c | 40 * But we do need a special table for the year 1582, since 10 days are 46 /* M A M J J A S O N D J */ 78 idt.m = 0; in jdate() 89 for (idt.m = 11; month1[idt.m] > r; idt.m--) in jdate() 93 idt.d = r - month1[idt.m]; in jdate() 122 return (idt->d + month1[idt->m] + idt->y * 365 + idt->y / 4); in ndaysji() 128 * is older than 1582-10-05. This is the reverse of the function ndaysg(). 143 idt.m = 0; in gdate() 153 * year 1582 is special, as 10 days are left out in October to in gdate() 164 for (idt.m = 11; montht[idt.m] > ndays; idt.m--) in gdate() [all …]
|
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_generichash/blake2b/ref/ |
H A D | blake2b-compress-avx2.h | 23 _mm256_setr_epi8(2, 3, 4, 5, 6, 7, 0, 1, 10, 11, 12, 13, 14, 15, 8, 9, 2, \ 24 3, 4, 5, 6, 7, 0, 1, 10, 11, 12, 13, 14, 15, 8, 9) 27 _mm256_setr_epi8(3, 4, 5, 6, 7, 0, 1, 2, 11, 12, 13, 14, 15, 8, 9, 10, 3, \ 28 4, 5, 6, 7, 0, 1, 2, 11, 12, 13, 14, 15, 8, 9, 10) 42 #define BLAKE2B_G1_V1(a, b, c, d, m) \ argument 44 a = ADD(a, m); \ 53 #define BLAKE2B_G2_V1(a, b, c, d, m) \ argument 55 a = ADD(a, m); \ 80 #define BLAKE2B_ROUND_V1(a, b, c, d, r, m) \ argument 95 #define BLAKE2B_ROUNDS_V1(a, b, c, d, m) \ argument [all …]
|
H A D | blake2b-compress-ref.c | 16 { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 }, 17 { 14, 10, 4, 8, 9, 15, 13, 6, 1, 12, 0, 2, 11, 7, 5, 3 }, 18 { 11, 8, 12, 0, 5, 2, 15, 13, 10, 14, 3, 6, 7, 1, 9, 4 }, 19 { 7, 9, 3, 1, 13, 12, 11, 14, 2, 6, 5, 10, 4, 0, 15, 8 }, 20 { 9, 0, 5, 7, 2, 4, 10, 15, 14, 1, 11, 12, 6, 8, 3, 13 }, 21 { 2, 12, 6, 10, 0, 11, 8, 3, 4, 13, 7, 5, 15, 14, 1, 9 }, 22 { 12, 5, 1, 15, 14, 13, 4, 10, 0, 7, 6, 3, 9, 2, 8, 11 }, 23 { 13, 11, 7, 14, 12, 1, 3, 9, 5, 0, 15, 4, 8, 6, 2, 10 }, 24 { 6, 15, 14, 9, 11, 3, 0, 8, 12, 2, 13, 7, 1, 4, 10, 5 }, 25 { 10, 2, 8, 4, 7, 6, 1, 5, 15, 11, 9, 14, 3, 12, 13, 0 }, [all …]
|
/freebsd/secure/lib/libcrypto/man/man3/ |
H A D | BN_mod_exp_mont.3 | 29 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch 30 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch 75 . ds #V .8m 76 . ds #F .3m 81 . ds #H ((1u-(\\\\n(.fu%2u))*.13m) 82 . ds #V .6m 97 . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" 98 . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' 99 . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' 100 . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' [all …]
|
H A D | BN_mod_mul_reciprocal.3 | 29 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch 30 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch 75 . ds #V .8m 76 . ds #F .3m 81 . ds #H ((1u-(\\\\n(.fu%2u))*.13m) 82 . ds #V .6m 97 . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" 98 . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' 99 . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' 100 . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' [all …]
|
H A D | BN_add.3 | 29 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch 30 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch 75 . ds #V .8m 76 . ds #F .3m 81 . ds #H ((1u-(\\\\n(.fu%2u))*.13m) 82 . ds #V .6m 97 . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" 98 . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' 99 . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' 100 . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' [all …]
|
H A D | RSA_sign.3 | 29 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch 30 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch 75 . ds #V .8m 76 . ds #F .3m 81 . ds #H ((1u-(\\\\n(.fu%2u))*.13m) 82 . ds #V .6m 97 . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" 98 . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' 99 . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' 100 . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' [all …]
|
H A D | EC_POINT_add.3 | 29 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch 30 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch 75 . ds #V .8m 76 . ds #F .3m 81 . ds #H ((1u-(\\\\n(.fu%2u))*.13m) 82 . ds #V .6m 97 . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" 98 . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' 99 . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' 100 . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' [all …]
|
/freebsd/contrib/one-true-awk/testdir/ |
H A D | T.func | 5 echo '10 2 6 2 10 7 10 10 8 10 1e1 18 { m=$1; n=i($2); assert(m>n) } 97 function ack(m,n) { 99 if (m == 0) return n+1 100 if (n == 0) return ack(m-1, 1) 101 return ack(m-1, ack(m, n-1)) 129 function add(m,n) { return m+n } [all …]
|
/freebsd/usr.bin/units/ |
H A D | definitions.units | 4 m !a! 55 M- mega 61 m- milli 89 c 2.99792458e+8 m/sec 90 g0 9.80665 m/sec2 93 AU 1.49597870691e+11 m fuzz 101 mmHg 0.001 m hg 184 meter m 201 british 1200|3937 m/ft 202 nmile 1852 m [all …]
|
/freebsd/sys/contrib/device-tree/include/dt-bindings/pinctrl/ |
H A D | pinctrl-sg2000.h | 21 #define PIN_VIVO_D3 PINPOS('A', 10) 33 #define PIN_VIVO_D5 PINPOS('B', 10) 47 #define PIN_VIVO_D6 PINPOS('C', 10) 56 #define PIN_VIVO_D4 PINPOS('D', 10) 63 #define PIN_VIVO_D0 PINPOS('E', 10) 92 #define PIN_SD0_D3 PINPOS('M', 1) 93 #define PIN_SD0_D2 PINPOS('M', 2) 94 #define PIN_UART0_RX PINPOS('M', 4) 95 #define PIN_UART0_TX PINPOS('M', 5) 96 #define PIN_JTAG_CPU_TRST PINPOS('M', 6) [all …]
|
H A D | pinctrl-cv1812h.h | 21 #define PIN_VIVO_D3 PINPOS('A', 10) 33 #define PIN_VIVO_D5 PINPOS('B', 10) 47 #define PIN_VIVO_D6 PINPOS('C', 10) 56 #define PIN_VIVO_D4 PINPOS('D', 10) 63 #define PIN_VIVO_D0 PINPOS('E', 10) 92 #define PIN_SD0_D3 PINPOS('M', 1) 93 #define PIN_SD0_D2 PINPOS('M', 2) 94 #define PIN_UART0_RX PINPOS('M', 4) 95 #define PIN_UART0_TX PINPOS('M', 5) 96 #define PIN_JTAG_CPU_TRST PINPOS('M', 6) [all …]
|
/freebsd/contrib/wpa/src/common/ |
H A D | sae_pk.c | 27 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 29 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 31 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 1, 33 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 1, 2, 35 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 1, 2, 3, 37 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 1, 2, 3, 4, 39 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 1, 2, 3, 4, 5, 41 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 1, 2, 3, 4, 5, 6, 43 8, 9, 10, 11, 12, 13, 14, 15, 0, 1, 2, 3, 4, 5, 6, 7, 45 9, 10, 11, 12, 13, 14, 15, 0, 1, 2, 3, 4, 5, 6, 7, 8, [all …]
|
/freebsd/secure/usr.bin/openssl/man/ |
H A D | openssl-version.1 | 29 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch 30 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch 75 . ds #V .8m 76 . ds #F .3m 81 . ds #H ((1u-(\\\\n(.fu%2u))*.13m) 82 . ds #V .6m 97 . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" 98 . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' 99 . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' 100 . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' [all …]
|
/freebsd/sys/arm/nvidia/tegra124/ |
H A D | tegra124_clk_pll.c | 94 /* Bits definition of M, N and P fields. */ 157 {10, 7}, 160 {12, 10}, 188 {10, 7}, 191 {12, 10}, 296 .mnp_bits = {5, 10, 3, 20}, 306 .mnp_bits = {5, 10, 3, 20}, 317 .mnp_bits = {5, 10, 1, 20}, 489 get_divisors(struct pll_sc *sc, uint32_t *m, uint32_t *n, uint32_t *p) in get_divisors() argument 496 *m = get_masked(val, PLL_BASE_DIVM_SHIFT, mnp_bits->m_width); in get_divisors() [all …]
|
/freebsd/sys/arm64/nvidia/tegra210/ |
H A D | tegra210_clk_pll.c | 119 /* Bits definition of M, N and P fields. */ 257 {10, 8}, 259 {15, 10}, 315 .mnp_bits = {8, 8, 5, 0, 10, 20}, 326 .mnp_bits = {8, 8, 5, 0, 10, 20}, 337 .mnp_bits = {8, 8, 5, 0, 10, 20}, 366 .mnp_bits = {8, 8, 5, 0, 10, 20}, 529 { 7, 10 }, 532 {10, 12 }, 682 get_divisors(struct pll_sc *sc, uint32_t *m, uint32_t *n, uint32_t *p) in get_divisors() argument [all …]
|
/freebsd/usr.bin/ncal/ |
H A D | ncal.c | 77 {"AT", "Austria", {1583, 10, 5}}, 87 {"ES", "Spain", {1582, 10, 4}}, 92 {"HU", "Hungary", {1587, 10, 21}}, 94 {"IT", "Italy", {1582, 10, 4}}, 101 {"PL", "Poland", {1582, 10, 4}}, 102 {"PT", "Portugal", {1582, 10, 4}}, 117 static char daystr[] = " 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15" 124 " 10 11 12 13 14 15 16 17 18 19" 170 static int firstday(int y, int m); 177 static void monthranger(int year, int m, int jd_flag, [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Support/BLAKE3/ |
H A D | blake3_avx2.c | 24 x, _mm256_set_epi8(13, 12, 15, 14, 9, 8, 11, 10, 5, 4, 7, 6, 1, 0, 3, 2, in rot16() 25 13, 12, 15, 14, 9, 8, 11, 10, 5, 4, 7, 6, 1, 0, 3, 2)); in rot16() 34 x, _mm256_set_epi8(12, 15, 14, 13, 8, 11, 10, 9, 4, 7, 6, 5, 0, 3, 2, 1, in rot8() 35 12, 15, 14, 13, 8, 11, 10, 9, 4, 7, 6, 5, 0, 3, 2, 1)); in rot8() 42 INLINE void round_fn(__m256i v[16], __m256i m[16], size_t r) { in round_fn() 43 v[0] = addv(v[0], m[(size_t)MSG_SCHEDULE[r][0]]); in round_fn() 44 v[1] = addv(v[1], m[(size_t)MSG_SCHEDULE[r][2]]); in round_fn() 45 v[2] = addv(v[2], m[(size_t)MSG_SCHEDULE[r][4]]); in round_fn() 46 v[3] = addv(v[3], m[(size_t)MSG_SCHEDULE[r][6]]); in round_fn() 61 v[10] = addv(v[10], v[14]); in round_fn() [all …]
|