• Home
  • Raw
  • Download

Lines Matching refs:size_t

32 	size_t max_len;
38 static inline size_t get_match_len(const u8 *ptr, const u8 *end, const u8 *prev, in get_match_len()
39 size_t max_len) in get_match_len()
41 size_t len = 0; in get_match_len()
48 static size_t longest_match_std(const u8 *src, struct lznt *ctx) in longest_match_std()
50 size_t hash_index; in longest_match_std()
51 size_t len1 = 0, len2 = 0; in longest_match_std()
89 static size_t longest_match_best(const u8 *src, struct lznt *ctx) in longest_match_best()
91 size_t max_len; in longest_match_best()
99 size_t len = in longest_match_best()
110 static const size_t s_max_len[] = {
114 static const size_t s_max_off[] = {
118 static inline u16 make_pair(size_t offset, size_t len, size_t index) in make_pair()
124 static inline size_t parse_pair(u16 pair, size_t *offset, size_t index) in parse_pair()
138 static inline int compress_chunk(size_t (*match)(const u8 *, struct lznt *), in compress_chunk()
140 u8 *cmpr_end, size_t *cmpr_chunk_size, in compress_chunk()
143 size_t cnt = 0; in compress_chunk()
144 size_t idx = 0; in compress_chunk()
164 size_t max_len; in compress_chunk()
232 size_t bit = 0; in decompress_chunk()
233 size_t index = 0; in decompress_chunk()
235 size_t offset, length; in decompress_chunk()
315 size_t compress_lznt(const void *unc, size_t unc_size, void *cmpr, in compress_lznt()
316 size_t cmpr_size, struct lznt *ctx) in compress_lznt()
319 size_t (*match)(const u8 *src, struct lznt *ctx); in compress_lznt()
356 ssize_t decompress_lznt(const void *cmpr, size_t cmpr_size, void *unc, in decompress_lznt()
357 size_t unc_size) in decompress_lznt()
375 size_t chunk_size_saved; in decompress_lznt()
376 size_t unc_use; in decompress_lznt()
377 size_t cmpr_use = 3 + (chunk_hdr & (LZNT_CHUNK_SIZE - 1)); in decompress_lznt()
432 size_t t1 = chunk_size_saved - unc_use; in decompress_lznt()