Home | History | Annotate | Download | only in common

Lines Matching full:lzo_uint

91 /* lzo_uint must match size_t */
95 typedef unsigned __int64 lzo_uint;
98 typedef lzo_ullong_t lzo_uint;
106 typedef unsigned int lzo_uint;
113 typedef unsigned long lzo_uint;
120 # error "lzo_uint"
124 /* The larger type of lzo_uint and lzo_uint32_t. */
126 # define lzo_xint lzo_uint
134 LZO_COMPILE_TIME_ASSERT_HEADER(sizeof(lzo_uint) == LZO_SIZEOF_LZO_UINT)
135 LZO_COMPILE_TIME_ASSERT_HEADER(sizeof(lzo_xint) >= sizeof(lzo_uint))
149 #define lzo_uintp lzo_uint __LZO_MMODEL *
182 LZO_COMPILE_TIME_ASSERT_HEADER(sizeof(lzo_uint) >= 4)
183 /* Strange configurations where sizeof(lzo_uint) != sizeof(size_t) should
186 LZO_COMPILE_TIME_ASSERT_HEADER(sizeof(lzo_uint) == sizeof(size_t))
187 LZO_COMPILE_TIME_ASSERT_HEADER(sizeof(lzo_uint) == sizeof(ptrdiff_t))
188 LZO_COMPILE_TIME_ASSERT_HEADER(sizeof(lzo_uint) == sizeof(lzo_uintptr_t))
235 (__LZO_CDECL *lzo_compress_t) ( const lzo_bytep src, lzo_uint src_len,
240 (__LZO_CDECL *lzo_decompress_t) ( const lzo_bytep src, lzo_uint src_len,
245 (__LZO_CDECL *lzo_optimize_t) ( lzo_bytep src, lzo_uint src_len,
250 (__LZO_CDECL *lzo_compress_dict_t)(const lzo_bytep src, lzo_uint src_len,
253 const lzo_bytep dict, lzo_uint dict_len );
256 (__LZO_CDECL *lzo_decompress_dict_t)(const lzo_bytep src, lzo_uint src_len,
259 const lzo_bytep dict, lzo_uint dict_len );
271 (lzo_callback_p self, lzo_uint items, lzo_uint size);
277 (lzo_callback_p, lzo_uint, lzo_uint, int);
332 (int)sizeof(long),(int)sizeof(lzo_uint32_t),(int)sizeof(lzo_uint),\
346 lzo_memcmp(const lzo_voidp a, const lzo_voidp b, lzo_uint len);
348 lzo_memcpy(lzo_voidp dst, const lzo_voidp src, lzo_uint len);
350 lzo_memmove(lzo_voidp dst, const lzo_voidp src, lzo_uint len);
352 lzo_memset(lzo_voidp buf, int c, lzo_uint len);
356 lzo_adler32(lzo_uint32_t c, const lzo_bytep buf, lzo_uint len);
358 lzo_crc32(lzo_uint32_t c, const lzo_bytep buf, lzo_uint len);
365 lzo_voidp a00; lzo_bytep a01; lzo_uint a02; lzo_xint a03; lzo_uintptr_t a04;
373 LZO_EXTERN(unsigned) __lzo_align_gap(const lzo_voidp p, lzo_uint size);
375 ((p) + (lzo_uint) __lzo_align_gap((const lzo_voidp)(p),(lzo_uint)(size)))
400 typedef union { lzo_bytep a; lzo_uint b; } __lzo_pu_u;