HomeSort by relevance Sort by last modified time
    Searched refs:uInt (Results 101 - 125 of 160) sorted by null

1 2 3 45 6 7

  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/
zconf.h 51 # define uInt z_uInt
263 typedef unsigned int uInt; /* 16 bits or more */
274 typedef uInt FAR uIntf;
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
zconf.h 51 # define uInt z_uInt
263 typedef unsigned int uInt; /* 16 bits or more */
274 typedef uInt FAR uIntf;
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/
zconf.h 51 # define uInt z_uInt
263 typedef unsigned int uInt; /* 16 bits or more */
274 typedef uInt FAR uIntf;
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/
zconf.h 51 # define uInt z_uInt
263 typedef unsigned int uInt; /* 16 bits or more */
274 typedef uInt FAR uIntf;
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/
zconf.h 51 # define uInt z_uInt
263 typedef unsigned int uInt; /* 16 bits or more */
274 typedef uInt FAR uIntf;
  /prebuilt/ndk/android-ndk-r7/platforms/android-14/arch-arm/usr/include/
zconf.h 51 # define uInt z_uInt
263 typedef unsigned int uInt; /* 16 bits or more */
274 typedef uInt FAR uIntf;
  /prebuilt/ndk/android-ndk-r7/platforms/android-14/arch-x86/usr/include/
zconf.h 51 # define uInt z_uInt
263 typedef unsigned int uInt; /* 16 bits or more */
274 typedef uInt FAR uIntf;
  /prebuilt/ndk/android-ndk-r7/platforms/android-3/arch-arm/usr/include/
zconf.h 51 # define uInt z_uInt
263 typedef unsigned int uInt; /* 16 bits or more */
274 typedef uInt FAR uIntf;
  /prebuilt/ndk/android-ndk-r7/platforms/android-3/arch-x86/usr/include/
zconf.h 51 # define uInt z_uInt
263 typedef unsigned int uInt; /* 16 bits or more */
274 typedef uInt FAR uIntf;
  /prebuilt/ndk/android-ndk-r7/platforms/android-4/arch-arm/usr/include/
zconf.h 51 # define uInt z_uInt
263 typedef unsigned int uInt; /* 16 bits or more */
274 typedef uInt FAR uIntf;
  /prebuilt/ndk/android-ndk-r7/platforms/android-4/arch-x86/usr/include/
zconf.h 51 # define uInt z_uInt
263 typedef unsigned int uInt; /* 16 bits or more */
274 typedef uInt FAR uIntf;
  /prebuilt/ndk/android-ndk-r7/platforms/android-5/arch-arm/usr/include/
zconf.h 51 # define uInt z_uInt
263 typedef unsigned int uInt; /* 16 bits or more */
274 typedef uInt FAR uIntf;
  /prebuilt/ndk/android-ndk-r7/platforms/android-5/arch-x86/usr/include/
zconf.h 51 # define uInt z_uInt
263 typedef unsigned int uInt; /* 16 bits or more */
274 typedef uInt FAR uIntf;
  /prebuilt/ndk/android-ndk-r7/platforms/android-8/arch-arm/usr/include/
zconf.h 51 # define uInt z_uInt
263 typedef unsigned int uInt; /* 16 bits or more */
274 typedef uInt FAR uIntf;
  /prebuilt/ndk/android-ndk-r7/platforms/android-8/arch-x86/usr/include/
zconf.h 51 # define uInt z_uInt
263 typedef unsigned int uInt; /* 16 bits or more */
274 typedef uInt FAR uIntf;
  /prebuilt/ndk/android-ndk-r7/platforms/android-9/arch-arm/usr/include/
zconf.h 51 # define uInt z_uInt
263 typedef unsigned int uInt; /* 16 bits or more */
274 typedef uInt FAR uIntf;
  /prebuilt/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/
zconf.h 51 # define uInt z_uInt
263 typedef unsigned int uInt; /* 16 bits or more */
274 typedef uInt FAR uIntf;
  /external/zlib/contrib/minizip/
unzip.c 147 uInt size_local_extrafield;/* size of the local extra field */
856 ptm->tm_mday = (uInt)(uDate&0x1f) ;
857 ptm->tm_mon = (uInt)((((uDate)&0x1E0)/0x20)-1) ;
858 ptm->tm_year = (uInt)(((uDate&0x0FE00)/0x0200)+1980) ;
860 ptm->tm_hour = (uInt) ((ulDosDate &0xF800)/0x800);
861 ptm->tm_min = (uInt) ((ulDosDate&0x7E0)/0x20) ;
862 ptm->tm_sec = (uInt) (2*(ulDosDate&0x1f)) ;
    [all...]
  /external/zlib/
deflate.c 85 local void putShortMSB OF((deflate_state *s, uInt b));
90 uInt longest_match OF((deflate_state *s, IPos cur_match));
92 local uInt longest_match OF((deflate_state *s, IPos cur_match));
314 uInt dictLength;
317 uInt length = dictLength;
318 uInt n;
550 uInt b;
655 uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8;
656 uInt level_flags;
675 putShortMSB(s, (uInt)(strm->adler >> 16))
    [all...]
gzio.c 39 extern voidp malloc OF((uInt size));
267 s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE, s->file);
293 uInt len;
303 len = (uInt)fread(s->inbuf + len, 1, Z_BUFSIZE >> len, s->file);
334 len = (uInt)get_byte(s);
335 len += ((uInt)get_byte(s))<<8;
429 uInt n = s->stream.avail_in;
441 (uInt)fread(next_out, 1, s->stream.avail_out, s->file);
452 s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE, s->file);
470 s->crc = crc32(s->crc, start, (uInt)(s->stream.next_out - start))
    [all...]
gzguts.h 46 extern voidp malloc OF((uInt size));
zconf.h 120 # define uInt z_uInt
335 typedef unsigned int uInt; /* 16 bits or more */
346 typedef uInt FAR uIntf;
zutil.h 239 void ZLIB_INTERNAL zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
240 int ZLIB_INTERNAL zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len));
241 void ZLIB_INTERNAL zmemzero OF((Bytef* dest, uInt len));
  /external/qemu/distrib/zlib-1.2.3/
gzio.c 39 extern voidp malloc OF((uInt size));
267 s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE, s->file);
293 uInt len;
303 len = (uInt)fread(s->inbuf + len, 1, Z_BUFSIZE >> len, s->file);
334 len = (uInt)get_byte(s);
335 len += ((uInt)get_byte(s))<<8;
429 uInt n = s->stream.avail_in;
441 (uInt)fread(next_out, 1, s->stream.avail_out, s->file);
452 s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE, s->file);
470 s->crc = crc32(s->crc, start, (uInt)(s->stream.next_out - start))
    [all...]
zutil.h 235 extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
236 extern int zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len));
237 extern void zmemzero OF((Bytef* dest, uInt len));

Completed in 419 milliseconds

1 2 3 45 6 7