mirror of
https://github.com/cuberite/libdeflate.git
synced 2025-09-08 11:50:00 -04:00
hc_matchfinder: fix some comments
This commit is contained in:
parent
93a06e313e
commit
6ca065f9f8
@ -162,9 +162,9 @@ hc_matchfinder_slide_window(struct hc_matchfinder *mf)
|
|||||||
* Location of a pointer which points to the place in the input data the
|
* Location of a pointer which points to the place in the input data the
|
||||||
* matchfinder currently stores positions relative to. This may be updated
|
* matchfinder currently stores positions relative to. This may be updated
|
||||||
* by this function.
|
* by this function.
|
||||||
* @cur_pos
|
* @in_next
|
||||||
* The current position in the input buffer relative to @in_base (the
|
* Pointer to the next position in the input buffer, i.e. the sequence
|
||||||
* position of the sequence being matched against).
|
* being matched against.
|
||||||
* @best_len
|
* @best_len
|
||||||
* Require a match longer than this length.
|
* Require a match longer than this length.
|
||||||
* @max_len
|
* @max_len
|
||||||
@ -351,16 +351,16 @@ out:
|
|||||||
* Location of a pointer which points to the place in the input data the
|
* Location of a pointer which points to the place in the input data the
|
||||||
* matchfinder currently stores positions relative to. This may be updated
|
* matchfinder currently stores positions relative to. This may be updated
|
||||||
* by this function.
|
* by this function.
|
||||||
* @cur_pos
|
* @in_next
|
||||||
* The current position in the input buffer relative to @in_base.
|
* Pointer to the next position in the input buffer.
|
||||||
* @end_pos
|
* @in_end
|
||||||
* The end position of the input buffer, relative to @in_base.
|
* Pointer to the end of the input buffer.
|
||||||
|
* @count
|
||||||
|
* The number of bytes to advance. Must be > 0.
|
||||||
* @next_hashes
|
* @next_hashes
|
||||||
* The precomputed hash codes for the sequence beginning at @in_next.
|
* The precomputed hash codes for the sequence beginning at @in_next.
|
||||||
* These will be used and then updated with the precomputed hashcodes for
|
* These will be used and then updated with the precomputed hashcodes for
|
||||||
* the sequence beginning at @in_next + @count.
|
* the sequence beginning at @in_next + @count.
|
||||||
* @count
|
|
||||||
* The number of bytes to advance. Must be > 0.
|
|
||||||
*
|
*
|
||||||
* Returns @in_next + @count.
|
* Returns @in_next + @count.
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user