Searched refs:fixbuf (Results 1 – 1 of 1) sorted by relevance
871 char[4096] fixbuf = void; in opApply()873 buf = fixline( buf, fixbuf ); in opApply()896 const(char)[] fixline( const(char)[] buf, return ref char[4096] fixbuf ) const in fixline() argument903 if (symBeg == symEnd || symBeg >= fixbuf.length) in fixline()905 immutable len = min(buf.length, fixbuf.length); in fixline()906 fixbuf[0 .. len] = buf[0 .. len]; in fixline()907 return fixbuf[0 .. len]; in fixline()911 fixbuf[0 .. symBeg] = buf[0 .. symBeg]; in fixline()913 auto sym = demangle(buf[symBeg .. symEnd], fixbuf[symBeg .. $]); in fixline()915 if (sym.ptr !is fixbuf.ptr + symBeg) in fixline()[all …]