Searched refs:useSmallBuf (Results 1 – 1 of 1) sorted by relevance
96 bool useSmallBuf = dstLen < CONSOLE_SMALL_BUF_SIZE; in PrintMessageV() local98 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() local112 std::vector<wchar_t> bigBuf(useSmallBuf ? 0 : dstLen + 1); in PrintMessageV()113 wchar_t* bufPtr = useSmallBuf ? smallBuf : bigBuf.data(); in PrintMessageV()