Searched refs:nextblock (Results 1 - 1 of 1) sorted by relevance

/ndk/sources/cxx-stl/stlport/src/details/
H A Dfstream_win32io.cpp494 char * nextblock = buf, * ptrtextbuf = textbuf; local
501 (nextlf = (char *)memchr(nextblock, _STLP_LF, nextblocksize)) != 0) {
502 ptrdiff_t linelength = nextlf - nextblock;
503 memcpy(ptrtextbuf, nextblock, linelength);
505 nextblock += (linelength + 1);
508 nextblocksize = (min) (ptrdiff_t(endblock - nextblock),
514 memcpy(ptrtextbuf, nextblock, nextblocksize);
516 nextblock += nextblocksize;
532 written = (nextblock - buf);

Completed in 16 milliseconds