Lines Matching refs:offset
78 <name>NUL<offset>NUL<entry_size>NUL<size>NUL<typeflag>NULNL
83 <offset> is an unsigned long long integer containing the relative
84 offset in bytes of the first header block for the file in the
85 archive. The offset is relative to the end of the last block of
160 def add(self, name, offset, entry_size, size, typeflag):
166 name, offset, entry_size, size, typeflag)))
170 offset) for each file in the index."""
191 name, offset, ignored = l.split(b"\0", 2)
192 yield force_str(name), long(offset)
426 # After extraction, the current archive file offset
429 index_offset = self.__arc_tfile.offset
435 for name, offset in \
438 index_offset + offset
521 member.offset
580 # Record name, offset, entry_size, size type for each file.
971 # Get the offset in the archive for the given file, and then
973 offset = self.__extract_offsets.get(src, None)
975 if offset is not None:
978 self.__arc_file.seek(offset)
979 tfile.offset = offset
1045 # Get the offset in the archive for the given file, and then
1047 offset = self.__extract_offsets.get(src, None)
1049 if offset is not None:
1052 self.__arc_file.seek(offset)
1053 tfile.offset = offset
1166 # Search through offset index to find publishers
1298 start_offset = tfile.offset
1310 tfile.offset - start_offset)