Lines Matching full:limit
39 /// \param limit How many bytes to compare at most, including the
43 /// the specified limit from both buf1 and buf2.
46 /// This is always at least len and at most limit.
54 uint32_t len, uint32_t limit) in lzma_memcmplen() argument
56 assert(len <= limit); in lzma_memcmplen()
57 assert(limit <= UINT32_MAX / 2); in lzma_memcmplen()
82 while (len < limit) { in lzma_memcmplen()
100 return my_min(len, limit); in lzma_memcmplen()
106 return limit; in lzma_memcmplen()
122 while (len < limit) { in lzma_memcmplen()
130 return my_min(len, limit); in lzma_memcmplen()
136 return limit; in lzma_memcmplen()
141 while (len < limit) { in lzma_memcmplen()
152 return my_min(len, limit); in lzma_memcmplen()
158 return limit; in lzma_memcmplen()
163 while (len < limit) { in lzma_memcmplen()
174 return my_min(len, limit); in lzma_memcmplen()
180 return limit; in lzma_memcmplen()
185 while (len < limit && buf1[len] == buf2[len]) in lzma_memcmplen()