Searched refs:CleanupSize (Results 1 – 2 of 2) sorted by relevance
88 unsigned CleanupSize : 12; variable285 return sizeof(EHCleanupScope) + CleanupBits.CleanupSize; in getAllocatedSize()301 CleanupBits.CleanupSize = cleanupSize; in EHCleanupScope()303 assert(CleanupBits.CleanupSize == cleanupSize && "cleanup size overflow"); in EHCleanupScope()352 size_t getCleanupSize() const { return CleanupBits.CleanupSize; } in getCleanupSize()
704 size_t CleanupSize = Scope.getCleanupSize(); in PopCleanupBlock() local707 if (CleanupSize <= sizeof(CleanupBufferStack)) { in PopCleanupBlock()708 memcpy(CleanupBufferStack.buffer, CleanupSource, CleanupSize); in PopCleanupBlock()711 CleanupBufferHeap.reset(new char[CleanupSize]); in PopCleanupBlock()712 memcpy(CleanupBufferHeap.get(), CleanupSource, CleanupSize); in PopCleanupBlock()