Home
last modified time | relevance | path

Searched refs:uLong (Results 1 – 6 of 6) sorted by relevance

/AOO41X/main/extensions/source/macosx/spotlight/
H A Dunzip.h113 uLong number_entry; /* total number of entries in
115 uLong size_comment; /* size of the global comment of the zipfile */
122 uLong version; /* version made by 2 bytes */
123 uLong version_needed; /* version needed to extract 2 bytes */
124 uLong flag; /* general purpose bit flag 2 bytes */
125 uLong compression_method; /* compression method 2 bytes */
126 uLong dosDate; /* last mod file date in Dos fmt 4 bytes */
127 uLong crc; /* crc-32 4 bytes */
128 uLong compressed_size; /* compressed size 4 bytes */
129 uLong uncompressed_size; /* uncompressed size 4 bytes */
[all …]
H A Dunzip.m120 uLong offset_curfile;/* relative offset of local header 4 bytes */
131 uLong pos_in_zipfile; /* position in byte on the zipfile, for fseek*/
132 uLong stream_initialised; /* flag set if stream structure is initialised*/
134 uLong offset_local_extrafield;/* offset of the local extra field */
136 uLong pos_local_extrafield; /* position in the local extra field in read*/
138 uLong crc32; /* crc32 of all data uncompressed */
139 uLong crc32_wait; /* crc32 we must obtain after decompress all */
140 uLong rest_read_compressed; /* number of byte to be decompressed */
141 uLong rest_read_uncompressed;/*number of byte to be obtained after decomp*/
144 uLong compression_method; /* compression method (0==store) */
[all …]
H A Dioapi.m60 uLong ZCALLBACK fread_file_func OF((
64 uLong size));
66 uLong ZCALLBACK fwrite_file_func OF((
70 uLong size));
79 uLong offset,
113 uLong ZCALLBACK fread_file_func (opaque, stream, buf, size)
117 uLong size;
119 uLong ret;
120 ret = (uLong)fread(buf, 1, (size_t)size, (FILE *)stream);
125 uLong ZCALLBACK fwrite_file_func (opaque, stream, buf, size)
[all …]
H A Dioapi.h58 typedef uLong (ZCALLBACK *read_file_func) OF((voidpf opaque, voidpf stream, void* buf, uLong size)… typedef
59 typedef uLong (ZCALLBACK *write_file_func) OF((voidpf opaque, voidpf stream, const void* buf, uLon… typedef
61 typedef long (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, int orig…
/AOO41X/main/shell/source/win32/shlxthandler/ooofilt/
H A Dstream_helper.cxx54 uLong ZCALLBACK cb_sread OF((voidpf opaque, voidpf stream, void* vuf, uLong size));
55 uLong ZCALLBACK cb_swrite OF((voidpf opaque, voidpf stream, const void* buf, uLong size));
57 long ZCALLBACK cb_sseek OF((voidpf opaque, voidpf stream, uLong offset, int origin));
90 uLong ZCALLBACK cb_sread (voidpf /*opaque*/, voidpf stream, void* buf, uLong size) { in cb_sread()
99 return (uLong)0; in cb_sread()
103 long ZCALLBACK cb_sseek (voidpf /*opaque*/, voidpf stream, uLong offset, int origin) { in cb_sseek()
158 uLong ZCALLBACK cb_swrite (voidpf /*opaque*/, voidpf stream, const void* buf, uLong size) { in cb_swrite()
165 return (uLong)0; in cb_swrite()
/AOO41X/main/filter/source/flash/
H A Dswfwriter1.cxx864 uLong alpha_compressed_size = 0; in defineBitmap()