OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:nextblocksize
(Results
1 - 1
of
1
) sorted by null
/external/stlport/src/details/
fstream_win32io.cpp
497
ptrdiff_t
nextblocksize
= (min) (n, (ptrdiff_t)_TEXTBUF_SIZE);
local
500
while ( (
nextblocksize
> 0) &&
501
(nextlf = (char *)memchr(nextblock, _STLP_LF,
nextblocksize
)) != 0) {
508
nextblocksize
= (min) (ptrdiff_t(endblock - nextblock),
513
if (
nextblocksize
> 0) {
514
memcpy(ptrtextbuf, nextblock,
nextblocksize
);
515
ptrtextbuf +=
nextblocksize
;
516
nextblock +=
nextblocksize
;
Completed in 25 milliseconds