Lines Matching defs:lzo_uint

114 /* lzo_uint should match size_t */
118 typedef unsigned __int64 lzo_uint;
121 typedef unsigned long long lzo_uint;
128 typedef unsigned int lzo_uint;
134 typedef unsigned long lzo_uint;
140 # error "lzo_uint"
167 # define lzo_uint64 lzo_uint
184 /* The larger type of lzo_uint and lzo_uint32. */
186 # define lzo_xint lzo_uint
191 /* Memory model that allows to access memory at offsets of lzo_uint. */
215 #define lzo_uintp lzo_uint __LZO_MMODEL *
265 (__LZO_CDECL *lzo_compress_t) ( const lzo_bytep src, lzo_uint src_len,
270 (__LZO_CDECL *lzo_decompress_t) ( const lzo_bytep src, lzo_uint src_len,
275 (__LZO_CDECL *lzo_optimize_t) ( lzo_bytep src, lzo_uint src_len,
280 (__LZO_CDECL *lzo_compress_dict_t)(const lzo_bytep src, lzo_uint src_len,
283 const lzo_bytep dict, lzo_uint dict_len );
286 (__LZO_CDECL *lzo_decompress_dict_t)(const lzo_bytep src, lzo_uint src_len,
289 const lzo_bytep dict, lzo_uint dict_len );
301 (lzo_callback_p self, lzo_uint items, lzo_uint size);
307 (lzo_callback_p, lzo_uint, lzo_uint, int);
359 (int)sizeof(long),(int)sizeof(lzo_uint32),(int)sizeof(lzo_uint),\
373 lzo_memcmp(const lzo_voidp a, const lzo_voidp b, lzo_uint len);
375 lzo_memcpy(lzo_voidp dst, const lzo_voidp src, lzo_uint len);
377 lzo_memmove(lzo_voidp dst, const lzo_voidp src, lzo_uint len);
379 lzo_memset(lzo_voidp buf, int c, lzo_uint len);
383 lzo_adler32(lzo_uint32 c, const lzo_bytep buf, lzo_uint len);
385 lzo_crc32(lzo_uint32 c, const lzo_bytep buf, lzo_uint len);
391 typedef union { lzo_bytep p; lzo_uint u; } __lzo_pu_u;
393 typedef union { void *vp; lzo_bytep bp; lzo_uint u; lzo_uint32 u32; unsigned long l; } lzo_align_t;
396 LZO_EXTERN(unsigned) __lzo_align_gap(const lzo_voidp p, lzo_uint size);
398 ((p) + (lzo_uint) __lzo_align_gap((const lzo_voidp)(p),(lzo_uint)(size)))