| /src/sys/dev/rndtest/ |
| H A D | rndtest.c | 181 int i, ones = 0, j; in rndtest_monobit() local 188 ones++; in rndtest_monobit() 190 if (ones > RNDTEST_MONOBIT_MINONES && in rndtest_monobit() 191 ones < RNDTEST_MONOBIT_MAXONES) { in rndtest_monobit() 194 RNDTEST_MONOBIT_MINONES, ones, in rndtest_monobit() 200 "monobit failed (%d ones)", ones); in rndtest_monobit() 222 int i, j, ones, zeros, rv = 0; in rndtest_runs() local 228 ones = zeros = 0; in rndtest_runs() 233 ones++; in rndtest_runs() 238 rndtest_runs_record(rsp, ones, onei); in rndtest_runs() [all …]
|
| /src/tools/regression/nfsmmap/test2/ |
| H A D | test2.c | 11 char ones[200]; in main() local 14 memset(ones, 1, sizeof ones); in main() 31 if (write(fd, ones, sizeof ones) < 0) in main()
|
| /src/tools/regression/nfsmmap/test1/ |
| H A D | test1.c | 11 char ones[200]; in main() local 14 memset(ones, 1, sizeof ones); in main() 31 if (write(fd, ones, sizeof ones) < 0) in main()
|
| /src/sbin/ipf/libipf/ |
| H A D | printmask.c | 17 int ones; in printmask() local 21 } else if ((ones = count4bits(*mask)) == -1) { in printmask() 25 PRINTF("/%d", ones); in printmask()
|
| /src/stand/libsa/ |
| H A D | smbios.c | 259 int byteorder, i, ones, zeros; in smbios_setuuid() local 264 for (i = 0, ones = 0, zeros = 0; i < UUID_SIZE; i += UUID_STEP) { in smbios_setuuid() 267 ones++; in smbios_setuuid() 268 else if (ones == 0 && n == 1) in smbios_setuuid() 274 if (ones != UUID_ALL_BITS && zeros != UUID_ALL_BITS) { in smbios_setuuid()
|
| /src/sys/contrib/device-tree/Bindings/usb/ |
| H A D | mediatek,mtk-xhci.txt | 16 "mediatek,mtk-xhci" compatible string, you need SoC specific ones in 30 the following ones are optional: 91 "mediatek,mtk-xhci" compatible string, you need SoC specific ones in 103 - clock-names : must contain "sys_ck", and the following ones are optional:
|
| /src/lib/libc/amd64/string/ |
| H A D | memcmp.S | 299 shl %cl, %rdx # ones where the buffer is not 305 or %ecx, %eax # ones where the buffers match 307 not %eax # ones where there is a mismatch 377 or %ecx, %eax # ones where the buffers match 378 not %eax # ones where there is a mismatch
|
| /src/contrib/llvm-project/compiler-rt/lib/xray/ |
| H A D | xray_trampoline_powerpc64_asm.S | 10 # floating point, and vector parameters, so that we only spill those live ones. 151 # floating point, and vector parameters, so that we only spill those live ones.
|
| /src/share/examples/ipfilter/rules/ |
| H A D | example.8 | 2 # block all incoming TCP connections but send back a TCP-RST for ones to
|
| /src/sys/netinet/ |
| H A D | tcp_lro.c | 1139 uint64_t ones; in tcp_lro_sort() local 1157 ones = 0; in tcp_lro_sort() 1160 ones |= parray[x].seq; in tcp_lro_sort() 1165 ones &= zeros; in tcp_lro_sort() 1166 if (ones == 0) in tcp_lro_sort() 1170 ones = tcp_lro_msb_64(ones); in tcp_lro_sort() 1178 if (parray[y].seq & ones) in tcp_lro_sort()
|
| /src/crypto/openssl/crypto/hmac/ |
| H A D | build.info | 12 # appropriate ones, and define the appropriate macros
|
| /src/sys/contrib/openzfs/contrib/icp/gcm-simd/boringssl/ |
| H A D | README | 6 The main purpose to include these files (and the original ones) here, is to
|
| /src/contrib/jemalloc/doc_internal/ |
| H A D | PROFILING_INTERNALS.md | 16 …ones, but shorter lived and less common as a fraction of program memory. "Small" and "large" are n… 36 …- Sample even-indexed allocations more frequently than odd-indexed ones (so long as no allocation … 105 …ineering decision we're only interested in fairly simple approaches (i.e. ones for which the chanc… 120 …adapts. Do our actual choices for $p_Z$ closely correspond to the optimal ones? How close is the v…
|
| /src/crypto/openssl/crypto/sm3/ |
| H A D | build.info | 12 # appropriate ones, and define the appropriate macros
|
| /src/sys/contrib/device-tree/Bindings/display/connector/ |
| H A D | analog-tv-connector.txt | 10 ones. If not specified all TV standards are allowed.
|
| /src/tools/tools/vhba/ |
| H A D | README | 11 virtual devices implemented under the VHBA itself. The current ones
|
| /src/contrib/libcbor/doc/source/api/ |
| H A D | type_6.rst | 8 …CBOR tags <https://www.iana.org/assignments/cbor-tags/cbor-tags.xhtml>`_ before inventing new ones.
|
| /src/crypto/openssl/crypto/bn/asm/ |
| H A D | rsaz-2k-avx512.pl | 537 my ($tmp,$cur_idx,$idx1,$idx2,$ones) = map("%ymm$_", (20..24)); 552 vmovdqa64 .Lones(%rip), $ones # broadcast ones 579 vpaddq $ones, $cur_idx, $cur_idx # increment cur_idx
|
| H A D | rsaz-3k-avxifma.pl | 844 my ($tmp,$cur_idx,$idx1,$idx2,$ones,$mask) = map("%ymm$_", (8..13)); 860 vmovapd .Lones(%rip), $ones # broadcast ones 888 vpaddq $ones, $cur_idx, $cur_idx # increment cur_idx 923 vpaddq $ones, $cur_idx, $cur_idx # increment cur_idx
|
| H A D | rsaz-2k-avxifma.pl | 650 my ($tmp,$cur_idx,$idx1,$idx2,$ones,$mask) = map("%ymm$_", (10..15)); 666 vmovapd .Lones(%rip), $ones # broadcast ones 702 vpaddq $ones, $cur_idx, $cur_idx # increment cur_idx
|
| /src/tests/sys/fs/fusefs/ |
| H A D | write.cc | 1295 char *readbuf, *zeros, *ones, *zeroones, *onezeros; in TEST_F() local 1299 ones = new char[2 * bs]; in TEST_F() 1300 memset(ones, 1, 2 * bs); in TEST_F() 1322 FuseTest::expect_write(ino, bs / 2, bs, bs, 0, 0, ones); in TEST_F() 1323 FuseTest::expect_write(ino, 3 * bs / 2, bs, bs, 0, 0, ones); in TEST_F() 1325 ASSERT_EQ(2 * bs, pwrite(fd, ones, 2 * bs, bs / 2)) << strerror(errno); in TEST_F() 1342 EXPECT_EQ(0, memcmp(ones, readbuf, bs / 2)); in TEST_F() 1345 EXPECT_EQ(0, memcmp(ones, readbuf, bs / 2)); in TEST_F() 1350 delete[] ones; in TEST_F()
|
| /src/sys/netpfil/ipfilter/netinet/ |
| H A D | radix_ipf.h | 69 u_char *ones; member
|
| /src/sys/contrib/device-tree/Bindings/interrupt-controller/ |
| H A D | socionext,synquacer-exiu.txt | 16 ones the EXIU forwards its interrups to.
|
| /src/contrib/bmake/unit-tests/ |
| H A D | deptgt.exp | 23 make: deptgt.mk:64: warning: Special and mundane targets don't mix. Mundane ones ignored
|
| /src/contrib/netbsd-tests/fs/tmpfs/ |
| H A D | README | 4 checking the less common ones. Furthermore, tests try not to use features
|