Searched refs:roundUpToAlignment (Results 1 - 2 of 2) sorted by relevance

/macosx-10.9.5/WebKit2-7537.78.2/Platform/CoreIPC/
H A DArgumentDecoder.cpp60 static inline uint8_t* roundUpToAlignment(uint8_t* ptr, unsigned alignment) function in namespace:CoreIPC
74 m_buffer = roundUpToAlignment(m_allocatedBase, expectedAlignment);
89 uint8_t* alignedPosition = roundUpToAlignment(m_bufferPos, alignment);
102 return alignedBufferIsLargeEnoughToContain(roundUpToAlignment(m_bufferPos, alignment), m_bufferEnd, size);
H A DArgumentEncoder.cpp84 static inline size_t roundUpToAlignment(size_t value, unsigned alignment) function in namespace:CoreIPC
91 size_t alignedSize = roundUpToAlignment(m_bufferSize, alignment);
94 size_t newCapacity = roundUpToAlignment(m_bufferCapacity * 2, 4096);

Completed in 89 milliseconds