Update contrib.
1 /* Portions Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
5 /* zutil.cpp -- target dependent utility functions for the compression library
6 * Copyright (C) 1995-2005 Jean-loup Gailly.
7 * For conditions of distribution and use, see copyright notice in zlib.h
12 #ifdef SYMBIAN_EZLIB_DEVICE
20 struct internal_state {int dummy;}; /* for buggy compilers */
24 const char * const z_errmsg[10] = {
25 "need dictionary", /* Z_NEED_DICT 2 */
26 "stream end", /* Z_STREAM_END 1 */
28 "file error", /* Z_ERRNO (-1) */
29 "stream error", /* Z_STREAM_ERROR (-2) */
30 "data error", /* Z_DATA_ERROR (-3) */
31 "insufficient memory", /* Z_MEM_ERROR (-4) */
32 "buffer error", /* Z_BUF_ERROR (-5) */
33 "incompatible version",/* Z_VERSION_ERROR (-6) */
38 EXPORT_C const char * zlibVersion_r()
40 const char * ZEXPORT zlibVersion()
41 #endif //__SYMBIAN32__
48 EXPORT_C uLong zlibCompileFlags_r()
50 uLong ZEXPORT zlibCompileFlags()
51 #endif //__SYMBIAN32__
56 switch (sizeof(uInt)) {
58 case 4: flags += 1; break;
59 case 8: flags += 2; break;
62 switch (sizeof(uLong)) {
64 case 4: flags += 1 << 2; break;
65 case 8: flags += 2 << 2; break;
66 default: flags += 3 << 2;
68 switch (sizeof(voidpf)) {
70 case 4: flags += 1 << 4; break;
71 case 8: flags += 2 << 4; break;
72 default: flags += 3 << 4;
74 switch (sizeof(z_off_t)) {
76 case 4: flags += 1 << 6; break;
77 case 8: flags += 2 << 6; break;
78 default: flags += 3 << 6;
83 #if defined(ASMV) || defined(ASMINF)
92 #ifdef DYNAMIC_CRC_TABLE
101 #ifdef PKZIP_BUG_WORKAROUND
110 # ifdef HAS_vsprintf_void
114 # ifdef HAS_vsnprintf_void
122 # ifdef HAS_sprintf_void
126 # ifdef HAS_snprintf_void
139 int z_verbose = verbose;
144 fprintf(stderr, "%s\n", m);
150 /* exported to allow conversion of error code to string for compress() and
154 EXPORT_C const char * zError_r(int err)
156 const char * ZEXPORT zError(err)
158 #endif //__SYMBIAN32__
164 #if defined(_WIN32_WCE)
165 /* The Microsoft C Run-Time Library for Windows CE doesn't have
166 * errno. We define it as a global variable to simplify porting.
167 * Its value is always 0 and should not be used.
175 void zmemcpy( Bytef* dest,const Bytef* source,uInt len)
177 void zmemcpy(dest, source, len)
181 #endif //__SYMBIAN32__
183 if (len == 0) return;
185 *dest++ = *source++; /* ??? to be unrolled */
186 } while (--len != 0);
190 int zmemcmp( const Bytef* s1, const Bytef* s2,uInt len)
192 int zmemcmp(s1, s2, len)
196 #endif //__SYMBIAN32__
200 for (j = 0; j < len; j++) {
201 if (s1[j] != s2[j]) return 2*(s1[j] > s2[j])-1;
207 void zmemzero( Bytef* dest,uInt len)
209 void zmemzero(dest, len)
212 #endif //__SYMBIAN32__
214 if (len == 0) return;
216 *dest++ = 0; /* ??? to be unrolled */
217 } while (--len != 0);
225 /* Turbo C in 16-bit mode */
229 /* Turbo C malloc() does not allow dynamic allocation of 64K bytes
230 * and farmalloc(64K) returns a pointer with an offset of 8, so we
231 * must fix the pointer. Warning: the pointer must be put back to its
232 * original form in order to free it, use zcfree().
238 local int next_ptr = 0;
240 typedef struct ptr_table_s {
245 local ptr_table table[MAX_PTR];
246 /* This table is used to remember the original form of pointers
247 * to large buffers (64K). Such pointers are normalized with a zero offset.
248 * Since MSDOS is not a preemptive multitasking OS, this table is not
249 * protected from concurrent access. This hack doesn't work anyway on
250 * a protected system like OS/2. Use Microsoft C instead.
253 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size)
255 voidpf buf = opaque; /* just to make some compilers happy */
256 ulg bsize = (ulg)items*size;
258 /* If we allocate less than 65520 bytes, we assume that farmalloc
259 * will return a usable pointer which doesn't have to be normalized.
261 if (bsize < 65520L) {
262 buf = farmalloc(bsize);
263 if (*(ush*)&buf != 0) return buf;
265 buf = farmalloc(bsize + 16L);
267 if (buf == NULL || next_ptr >= MAX_PTR) return NULL;
268 table[next_ptr].org_ptr = buf;
270 /* Normalize the pointer to seg:0 */
271 *((ush*)&buf+1) += ((ush)((uch*)buf-0) + 15) >> 4;
273 table[next_ptr++].new_ptr = buf;
277 void zcfree (voidpf opaque, voidpf ptr)
280 if (*(ush*)&ptr != 0) { /* object < 64K */
284 /* Find the original pointer */
285 for (n = 0; n < next_ptr; n++) {
286 if (ptr != table[n].new_ptr) continue;
288 farfree(table[n].org_ptr);
289 while (++n < next_ptr) {
290 table[n-1] = table[n];
295 ptr = opaque; /* just to make some compilers happy */
296 Assert(0, "zcfree: ptr not found");
299 #endif /* __TURBOC__ */
303 /* Microsoft C in 16-bit mode */
307 #if (!defined(_MSC_VER) || (_MSC_VER <= 600))
308 # define _halloc halloc
309 # define _hfree hfree
312 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size)
314 if (opaque) opaque = 0; /* to make compiler happy */
315 return _halloc((long)items, size);
318 void zcfree (voidpf opaque, voidpf ptr)
320 if (opaque) opaque = 0; /* to make compiler happy */
326 #endif /* SYS16BIT */
330 #ifndef MY_ZCALLOC /* Any system without a special alloc function */
333 extern voidp malloc OF((uInt size));
334 extern voidp calloc OF((uInt items, uInt size));
335 extern void free OF((voidpf ptr));
339 voidpf zcalloc (voidpf opaque,unsigned items, unsigned size)
341 voidpf zcalloc (opaque, items, size)
345 #endif //__SYMBIAN32__
347 if (opaque) items += size - size; /* make compiler happy */
348 #ifndef SYMBIAN_EZLIB_DEVICE
349 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) : (voidpf)calloc(items, size);
351 TInt bytes = items*size;
352 TAny *ptr = User::AllocZ(bytes); // Symbian Native memory allocation API
354 #endif //SYMBIAN_EZLIB_DEVICE
358 void zcfree (voidpf opaque,voidpf ptr)
360 void zcfree (opaque, ptr)
363 #endif //__SYMBIAN32__
365 #ifndef SYMBIAN_EZLIB_DEVICE
368 User::Free(ptr); // Symbian Native memory deallocation API
369 #endif //SYMBIAN_EZLIB_DEVICE
370 if (opaque) return; /* make compiler happy */
373 #endif /* MY_ZCALLOC */