Lines Matching refs:num

45  *	tcp_seq begin: starting seq num of the new blk.
46 * tcp_seq end: ending seq num of the new blk.
47 * int32_t *num: (referenced) total num of SACK blks on the list.
50 tcp_sack_insert(sack_blk_t *head, tcp_seq begin, tcp_seq end, int32_t *num)
56 if (*num == 0) {
59 *num = 1;
75 old_num = *num;
120 *num = new_num + 1;
129 * tcp_seq end: to remove all sack blk with seq num less than end.
130 * int32_t *num: (referenced) total num of SACK blks in the array.
133 tcp_sack_remove(sack_blk_t *head, tcp_seq end, int32_t *num)
138 if (*num == 0)
141 old_num = *num;
172 *num = new_num;
185 * tcp_seq begin: starting seq num of the SACK info.
186 * tcp_seq end: ending seq num of the SACK info.
187 * int32_t *num: (referenced) total num of notsack'ed blk on the list.
188 * uint32_t *sum: (referenced) total num of bytes of all the notsack'ed
193 int32_t *num, uint32_t *sum)
239 (*num)--;
268 (*num)++;
280 tmp_num = *num;
320 *num = tmp_num;
331 * tcp_seq end: to remove all notsack'ed blk with seq num less than end.
332 * int32_t *num: (referenced) total num of notsack'ed blks.
333 * uint32_t *sum: (referenced) total num of bytes of all the notsack'ed
337 tcp_notsack_remove(notsack_blk_t **head, tcp_seq end, int32_t *num,
356 (*num)--;
385 * tcp_seq begin: beginning seq num of new data.
386 * tcp_seq end: ending seq num of new data.
387 * int32_t *num: (referenced) total num of notsack'ed blks.
388 * uint32_t *sum: (referenced) total num of bytes of all the notsack'ed
392 int32_t *num, uint32_t *sum)
408 *num = 1;
435 (*num)++;