Home
last modified time | relevance | path

Searched refs:f_bufend (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Objects/
Dfileobject.c1062 (f->f_bufend - f->f_bufptr) > 0 && in file_read()
1144 (f->f_bufend - f->f_bufptr) > 0 && in file_readinto()
1555 (fo->f_bufend - fo->f_bufptr) > 0 && in PyFile_GetLine()
1647 (f->f_bufend - f->f_bufptr) > 0 && in file_readline()
1682 (f->f_bufend - f->f_bufptr) > 0 && in file_readlines()
2242 if( (f->f_bufend - f->f_bufptr) >= 1) in readahead()
2265 f->f_bufend = f->f_buf + chunksize; in readahead()
2286 len = f->f_bufend - f->f_bufptr; in readahead_get_line_skip()
2300 if (bufptr == f->f_bufend) in readahead_get_line_skip()
/external/python/cpython2/Modules/
Dbz2module.c92 char* f_bufend; /* Points after last occupied position */ member
139 (f->f_bufend - f->f_bufptr) > 0 && in check_iterbuffered()
417 if((f->f_bufend - f->f_bufptr) >= 1) in Util_ReadAhead()
424 f->f_bufend = f->f_buf; in Util_ReadAhead()
445 f->f_bufend = f->f_buf + chunksize; in Util_ReadAhead()
463 len = f->f_bufend - f->f_bufptr; in Util_ReadAheadGetLineSkip()
477 if (bufptr == f->f_bufend) in Util_ReadAheadGetLineSkip()
/external/python/cpython2/Include/
Dfileobject.h20 char* f_bufend; /* Points after last occupied position */ member