Home
last modified time | relevance | path

Searched refs:UsedBytes (Results 1 – 5 of 5) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/
DUDTLayout.cpp54 UsedBytes.resize(SizeOf, true); in LayoutItemBase()
58 return UsedBytes.size() - UsedBytes.count(); in deepPaddingSize()
62 int Last = UsedBytes.find_last(); in tailPadding()
64 return UsedBytes.size() - (Last + 1); in tailPadding()
75 UsedBytes = UdtLayout->usedBytes(); in DataMemberLayoutItem()
110 UsedBytes.reset(0, Size); in UDTLayoutBase()
114 UsedBytes.resize(LayoutSize); in UDTLayoutBase()
159 UsedBytes.resize(1); in BaseClassLayout()
160 UsedBytes.set(0); in BaseClassLayout()
250 uint32_t Offset = UsedBytes.find_last() + 1; in initializeChildren()
[all …]
/third_party/skia/third_party/externals/d3d12allocator/src/
DTests.cpp195 CHECK_BOOL(statInfo.UsedBytes == blockSize); in TestVirtualBlocks()
196 CHECK_BOOL(statInfo.UnusedBytes + statInfo.UsedBytes == blockSize); in TestVirtualBlocks()
592 CHECK_BOOL( poolStats.UsedBytes == 0 ); in TestCustomPools()
606 CHECK_BOOL( poolStats.UsedBytes == 0 ); in TestCustomPools()
613 CHECK_BOOL( poolStats.UsedBytes == 0 ); in TestCustomPools()
643 CHECK_BOOL( poolStats.UsedBytes == 2 * BUFFER_SIZE ); in TestCustomPools()
644 CHECK_BOOL( poolStats.UnusedBytes == poolDesc.BlockSize - poolStats.UsedBytes ); in TestCustomPools()
653 …CHECK_BOOL( globalStatsCurr.Total.UsedBytes == globalStatsBeg.Total.UsedBytes + poolStats.UsedByte… in TestCustomPools()
694 CHECK_BOOL( poolStats.UsedBytes == 4 * BUFFER_SIZE ); in TestCustomPools()
695 …K_BOOL( poolStats.UnusedBytes == poolStats.BlockCount * poolDesc.BlockSize - poolStats.UsedBytes ); in TestCustomPools()
[all …]
DD3D12MemAlloc.h1126 UINT64 UsedBytes; member
DD3D12MemAlloc.cpp506 dst.UsedBytes += src.UsedBytes; in AddStatInfo()
517 statInfo.UsedBytes / statInfo.AllocationCount : 0; in PostProcessStatInfo()
3167 outInfo.UsedBytes = GetSize() - m_SumFreeSize; in CalcAllocationStatInfo()
4872 statInfo.UsedBytes = size; in CalculateStats()
4987 json.WriteNumber(statInfo.UsedBytes); in AddStatInfoToJson()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/
DUDTLayout.h51 const BitVector &usedBytes() const { return UsedBytes; } in usedBytes()
64 BitVector UsedBytes; variable