Searched refs:outbuff (Results 1 – 3 of 3) sorted by relevance
44 static char outbuff[BUFSIZ]; variable63 if (write(1, outbuff, BUFSIZ) != BUFSIZ) in addbuf()67 outbuff[buffnum] = c; in addbuf()77 if (write(1, outbuff, buffnum) != buffnum) in buflush()
1036 string outbuff=""; in toDecimalString() local1037 void sink(const(char)[] s) { outbuff ~= s; } in toDecimalString()1039 return outbuff; in toDecimalString()1064 string outbuff=""; in toHex() local1065 void sink(const(char)[] s) { outbuff ~= s; } in toHex()1067 return outbuff; in toHex()
1547 auto outbuff = appender!string(); in toHex() local1548 x.toString(outbuff, "%X"); in toHex()1549 return outbuff[]; in toHex()