Lines Matching refs:num

51  *	tcp_seq begin: starting seq num of the new blk.
52 * tcp_seq end: ending seq num of the new blk.
53 * int32_t *num: (referenced) total num of SACK blks on the list.
56 tcp_sack_insert(sack_blk_t *head, tcp_seq begin, tcp_seq end, int32_t *num)
62 if (*num == 0) {
65 *num = 1;
81 old_num = *num;
126 *num = new_num + 1;
135 * tcp_seq end: to remove all sack blk with seq num less than end.
136 * int32_t *num: (referenced) total num of SACK blks in the array.
139 tcp_sack_remove(sack_blk_t *head, tcp_seq end, int32_t *num)
144 if (*num == 0)
147 old_num = *num;
178 *num = new_num;
191 * tcp_seq begin: starting seq num of the SACK info.
192 * tcp_seq end: ending seq num of the SACK info.
193 * int32_t *num: (referenced) total num of notsack'ed blk on the list.
194 * uint32_t *sum: (referenced) total num of bytes of all the notsack'ed
199 int32_t *num, uint32_t *sum)
245 (*num)--;
273 (*num)++;
285 tmp_num = *num;
325 *num = tmp_num;
336 * tcp_seq end: to remove all notsack'ed blk with seq num less than end.
337 * int32_t *num: (referenced) total num of notsack'ed blks.
338 * uint32_t *sum: (referenced) total num of bytes of all the notsack'ed
342 tcp_notsack_remove(notsack_blk_t **head, tcp_seq end, int32_t *num,
361 (*num)--;
392 * tcp_seq begin: beginning seq num of new data.
393 * tcp_seq end: ending seq num of new data.
394 * int32_t *num: (referenced) total num of notsack'ed blks.
395 * uint32_t *sum: (referenced) total num of bytes of all the notsack'ed
399 int32_t *num, uint32_t *sum)
415 *num = 1;
443 (*num)++;