Lines Matching refs:tmpbuf
133 ubyte[10] tmpbuf = void;
134 auto sbuf = ScopeBuffer!ubyte(tmpbuf);
297 char[2] tmpbuf = void;
300 auto textbuf = ScopeBuffer!char(tmpbuf);
339 char[10] tmpbuf = void; in cat()
340 auto textbuf = ScopeBuffer!char(tmpbuf); in cat()
355 char[10] tmpbuf = void;
356 auto textbuf = ScopeBuffer!char(tmpbuf);
374 auto scopeBuffer(T)(T[] tmpbuf) in scopeBuffer()
376 return ScopeBuffer!T(tmpbuf); in scopeBuffer()
382 ubyte[10] tmpbuf = void;
383 auto sb = scopeBuffer(tmpbuf);