Eneboo - Documentación para desarrolladores
'defines' | Funciones
Referencia del Archivo src/qt/src/3rdparty/zlib/inflate.c
#include "zutil.h"
#include "inftrees.h"
#include "inflate.h"
#include "inffast.h"
#include "inffixed.h"

'defines'

#define UPDATE(check, buf, len)   (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
#define CRC2(check, word)
#define CRC4(check, word)
#define LOAD()
#define RESTORE()
#define INITBITS()
#define PULLBYTE()
#define NEEDBITS(n)
#define BITS(n)   ((unsigned)hold & ((1U << (n)) - 1))
#define DROPBITS(n)
#define BYTEBITS()
#define REVERSE(q)

Funciones

local void fixedtables OF ((struct inflate_state FAR *state))
local int updatewindow OF ((z_streamp strm, unsigned out))
local unsigned syncsearch OF ((unsigned FAR *have, unsigned char FAR *buf, unsigned len))
int ZEXPORT inflateReset (z_streamp strm)
int ZEXPORT inflateInit2_ (z_streamp strm, int windowBits, const char *version, int stream_size)
int ZEXPORT inflateInit_ (z_streamp strm, const char *version, int stream_size)
local void fixedtables (struct inflate_state FAR *state)
local int updatewindow (z_streamp strm, unsigned out)
int ZEXPORT inflate (z_streamp strm, int flush)
int ZEXPORT inflateEnd (z_streamp strm)
int ZEXPORT inflateSetDictionary (z_streamp strm, const Bytef *dictionary, uInt dictLength)
local unsigned syncsearch (unsigned FAR *have, unsigned char FAR *buf, unsigned len)
int ZEXPORT inflateSync (z_streamp strm)
int ZEXPORT inflateSyncPoint (z_streamp strm)
int ZEXPORT inflateCopy (z_streamp dest, z_streamp source)

Documentación de los 'defines'

#define BITS (   n)    ((unsigned)hold & ((1U << (n)) - 1))
#define BYTEBITS ( )
Valor:
do { \
        hold >>= bits & 7; \
        bits -= bits & 7; \
    } while (0)
#define CRC2 (   check,
  word 
)
Valor:
do { \
        hbuf[0] = (unsigned char)(word); \
        hbuf[1] = (unsigned char)((word) >> 8); \
        check = crc32(check, hbuf, 2); \
    } while (0)
#define CRC4 (   check,
  word 
)
Valor:
do { \
        hbuf[0] = (unsigned char)(word); \
        hbuf[1] = (unsigned char)((word) >> 8); \
        hbuf[2] = (unsigned char)((word) >> 16); \
        hbuf[3] = (unsigned char)((word) >> 24); \
        check = crc32(check, hbuf, 4); \
    } while (0)
#define DROPBITS (   n)
Valor:
do { \
        hold >>= (n); \
        bits -= (unsigned)(n); \
    } while (0)
#define INITBITS ( )
Valor:
do { \
        hold = 0; \
        bits = 0; \
    } while (0)
#define LOAD ( )
Valor:
do { \
        put = strm->next_out; \
        left = strm->avail_out; \
        next = strm->next_in; \
        have = strm->avail_in; \
        hold = state->hold; \
        bits = state->bits; \
    } while (0)
#define NEEDBITS (   n)
Valor:
do { \
        while (bits < (unsigned)(n)) \
            PULLBYTE(); \
    } while (0)
#define PULLBYTE ( )
Valor:
do { \
        if (have == 0) goto inf_leave; \
        have--; \
        hold += (unsigned long)(*next++) << bits; \
        bits += 8; \
    } while (0)
#define RESTORE ( )
Valor:
do { \
        strm->next_out = put; \
        strm->avail_out = left; \
        strm->next_in = next; \
        strm->avail_in = have; \
        state->hold = hold; \
        state->bits = bits; \
    } while (0)
#define REVERSE (   q)
Valor:
((((q) >> 24) & 0xff) + (((q) >> 8) & 0xff00) + \
     (((q) & 0xff00) << 8) + (((q) & 0xff) << 24))
#define UPDATE (   check,
  buf,
  len 
)    (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))

Documentación de las funciones

local void fixedtables ( struct inflate_state FAR *  state)
int ZEXPORT inflate ( z_streamp  strm,
int  flush 
)
int ZEXPORT inflateCopy ( z_streamp  dest,
z_streamp  source 
)
int ZEXPORT inflateEnd ( z_streamp  strm)
int ZEXPORT inflateInit2_ ( z_streamp  strm,
int  windowBits,
const char *  version,
int  stream_size 
)
int ZEXPORT inflateInit_ ( z_streamp  strm,
const char *  version,
int  stream_size 
)
int ZEXPORT inflateReset ( z_streamp  strm)
int ZEXPORT inflateSetDictionary ( z_streamp  strm,
const Bytef dictionary,
uInt  dictLength 
)
int ZEXPORT inflateSync ( z_streamp  strm)
int ZEXPORT inflateSyncPoint ( z_streamp  strm)
local int updatewindow OF ( (z_streamp strm, unsigned out )
local void fixedtables OF ( (struct inflate_state FAR *state )
local unsigned syncsearch OF ( (unsigned FAR *have, unsigned char FAR *buf, unsigned len )
local unsigned syncsearch ( unsigned FAR *  have,
unsigned char FAR *  buf,
unsigned  len 
)
local int updatewindow ( z_streamp  strm,
unsigned  out 
)
 Todo Clases Namespaces Archivos Funciones Variables 'typedefs' Enumeraciones Valores de enumeraciones Propiedades Amigas 'defines'