Home
last modified time | relevance | path

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

/external/angle/third_party/VulkanMemoryAllocator/src/
DCommon.cpp96 bool useSmallBuf = dstLen < CONSOLE_SMALL_BUF_SIZE; in PrintMessageV() local
98 std::vector<char> bigBuf(useSmallBuf ? 0 : dstLen + 1); in PrintMessageV()
99 char* bufPtr = useSmallBuf ? smallBuf : bigBuf.data(); in PrintMessageV()
110 bool useSmallBuf = dstLen < CONSOLE_SMALL_BUF_SIZE; in PrintMessageV() local
112 std::vector<wchar_t> bigBuf(useSmallBuf ? 0 : dstLen + 1); in PrintMessageV()
113 wchar_t* bufPtr = useSmallBuf ? smallBuf : bigBuf.data(); in PrintMessageV()