Home
last modified time | relevance | path

Searched full:significant (Results 1 – 25 of 1294) sorted by relevance

12345678910>>...52

/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Dbmiintrin.h211 /// in the least significant bits of the result.
221 /// specify the index of the least significant bit. Bits [15:8] specify the
223 /// \returns An unsigned integer whose least significant bits contain the
234 /// in the least significant bits of the result.
243 /// An unsigned integer used to specify the index of the least significant
248 /// \returns An unsigned integer whose least significant bits contain the
259 /// in the least significant bits of the result.
269 /// specify the index of the least significant bit. Bits [15:8] specify the
271 /// \returns An unsigned integer whose least significant bits contain the
279 /// Clears all bits in the source except for the least significant bit
[all …]
/freebsd/lib/libsys/
H A Duuidgen.278 The least significant 32 bits of a 60-bit timestamp.
81 The least significant 16 bits of the most significant 28 bits of the 60-bit
85 The most significant 12 bits of the 60-bit timestamp multiplexed with a 4-bit
87 The version number is stored in the most significant 4 bits of the 16-bit
91 The most significant 6 bits of a 14-bit sequence number multiplexed with a
97 the variant value is stored in the most significant bits of the field.
99 The least significant 8 bits of a 14-bit sequence number.
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMsgPack.h32 /// Most significant bits used to identify "Fix" variants in MessagePack.
34 /// For example, FixStr objects encode their size in the five least significant
36 /// the three most significant bits. So FixBits::String contains 0b10100000.
46 /// For example, FixStr objects encode their size in the five least significant
48 /// the three most significant bits. So FixBitsMask::String contains
59 /// For example, FixStr objects encode their size in the five least significant
81 /// they must have the pattern "111" as their three most significant bits. This
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dpopcountti2.c28 // Every 4 bits holds the sum of every 4-set of bits (3 significant bits) (32) in __popcountti2()
31 // Every 8 bits holds the sum of every 8-set of bits (4 significant bits) (16) in __popcountti2()
33 // Every 8 bits holds the sum of every 8-set of bits (5 significant bits) (8) in __popcountti2()
35 // Every 8 bits holds the sum of every 8-set of bits (6 significant bits) (4) in __popcountti2()
37 // Every 8 bits holds the sum of every 8-set of bits (7 significant bits) (2) in __popcountti2()
40 return (x + (x >> 8)) & 0xFF; // (8 significant bits) in __popcountti2()
H A Dpopcountdi2.c22 // Every 4 bits holds the sum of every 4-set of bits (3 significant bits) (16) in __popcountdi2()
24 // Every 8 bits holds the sum of every 8-set of bits (4 significant bits) (8) in __popcountdi2()
26 // The lower 32 bits hold four 16 bit sums (5 significant bits). in __popcountdi2()
29 // The lower 16 bits hold two 32 bit sums (6 significant bits). in __popcountdi2()
31 return (x + (x >> 8)) & 0x0000007F; // (7 significant bits) in __popcountdi2()
H A Dpopcountsi2.c22 // Every 4 bits holds the sum of every 4-set of bits (3 significant bits) in __popcountsi2()
24 // Every 8 bits holds the sum of every 8-set of bits (4 significant bits) in __popcountsi2()
26 // The lower 16 bits hold two 8 bit sums (5 significant bits). in __popcountsi2()
28 return (x + (x >> 8)) & 0x0000003F; // (6 significant bits) in __popcountsi2()
H A Dffssi2.c15 // Returns: the index of the least significant 1-bit in a, or
16 // the value zero if a is zero. The least significant bit is index one.
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DInstructionUtils.h19 // Return the bit field(s) from the most significant bit (msbit) to the
20 // least significant bit (lsbit) of a 64-bit unsigned value.
27 // Return the bit field(s) from the most significant bit (msbit) to the
28 // least significant bit (lsbit) of a 32-bit unsigned value.
44 // Set the bit field(s) from the most significant bit (msbit) to the
45 // least significant bit (lsbit) of a 32-bit unsigned value to 'val'.
84 x &= x - 1; // clear the least significant bit set in BitCount()
/freebsd/sys/contrib/dpdk_rte_lpm/
H A Drte_common.h396 * Combines 32b inputs most significant set bits into the least
397 * significant bits to construct a value with the same MSBs as x
418 * Combines 64b inputs most significant set bits into the least
419 * significant bits to construct a value with the same MSBs as x
554 * Searches the input parameter for the least significant set bit
556 * If a least significant 1 bit is found, its bit index is returned.
562 * least significant set bit in the input parameter.
571 * Searches the input parameter for the least significant set bit
579 * If ``v`` was not 0, this value will contain position of least significant
616 * Return the last (most-significant) bit set.
[all …]
/freebsd/lib/msun/man/
H A Dieee.3101 the rounded value's least significant bit is zero.
154 Precision: 24 significant bits,
155 roughly like 7 significant decimals.
189 Precision: 53 significant bits,
190 roughly like 16 significant decimals.
220 Precision: 64 significant bits,
221 roughly like 19 significant decimals.
251 Precision: 113 significant bits,
252 roughly like 34 significant decimals.
/freebsd/share/man/man4/
H A Dlp.4140 sender writes the 4 most significant bits and raises the handshake line;
142 sender places the 4 least significant bits on the data lines and lowers
187 sender writes the 4 least significant bits and raises the handshake line;
189 sender places the 4 most significant bits on the data lines and lowers
195 Length (least significant byte)
196 Length (most significant byte)
/freebsd/crypto/openssl/doc/man3/
H A DBN_num_bytes.pod21 BN_num_bits_word() returns the number of significant bits in a word.
25 BN_num_bits() returns the number of significant bits in a B<BIGNUM>,
41 of I<significant> bits a little lower. If you want to know the "key
/freebsd/lib/libc/string/
H A Dffs.363 functions find the first (least significant) bit set
73 functions find the last (most significant) bit set in
77 Bits are numbered starting at 1, the least significant bit.
/freebsd/sys/compat/freebsd32/
H A Dsyscalls.conf50 # afs3_syscall - requires significant porting, probably doesn't make sense
53 # nlm_syscall - requires significant porting, probably doesn't make sense
54 # nnpfs_syscall - requires significant porting, probably doesn't make sense
/freebsd/usr.bin/cksum/
H A Dcksum.1135 bits are the bits from the file, with the most significant bit being the most
136 significant bit of the first octet of the file and the last bit being the least
137 significant bit of the last octet, padded with zero bits (if necessary) to
139 representing the length of the file as a binary value, least significant octet
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrOperands.td166 // 64-bits but only 32 bits are significant, and those bits are treated as being
397 // 16-bits but only 8 bits are significant.
402 // 32-bits but only 8 bits are significant.
408 // 64-bits but only 32 bits are significant.
414 // 64-bits but only 8 bits are significant.
440 // 16-bit immediate but only 8-bits are significant and they are unsigned.
448 // 32-bit immediate but only 8-bits are significant and they are unsigned.
456 // 64-bit immediate but only 8-bits are significant and they are unsigned.
/freebsd/contrib/wpa/src/common/
H A Deapol_common.h72 u8 key_index; /* key flag in the most significant bit:
75 * 7 least significant bits */
83 * represents the number of least significant octets from
/freebsd/sys/contrib/zlib/doc/
H A Drfc1951.txt250 significant bit, and since we write numbers with the most-
251 significant digit on the left, we also write bytes with the most-
252 significant bit on the left. In the diagrams below, we number the
253 bits of a byte so that bit 0 is the least-significant bit, i.e.,
262 the least-significant byte first (at the lower memory address).
271 | + more significant byte = 2 x 256
272 + less significant byte = 8
295 with the least-significant bit of the byte.
297 starting with the least-significant bit of the data
300 significant bit of the code.
[all …]
H A Drfc1950.txt186 significant bit, and since we write numbers with the most-
187 significant digit on the left, we also write bytes with the most-
188 significant bit on the left. In the diagrams below, we number the
189 bits of a byte so that bit 0 is the least-significant bit, i.e.,
198 the MOST-significant byte first (at the lower memory address).
207 | + less significant byte = 8
208 + more significant byte = 2 x 256
329 significant-byte first (network) order.
/freebsd/sys/dev/bwi/
H A Dbitops.h41 * significant bit is bit 0.
45 * least significant bit is bit 0.
75 /* Find least significant bit that is set */
/freebsd/share/doc/smm/06.nfs/
H A D1.t243 IP fragmentation problems is a significant number of
271 be a significant number\** in the \fIX Replies\fR field and a
273 \**Even 0.1% of the total RPCs is probably significant.
278 On the server, there would be significant numbers of \fIInprog\fR recent
304 significant and TCP transport may only be useful when the client
324 Under some workloads, a buffer cache of 4-6Mbytes can result in significant
447 being lost and a significant number of these occurring indicates that the
449 A significant number of \fIbad checksums\fR reported in the \fIudp:\fR
/freebsd/sys/contrib/device-tree/Bindings/dma/
H A Datmel-dma.txt25 2. The memory interface (16 most significant bits), the peripheral interface
26 (16 less significant bits).
/freebsd/secure/lib/libcrypto/man/man3/
H A DBN_num_bytes.3156 \&\fBBN_num_bits_word()\fR returns the number of significant bits in a word.
160 \&\fBBN_num_bits()\fR returns the number of significant bits in a \fB\s-1BIGNUM\s0\fR,
174 of \fIsignificant\fR bits a little lower. If you want to know the \*(L"key
/freebsd/sys/contrib/edk2/Include/Library/
H A DBaseLib.h4003 @param StartBit The ordinal of the least significant bit in the bit field.
4005 @param EndBit The ordinal of the most significant bit in the bit field.
4034 @param StartBit The ordinal of the least significant bit in the bit field.
4036 @param EndBit The ordinal of the most significant bit in the bit field.
4068 @param StartBit The ordinal of the least significant bit in the bit field.
4070 @param EndBit The ordinal of the most significant bit in the bit field.
4102 @param StartBit The ordinal of the least significant bit in the bit field.
4104 @param EndBit The ordinal of the most significant bit in the bit field.
4138 @param StartBit The ordinal of the least significant bit in the bit field.
4140 @param EndBit The ordinal of the most significant bit in the bit field.
[all …]
/freebsd/sys/contrib/device-tree/Bindings/mux/
H A Dgpio-mux.txt9 significant bit first.
18 multiplexer GPIO pins, where the first pin is the least significant

12345678910>>...52