Searched refs:BitCount (Results 1 - 5 of 5) sorted by relevance

/freebsd-13-stable/sys/contrib/dev/acpica/components/dispatcher/
H A Ddsopcode.c234 UINT32 BitCount; local
283 BitCount = (UINT32) LengthDesc->Integer.Value;
287 if (BitCount == 0)
301 BitCount = 1;
310 BitCount = 8;
319 BitCount = 16;
328 BitCount = 32;
337 BitCount = 64;
352 if ((BitOffset + BitCount) >
359 AcpiUtGetNodeName (ResultDesc), BitOffset, BitCount,
[all...]
/freebsd-13-stable/sys/contrib/dev/acpica/components/resources/
H A Drsutils.c181 UINT8 BitCount; local
189 for (i = 0, BitCount = 0; Mask; i++)
193 List[BitCount] = i;
194 BitCount++;
200 return (BitCount);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DInstructionUtils.h80 static inline uint32_t BitCount(uint64_t x) {
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSparseBitVector.h800 unsigned BitCount = 0;
804 BitCount += Iter->count();
806 return BitCount;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.cpp902 address = SP - 4*BitCount(registers);
919 SP = SP - 4*BitCount(registers);
937 // if BitCount(registers) < 1 then UNPREDICTABLE;
938 if (BitCount(registers) < 1)
944 // if BitCount(registers) < 2 then UNPREDICTABLE;
945 if (BitCount(registers) < 2)
959 // if BitCount(register_list) < 2 then SEE STMDB / STMFD;
971 addr_t sp_offset = addr_byte_size * BitCount(registers);
1032 if registers<13> == '0' then SP = SP + 4*BitCount(registers);
1052 // if BitCount(register
[all...]

Completed in 134 milliseconds