Home | History | Annotate | Download | only in src

Lines Matching refs:put

60 strstreambuf::strstreambuf(char* get, streamsize n, char* put)
63 _M_setup(get, put, n);
66 strstreambuf::strstreambuf(signed char* get, streamsize n, signed char* put)
69 _M_setup(__REINTERPRET_CAST(char*,get), __REINTERPRET_CAST(char*,put), n);
73 unsigned char* put)
76 _M_setup(__REINTERPRET_CAST(char*,get), __REINTERPRET_CAST(char*,put), n);
277 void strstreambuf::_M_setup(char* get, char* put, streamsize n) {
281 if (put) {
283 setp(put, put + N);