Searched defs:rewind (Results 1 - 8 of 8) sorted by relevance

/device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
H A Drewind.c2 Implementation of rewind as declared in <stdio.h>.
43 NetBSD: rewind.c,v 1.13 2003/08/07 16:43:30 agc Exp
44 rewind.c 8.1 (Berkeley) 6/4/93
55 rewind(FILE *fp) function
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
H A DATokenBuffer.cpp144 rewind(int pos) function in class:ANTLRTokenBuffer
147 /* MR23 */ printMessage(stderr, "rewind(%d)[nm=%d,from=%d,%d.n=%d]\n", pos, num_markers, tp-buffer,pos,test[pos]);
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
H A DATokenBuffer.cpp143 rewind(int pos) function in class:ANTLRTokenBuffer
146 fprintf(stderr, "rewind(%d)[nm=%d,from=%d,%d.n=%d]\n", pos, num_markers, tp-buffer,pos,test[pos]);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dgzip.py311 # data, minus 8 because _read_eof() will rewind a further 8 bytes)
328 # We've read to the end of the file, so we have to rewind in order
385 def rewind(self): member in class:GzipFile
389 raise IOError("Can't rewind in write mode")
421 # for negative seek, rewind and do positive seek
422 self.rewind()
H A Dwave.py9 When the setpos() and rewind() methods are not used, the seek()
28 rewind() -- rewind to the beginning of the audio stream
177 def rewind(self): member in class:Wave_read
H A Daifc.py79 rewind() -- rewind to the beginning of the audio stream
343 def rewind(self): member in class:Aifc_read
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
H A Dbufferedio.c1763 Py_off_t n, rewind;
1767 /* First, rewind */
1768 rewind = RAW_OFFSET(self) + (self->pos - self->write_pos);
1769 if (rewind != 0) {
1770 n = _buffered_raw_seek(self, -rewind, 1);
1774 self->raw_pos -= rewind;
1893 modified (and therefore _bufferedwriter_flush_unlocked() didn't rewind
1762 Py_off_t n, rewind; local
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
H A Dbufferedio.c1724 Py_off_t n, rewind;
1728 /* First, rewind */
1729 rewind = RAW_OFFSET(self) + (self->pos - self->write_pos);
1730 if (rewind != 0) {
1731 n = _buffered_raw_seek(self, -rewind, 1);
1735 self->raw_pos -= rewind;
1764 Py_off_t forward = rewind - written;
1862 modified (and therefore _bufferedwriter_flush_unlocked() didn't rewind
1723 Py_off_t n, rewind; local

Completed in 105 milliseconds