Searched refs:bitCount (Results 1 - 19 of 19) sorted by relevance

/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DPackedIntVector.h36 // in time for power-of-2 values of bitCount would not be difficult.)
40 template<typename T, unsigned bitCount>
43 static_assert(bitCount, "bitCount must not be zero!");
44 static_assert(bitCount < sizeof(void*) * 8, "bitCount must not exceed the address space limit!");
63 return m_bits.size() / bitCount;
68 m_bits.ensureSize(numInts * bitCount);
73 m_bits.resize(numInts * bitCount);
84 for (unsigned subIndex = 0; subIndex < bitCount;
[all...]
H A DBitVector.h205 size_t bitCount() const
208 return bitCount(cleanseInlineBits(m_bitsOrPointer));
263 static size_t byteCount(size_t bitCount)
265 return (bitCount + 7) >> 3;
279 static size_t bitCount(uintptr_t bits)
282 return WTF::bitCount(static_cast<unsigned>(bits));
283 return WTF::bitCount(static_cast<uint64_t>(bits));
H A DFastBitVector.h172 size_t bitCount() const
176 result += WTF::bitCount(m_array[i]);
H A DStdLibExtras.h168 inline size_t bitCount(unsigned bits) function in namespace:WTF
175 inline size_t bitCount(uint64_t bits) function in namespace:WTF
177 return bitCount(static_cast<unsigned>(bits)) + bitCount(static_cast<unsigned>(bits >> 32));
H A DBitVector.cpp180 result += bitCount(bits->bits()[i]);
H A DBitmap.h200 result += WTF::bitCount(static_cast<unsigned>(bits[i]));
/macosx-10.10.1/libunwind-35.3/src/
H A DFileAbstraction.hpp51 // getBits() read a bit field from an E endian struct (bitCount=number of bits in field, firstBit=bit index of field)
52 // setBits() write a bit field to an E endian struct (bitCount=number of bits in field, firstBit=bit index of field)
71 uint8_t firstBit, uint8_t bitCount) INLINE { return getBitsRaw(get32(from), firstBit, bitCount); }
73 uint8_t firstBit, uint8_t bitCount) INLINE { uint32_t temp = get32(into); setBitsRaw(temp, value, firstBit, bitCount); set32(into, temp); }
76 uint8_t firstBit, uint8_t bitCount) INLINE { return ((from >> (32-firstBit-bitCount)) & ((1<<bitCount)-1)); }
78 uint8_t firstBit, uint8_t bitCount) INLIN
[all...]
/macosx-10.10.1/dyld-353.2.1/launch-cache/
H A DFileAbstraction.hpp51 // getBits() read a bit field from an E endian struct (bitCount=number of bits in field, firstBit=bit index of field)
52 // setBits() write a bit field to an E endian struct (bitCount=number of bits in field, firstBit=bit index of field)
74 uint8_t firstBit, uint8_t bitCount) INLINE { return getBitsRaw(get32(from), firstBit, bitCount); }
76 uint8_t firstBit, uint8_t bitCount) INLINE { uint32_t temp = get32(into); setBitsRaw(temp, value, firstBit, bitCount); set32(into, temp); }
79 uint8_t firstBit, uint8_t bitCount) INLINE { return ((from >> (32-firstBit-bitCount)) & ((1<<bitCount)-1)); }
81 uint8_t firstBit, uint8_t bitCount) INLIN
[all...]
/macosx-10.10.1/objc4-646/runtime/
H A Dobjc-layout.mm129 for (bit = which; bit < which + count && bit < bits.bitCount; bit++) {
132 if (bit == bits.bitCount && bit < which + count) {
142 for (bit = which; bit < which + count && bit < bits.bitCount; bit++) {
145 if (bit == bits.bitCount && bit < which + count) {
224 result.bitCount = words;
258 result.bitCount = words;
275 compress_layout(bits.bits, bits.bitCount, bits.weak);
279 layout_bitmap check = layout_bitmap_create(result, bits.bitCount*sizeof(id),
280 bits.bitCount*sizeof(id), bits.weak);
282 compress_layout(check.bits, check.bitCount, chec
[all...]
H A Dobjc-private.h761 size_t bitCount; member in struct:__anon11405
/macosx-10.10.1/hfs-285/fsck_hfs/dfalib/
H A DVolumeBitmapCheck.c352 * bitCount bits.
359 * 1. Increment gBitsMarked with bitCount.
368 * bitCount - total number of bits to set.
374 int CaptureBitmapBits(UInt32 startBit, UInt32 bitCount) argument
386 if (bitCount == 0)
389 if ((startBit + bitCount) > gTotalBits) {
395 gBitsMarked += bitCount;
421 if (numBits > bitCount) {
422 numBits = bitCount; // entire allocation is inside this one word
434 bitCount
528 ReleaseBitmapBits(UInt32 startBit, UInt32 bitCount) argument
[all...]
H A DScavenger.h1421 extern int CaptureBitmapBits(UInt32 startBit, UInt32 bitCount);
1422 extern int ReleaseBitmapBits(UInt32 startBit, UInt32 bitCount);
/macosx-10.10.1/JavaScriptCore-7600.1.17/ftl/
H A DFTLDataSection.cpp40 RELEASE_ASSERT(WTF::bitCount(alignment) == 1);
/macosx-10.10.1/bmalloc-7600.1.17/bmalloc/
H A DAlgorithm.h79 template<typename T> inline constexpr size_t bitCount() function in namespace:bmalloc
H A DBoundaryTag.h68 static const size_t sizeBits = bitCount<unsigned>() - flagBits;
/macosx-10.10.1/JavaScriptCore-7600.1.17/jit/
H A DRegisterSet.h88 size_t numberOfSetRegisters() const { return m_vector.bitCount(); }
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/ico/
H A Dico.c81 UShort bitCount; member in struct:__anon12983
271 !readUShort (handle, &th->entries[i].bitCount) ||
284 printf (" BitCount : %d\n", th->entries[i].bitCount);
315 !writeUShort (handle, th->entries[i].bitCount) ||
994 icoHeader.entries[0].bitCount = (ncolors > 0? 8: 24);
/macosx-10.10.1/IOHIDFamily-606.1.7/IOHIDFamily/
H A DIOHIDElementPrivate.cpp1805 UInt32 bitCount = (_reportBits * _reportCount); local
1807 byteSize = bitCount >> 3;
1808 byteSize += (bitCount % 8) ? 1 : 0;
/macosx-10.10.1/JavaScriptCore-7600.1.17/assembler/
H A DARMv7Assembler.h1514 ASSERT(WTF::bitCount(registerList) > 1);
1534 ASSERT(WTF::bitCount(registerList) > 1);

Completed in 481 milliseconds