/device/linaro/bootloader/edk2/StdLib/Include/sys/ |
D | unistd.h | 80 #ifndef SEEK_CUR 81 #define SEEK_CUR 1 /**< set file offset to current plus offset */ macro 89 #define L_INCR SEEK_CUR
|
D | fcntl.h | 132 #ifndef SEEK_CUR 133 #define SEEK_CUR 1 /* set file offset to current plus offset */ macro
|
D | EfiSysCall.h | 83 #ifndef SEEK_CUR 84 #define SEEK_CUR 1 /**< set file offset to current plus offset */ macro
|
/device/linaro/bootloader/edk2/StdLib/LibC/Stdio/ |
D | fseeko.c | 114 case SEEK_CUR: in __weak_alias() 124 curoff = (*seekfn)(fp->_cookie, (fpos_t)0, SEEK_CUR); in __weak_alias() 198 curoff = (*seekfn)(fp->_cookie, (fpos_t)0, SEEK_CUR); in __weak_alias()
|
D | ftell.c | 78 pos = (*fp->_seek)(fp->_cookie, (fpos_t)0, SEEK_CUR); in ftell()
|
D | ftello.c | 75 pos = (*fp->_seek)(fp->_cookie, (fpos_t)0, SEEK_CUR); in __weak_alias()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | io.py | 72 SEEK_CUR = 1 variable
|
D | posixfile.py | 232 SEEK_CUR = 1 variable
|
D | os.py | 128 SEEK_CUR = 1 variable
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | io.py | 63 SEEK_CUR = 1 variable
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
D | gzlib.c | 256 state->start = LSEEK(state->fd, 0, SEEK_CUR); 383 if (whence != SEEK_SET && whence != SEEK_CUR) 396 ret = LSEEK(state->fd, offset - state->x.have, SEEK_CUR); 492 offset = LSEEK(state->fd, 0, SEEK_CUR);
|
D | example.c | 141 gzseek(file, 1L, SEEK_CUR); /* add one zero byte */ 162 pos = gzseek(file, -8L, SEEK_CUR);
|
D | zconf.h | 476 # define SEEK_CUR 1 /* Seek from current position. */ macro
|
/device/linaro/bootloader/edk2/StdLib/Include/ |
D | stdio.h | 316 #ifndef SEEK_CUR 317 #define SEEK_CUR 1 /**< set file offset to current plus offset */ macro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/ |
D | fileio.c | 461 PyObject *pos = portable_lseek(self->fd, NULL, SEEK_CUR); in fileio_seekable() 513 pos = lseek(self->fd, 0L, SEEK_CUR); in new_buffersize() 702 #if SEEK_CUR != 1 in portable_lseek() 703 case 1: whence = SEEK_CUR; break; in portable_lseek()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/ |
D | fileio.c | 449 PyObject *pos = portable_lseek(self->fd, NULL, SEEK_CUR); in fileio_seekable() 508 pos = lseek(self->fd, 0L, SEEK_CUR); in new_buffersize() 714 #if SEEK_CUR != 1 in portable_lseek() 715 case 1: whence = SEEK_CUR; break; in portable_lseek()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
D | zconf.h | 297 # define SEEK_CUR 1 /* Seek from current position. */ macro
|
D | zconf.in.h | 297 # define SEEK_CUR 1 /* Seek from current position. */ macro
|
D | example.c | 112 gzseek(file, 1L, SEEK_CUR); /* add one zero byte */ 133 pos = gzseek(file, -8L, SEEK_CUR);
|
D | gzio.c | 809 if (whence == SEEK_CUR) { 884 return gzseek(file, 0L, SEEK_CUR);
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/ |
D | 7zFile.c | 178 case SZ_SEEK_CUR: moveMethod = SEEK_CUR; break; in File_Seek()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/ |
D | os.py | 155 SEEK_CUR = 1 variable
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/ |
D | os.py | 142 SEEK_CUR = 1 variable
|
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/ |
D | SysCalls.c | 532 if( how == SEEK_SET || how == SEEK_CUR || how == SEEK_END) { in lseek()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | liolib.c | 547 static const int mode[] = {SEEK_SET, SEEK_CUR, SEEK_END}; in f_seek()
|