Home
last modified time | relevance | path

Searched full:ones (Results 1 – 25 of 1918) sorted by relevance

12345678910>>...77

/freebsd/sys/dev/rndtest/
H A Drndtest.c181 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 …]
/freebsd/tools/regression/nfsmmap/test1/
H A Dtest1.c11 char ones[200]; in main() local
14 memset(ones, 1, sizeof ones); in main()
31 if (write(fd, ones, sizeof ones) < 0) in main()
32 err(1, "writing ones"); in main()
/freebsd/tools/regression/nfsmmap/test2/
H A Dtest2.c11 char ones[200]; in main() local
14 memset(ones, 1, sizeof ones); in main()
31 if (write(fd, ones, sizeof ones) < 0) in main()
32 err(1, "writing ones"); in main()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/GISel/
H A DPPCInstructionSelector.cpp303 // {ones}{15-bit valve} in selectI64ImmDirect()
309 // {ones}{15-bit valve}{16 zeros} in selectI64ImmDirect()
318 // Count of ones follwing the leading zeros. in selectI64ImmDirect()
321 // {ones}{31-bit value} in selectI64ImmDirect()
335 // 2-2) Patterns : {zeros}{ones}{15-bit value}{zeros} in selectI64ImmDirect()
337 // {zeros}{ones}{15-bit value} in selectI64ImmDirect()
338 // {ones}{15-bit value}{zeros} in selectI64ImmDirect()
340 // ones, and then use RLDIC to mask off the ones in both sides after rotation. in selectI64ImmDirect()
353 // 2-3) Pattern : {zeros}{15-bit value}{ones} in selectI64ImmDirect()
384 // 2-4) Patterns : {zeros}{ones}{15-bit value}{ones} in selectI64ImmDirect()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ExpandImm.cpp104 /// starts a contiguous sequence of ones if we look at the bits from the LSB
114 /// ends a contiguous sequence of ones if we look at the bits from the LSB
137 /// Check whether the constant contains a sequence of contiguous ones,
139 /// sequence of contiguous ones with an ORR instruction.
149 /// sequence of ones wraps around the MSB into the LSB.
157 // Try to find the chunks which start/end a contiguous sequence of ones. in trySequenceOfOnes()
173 // Outside of the contiguous sequence of ones everything needs to be zero. in trySequenceOfOnes()
178 // If our contiguous sequence of ones wraps around from the MSB into the LSB, in trySequenceOfOnes()
180 // of zeros surrounded by a contiguous sequence of ones. in trySequenceOfOnes()
191 // of ones. in trySequenceOfOnes()
[all …]
/freebsd/lib/libc/string/
H A Dmemchr.c31 #define ONES ((size_t)-1 / UCHAR_MAX) macro
32 #define HIGHS (ONES * (UCHAR_MAX / 2 + 1))
33 #define HASZERO(x) (((x)-ONES) & ~(x)&HIGHS)
46 size_t k = ONES * c; in memchr()
H A Dstrchrnul.c30 #define ONES ((size_t)-1 / UCHAR_MAX) macro
31 #define HIGHS (ONES * (UCHAR_MAX / 2 + 1))
32 #define HASZERO(x) (((x)-ONES) & ~(x)&HIGHS)
49 size_t k = ONES * c; in __strchrnul()
/freebsd/sbin/ipf/libipf/
H A Dprintmask.c17 int ones; in printmask() local
21 } else if ((ones = count4bits(*mask)) == -1) { in printmask()
25 PRINTF("/%d", ones); in printmask()
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/
H A Dman.CoalesceTrace.d42 * entry/return pairs (e.g. fbt ones) and => <= for syscall ones and
43 * | for profile ones.
/freebsd/sys/contrib/device-tree/Bindings/usb/
H A Dmediatek,mtk-xhci.txt16 "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:
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveRegUnits.cpp118 /// Add all callee saved regs, then remove the ones that are saved and in addPristines()
121 /// Remove the ones that are not saved/restored; they are pristine. in addPristines()
129 /// Add all callee saved regs, then remove the ones that are saved+restored. in addPristines()
132 /// Remove the ones that are not saved/restored; they are pristine. in addPristines()
H A DScoreboardHazardRecognizer.cpp148 // Required FUs conflict with both reserved and required ones in getHazardType()
152 // Reserved FUs can conflict only with required ones. in getHazardType()
199 // Required FUs conflict with both reserved and required ones in EmitInstruction()
203 // Reserved FUs can conflict only with required ones. in EmitInstruction()
H A DLivePhysRegs.cpp188 /// Add all callee saved regs, then remove the ones that are saved and in addPristines()
191 /// Remove the ones that are not saved/restored; they are pristine. in addPristines()
199 /// Add all callee saved regs, then remove the ones that are saved+restored. in addPristines()
202 /// Remove the ones that are not saved/restored; they are pristine. in addPristines()
/freebsd/crypto/openssl/util/
H A Dlang-compress.pl28 (?: \\. | [^\"])* # Any character, including escaped ones
36 (?: \\. | [^\'])+ # Any character, including escaped ones
135 (?: \\. | [^\"])* # Any character, including escaped ones
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DKnownBits.h1 //===- llvm/Support/KnownBits.h - Stores known zeros/ones -------*- C++ -*-===//
9 // This file contains a class for representing known zeros and ones used by
22 // Struct for tracking the known zeros and ones of a value.
119 // Assume that all bits that aren't known-ones are zeros. in getMinValue()
125 // Assume that all bits that aren't known-ones are zeros. in getSignedMinValue()
135 // Assume that all bits that aren't known-zeros are ones. in getMaxValue()
141 // Assume that all bits that aren't known-zeros are ones. in getSignedMaxValue()
/freebsd/crypto/heimdal/appl/login/
H A Dlogin.199 and also authentication related ones (such as
120 These environment variables are set by login (not including ones set by
147 to the ones above. It should contain sh-style assignments like
/freebsd/contrib/bsnmp/snmp_target/
H A Dsnmp_target.3105 This column is used to create new target address entries or delete existing ones
146 existing ones from the table.
176 ones from the table.
/freebsd/lib/libc/amd64/string/
H A Dmemcmp.S299 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
/freebsd/share/man/man4/
H A Dmac_do.455 will allow, based on current process credentials and the desired final ones.
242 nor contradictory ones.
263 then converted to unsigned ones as specified in the C standard for the
431 ones.
/freebsd/usr.sbin/autofs/
H A Dautomount.865 When specified more than once, all the maps, including indirect ones,
75 Specify mount options to be used along with the ones specified in the maps.
/freebsd/crypto/openssl/test/recipes/
H A D15-test_gendh.t41 # The seed and counter should be the ones generated from the param generation
42 # Just put some dummy ones in to show it works.
/freebsd/lib/libpam/modules/pam_tacplus/
H A Dpam_tacplus.886 credentials to the system will be presented as the ones for
88 i.e., his login class, home directory, resource limits, etc.\& will be set to ones
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/block_cloning/
H A Dblock_cloning_lwb_buffer_overflow.ksh34 # block write is split into two 68KB ones, trying to write maximum
72 # an assert is hit when 128KB block write is split into two 68KB ones
/freebsd/sys/contrib/device-tree/Bindings/
H A Dsubmitting-patches.rst70 which ones to review and which ones are ok to let go.
/freebsd/lib/libpam/modules/pam_radius/
H A Dpam_radius.893 credentials to the system will be presented as the ones for
95 i.e., his login class, home directory, resource limits, etc.\& will be set to ones

12345678910>>...77