Home
last modified time | relevance | path

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

/netbsd-src/games/backgammon/common_source/
H A Dsubs.c44 static char outbuff[BUFSIZ]; variable
63 if (write(1, outbuff, BUFSIZ) != BUFSIZ) in addbuf()
67 outbuff[buffnum] = c; in addbuf()
77 if (write(1, outbuff, buffnum) != buffnum) in buflush()
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dbigint.d1036 string outbuff=""; in toDecimalString() local
1037 void sink(const(char)[] s) { outbuff ~= s; } in toDecimalString()
1039 return outbuff; in toDecimalString()
1064 string outbuff=""; in toHex() local
1065 void sink(const(char)[] s) { outbuff ~= s; } in toHex()
1067 return outbuff; in toHex()
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Dbigint.d1547 auto outbuff = appender!string(); in toHex() local
1548 x.toString(outbuff, "%X"); in toHex()
1549 return outbuff[]; in toHex()