Home
last modified time | relevance | path

Searched refs:f_bufptr (Results 1 – 7 of 7) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Include/
Dfileobject.h33 char* f_bufptr; /* Current buffer position */ member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dfileobject.h33 char* f_bufptr; /* Current buffer position */ member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Include/
Dfileobject.h32 char* f_bufptr; /* Current buffer position */ member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dbz2module.c108 char* f_bufptr; /* Current buffer position */ member
154 (f->f_bufend - f->f_bufptr) > 0 && in check_iterbuffered()
429 if((f->f_bufend - f->f_bufptr) >= 1) in Util_ReadAhead()
435 f->f_bufptr = f->f_buf; in Util_ReadAhead()
456 f->f_bufptr = f->f_buf; in Util_ReadAhead()
475 len = f->f_bufend - f->f_bufptr; in Util_ReadAheadGetLineSkip()
479 bufptr = memchr(f->f_bufptr, '\n', len); in Util_ReadAheadGetLineSkip()
482 len = bufptr - f->f_bufptr; in Util_ReadAheadGetLineSkip()
487 memcpy(PyString_AS_STRING(s)+skip, f->f_bufptr, len); in Util_ReadAheadGetLineSkip()
488 f->f_bufptr = bufptr; in Util_ReadAheadGetLineSkip()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dfileobject.h21 char* f_bufptr; /* Current buffer position */ member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dfileobject.c1064 (f->f_bufend - f->f_bufptr) > 0 && in file_read()
1146 (f->f_bufend - f->f_bufptr) > 0 && in file_readinto()
1557 (fo->f_bufend - fo->f_bufptr) > 0 && in PyFile_GetLine()
1649 (f->f_bufend - f->f_bufptr) > 0 && in file_readline()
1684 (f->f_bufend - f->f_bufptr) > 0 && in file_readlines()
2244 if( (f->f_bufend - f->f_bufptr) >= 1) in readahead()
2266 f->f_bufptr = f->f_buf; in readahead()
2288 len = f->f_bufend - f->f_bufptr; in readahead_get_line_skip()
2292 bufptr = (char *)memchr(f->f_bufptr, '\n', len); in readahead_get_line_skip()
2295 len = bufptr - f->f_bufptr; in readahead_get_line_skip()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dfileobject.c1061 (f->f_bufend - f->f_bufptr) > 0 && in file_read()
1132 (f->f_bufend - f->f_bufptr) > 0 && in file_readinto()
1505 (fo->f_bufend - fo->f_bufptr) > 0 && in PyFile_GetLine()
1597 (f->f_bufend - f->f_bufptr) > 0 && in file_readline()
1632 (f->f_bufend - f->f_bufptr) > 0 && in file_readlines()
2176 if( (f->f_bufend - f->f_bufptr) >= 1) in readahead()
2198 f->f_bufptr = f->f_buf; in readahead()
2220 len = f->f_bufend - f->f_bufptr; in readahead_get_line_skip()
2224 bufptr = (char *)memchr(f->f_bufptr, '\n', len); in readahead_get_line_skip()
2227 len = bufptr - f->f_bufptr; in readahead_get_line_skip()
[all …]