Searched full:lsbit (Results 1 – 10 of 10) sorted by relevance
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
| H A D | InstructionUtils.h | 20 // least significant bit (lsbit) of a 64-bit unsigned value. 22 const uint32_t lsbit) { in Bits64() argument 23 assert(msbit < 64 && lsbit <= msbit); in Bits64() 24 return (bits >> lsbit) & ((1ull << (msbit - lsbit + 1)) - 1); in Bits64() 28 // least significant bit (lsbit) of a 32-bit unsigned value. 30 const uint32_t lsbit) { in Bits32() argument 31 assert(msbit < 32 && lsbit <= msbit); in Bits32() 32 return (bits >> lsbit) & ((1u << (msbit - lsbit + 1)) - 1); in Bits32() 45 // least significant bit (lsbit) of a 32-bit unsigned value to 'val'. 47 const uint32_t lsbit, const uint32_t val) { in SetBits32() argument [all …]
|
| H A D | ARMUtils.h | 266 const uint32_t lsbit) { in bits() argument 267 return Bits32(val, msbit, lsbit); in bits()
|
| /freebsd/contrib/llvm-project/lldb/source/Target/ |
| H A D | DynamicRegisterInfo.cpp | 69 // REGNAME[MSBIT:LSBIT] in ByteOffsetFromSlice() 73 // LSBIT - the least significant bit at which the current register value in ByteOffsetFromSlice() 88 uint32_t lsbit; in ByteOffsetFromSlice() local 90 !llvm::to_integer(lsbit_str, lsbit)) in ByteOffsetFromSlice() 92 llvm::inconvertibleErrorCode(), "msbit (%s) or lsbit (%s) are invalid", in ByteOffsetFromSlice() 95 if (msbit <= lsbit) in ByteOffsetFromSlice() 97 "msbit (%u) must be greater than lsbit (%u)", in ByteOffsetFromSlice() 98 msbit, lsbit); in ByteOffsetFromSlice() 101 const uint32_t lsbyte = lsbit / 8; in ByteOffsetFromSlice() 116 if (lsbit > max_bi in ByteOffsetFromSlice() [all...] |
| /freebsd/sys/contrib/device-tree/Bindings/display/imx/ |
| H A D | fsl,imx8qxp-dc-extdst.yaml | 27 bits is done by LSBit truncation. Alpha output bit is 1 for input 255, 0
|
| H A D | fsl,imx8qxp-dc-scaling-engine.yaml | 22 are LSBit precise (e.g. DC ripple free).
|
| /freebsd/contrib/opencsd/decoder/source/ptm/ |
| H A D | trc_pkt_elem_ptm.cpp | 210 uint32_t bitpattern = atom.En_bits; // arranged LSBit oldest, MSbit newest in getAtomStr()
|
| /freebsd/contrib/opencsd/decoder/source/etmv3/ |
| H A D | trc_pkt_elem_etmv3.cpp | 518 uint32_t bitpattern = m_pkt_data.atom.En_bits; // arranged LSBit oldest, MSbit newest in getAtomStr()
|
| /freebsd/sys/dev/jedec_dimm/ |
| H A D | jedec_dimm.c | 999 /* Don't bother if this isn't an SPD address, or if the LSBit is set. */ in jedec_dimm_probe()
|
| /freebsd/contrib/opencsd/decoder/source/etmv4/ |
| H A D | trc_pkt_proc_etmv4i.cpp | 1184 // patterns lsbit = oldest atom, ms bit = newest. in iAtom()
|
| /freebsd/sys/dev/qlnx/qlnxe/ |
| H A D | reg_addr.h | 41819 …:0x20 // For attention message: Attention bit destination address 32 LSB. Two Lsbit must be zero. 41831 …0850UL //Access:RW DataWidth:0x20 // Address 0 - MSI address low (two Lsbit are zero). Address…
|