Searched refs:STACK_BUF_SIZE (Results 1 – 1 of 1) sorted by relevance
/thrift-3.4.0/lib/cpp/src/thrift/ |
D | TOutput.cpp | 41 static const int STACK_BUF_SIZE = 256; in printf() local 42 char stack_buf[STACK_BUF_SIZE]; in printf() 50 if (need < STACK_BUF_SIZE) { in printf() 52 vsnprintf_s(stack_buf, STACK_BUF_SIZE, _TRUNCATE, message, ap); in printf() 59 int need = vsnprintf(stack_buf, STACK_BUF_SIZE, message, ap); in printf() 62 if (need < STACK_BUF_SIZE) { in printf() 72 vsnprintf_s(stack_buf, STACK_BUF_SIZE, _TRUNCATE, message, ap); in printf()
|