Lines Matching refs:tmpbuf
134 ubyte[10] tmpbuf = void;
135 auto sbuf = ScopeBuffer!ubyte(tmpbuf);
298 char[2] tmpbuf = void;
301 auto textbuf = ScopeBuffer!char(tmpbuf);
340 char[10] tmpbuf = void; in cat()
341 auto textbuf = ScopeBuffer!char(tmpbuf); in cat()
356 char[10] tmpbuf = void;
357 auto textbuf = ScopeBuffer!char(tmpbuf);
375 auto scopeBuffer(T)(T[] tmpbuf) in scopeBuffer()
377 return ScopeBuffer!T(tmpbuf); in scopeBuffer()
383 ubyte[10] tmpbuf = void;
384 auto sb = scopeBuffer(tmpbuf);