HomeSort by: relevance | last modified time | path
    Searched refs:tp1 (Results 1 - 15 of 15) sorted by relevancy

  /src/sys/netinet/
sctp_var.h 112 #define sctp_flight_size_decrease(tp1) do { \
113 if (tp1->whoTo->flight_size >= tp1->book_size) \
114 tp1->whoTo->flight_size -= tp1->book_size; \
116 tp1->whoTo->flight_size = 0; \
119 #define sctp_flight_size_increase(tp1) do { \
120 (tp1)->whoTo->flight_size += (tp1)->book_size; \
123 #define sctp_total_flight_decrease(stcb, tp1) do {
    [all...]
sctp_indata.c 2707 struct sctp_tmit_chunk *tp1; local in function:sctp_handle_segments
2725 tp1 = NULL;
2741 if (tp1 == NULL) {
2742 tp1 = TAILQ_FIRST(&asoc->sent_queue);
2766 tp1 = TAILQ_FIRST(&asoc->sent_queue);
2771 while (tp1) {
2773 if (tp1->rec.data.doing_fast_retransmit)
2777 if (tp1->rec.data.TSN_seq == j) {
2778 if (tp1->sent != SCTP_DATAGRAM_UNSENT) {
2781 if (tp1->sent < SCTP_DATAGRAM_ACKED)
2869 struct sctp_tmit_chunk *tp1; local in function:sctp_check_for_revoked
2932 struct sctp_tmit_chunk *tp1; local in function:sctp_strike_gap_ack_chunks
3192 struct sctp_tmit_chunk *tp1, *tp2, *a_adv=NULL; local in function:sctp_try_advance_peer_ack_point
3471 struct sctp_tmit_chunk *tp1, *tp2; local in function:sctp_handle_sack
    [all...]
sctp_input.c 2379 struct sctp_tmit_chunk *tp1; local in function:process_chunk_drop
2381 tp1 = TAILQ_FIRST(&stcb->asoc.sent_queue);
2382 while (tp1) {
2383 if (tp1->rec.data.TSN_seq == tsn) {
2387 if (compare_with_wrap(tp1->rec.data.TSN_seq, tsn,
2390 tp1 = NULL;
2393 tp1 = TAILQ_NEXT(tp1, sctp_next);
2395 if (tp1 == NULL) {
2398 tp1 = TAILQ_FIRST(&stcb->asoc.sent_queue)
    [all...]
sctputil.c 3335 struct sctp_tmit_chunk *tp1)
3337 if (tp1->data == NULL) {
3343 tp1->book_size,
3345 tp1->mbcnt);
3347 if (asoc->total_output_queue_size >= tp1->book_size) {
3348 asoc->total_output_queue_size -= tp1->book_size;
3354 if (asoc->total_output_mbuf_queue_size >= tp1->mbcnt) {
3355 asoc->total_output_mbuf_queue_size -= tp1->mbcnt;
3361 if (stcb->sctp_socket->so_snd.sb_cc >= tp1->book_size) {
3362 stcb->sctp_socket->so_snd.sb_cc -= tp1->book_size
    [all...]
sctp_output.c 7548 struct sctp_tmit_chunk *at, *tp1, *last; local in function:send_forward_tsn
7596 tp1 = TAILQ_NEXT(at, sctp_next);
7597 at = tp1;
7633 tp1 = TAILQ_NEXT(at, sctp_next);
7637 at = tp1;
7643 at = tp1;
  /src/sbin/cgdconfig/
argon2_utils.c 88 struct timespec tp1, tp2; local in function:argon2id_calibrate
113 if (clock_gettime(CLOCK_MONOTONIC, &tp1) == -1)
126 if (timespeccmp(&tp1, &tp2, >))
128 timespecsub(&tp2, &tp1, &delta);
144 if (clock_gettime(CLOCK_MONOTONIC, &tp1) == -1)
157 if (timespeccmp(&tp1, &tp2, >))
159 timespecsub(&tp2, &tp1, &delta);
  /src/usr.bin/xlint/lint2/
chk.c 242 type_t *tp1, *tp2; local in function:chkvtui
254 t1 = (tp1 = TP(def->s_type)->t_subt)->t_tspec;
257 eq = types_compatible(tp1, tp2,
304 const type_t *tp1 = TP(def->s_type); local in function:chkvtdi
310 bool is_func = tp1->t_tspec == FUNC && tp2->t_tspec == FUNC;
311 const type_t *xt1 = is_func ? tp1->t_subt : tp1;
341 const type_t *tp1, *tp2, **ap1, **ap2; local in function:chkfaui
355 tp1 = NULL;
358 if ((tp1 = TP(def->s_type))->t_tspec != FUNC
1130 const type_t **ap1, **ap2, *tp1, *tp2; local in function:check_argument_declarations
    [all...]
  /src/lib/libcrypt/
crypt-argon2.c 154 struct timespec tp1, tp2, delta; local in function:estimate_argon2_params
213 if (clock_gettime(CLOCK_MONOTONIC, &tp1) == -1)
226 if (timespeccmp(&tp1, &tp2, >))
228 timespecsub(&tp2, &tp1, &delta);
  /src/sys/arch/sgimips/sgimips/
arcemu.c 512 volatile uint8_t *tp1, *tp2;
515 tp1 = (volatile uint8_t *)MIPS_PHYS_TO_KSEG1((pages - 4096) << 12);
516 tp2 = tp1 + (4 * 1024 * 1024);
518 tmp = *tp1;
520 if (*tp1 != tmp)
  /src/usr.bin/xlint/lint1/
decl.c 157 * types_compatible, which simply tests whether 'tp1->u.sou ==
2199 qualifiers_correspond(const type_t *tp1, const type_t *tp2, bool ignqual)
2202 if (tp1->t_const != tp2->t_const && !ignqual && allow_c90)
2204 if (tp1->t_volatile != tp2->t_volatile && !ignqual && allow_c90)
2210 pointer_types_are_compatible(const type_t *tp1, const type_t *tp2, bool ignqual)
2213 return tp1->t_tspec == VOID || tp2->t_tspec == VOID ||
2214 qualifiers_correspond(tp1, tp2, ignqual);
2218 prototypes_compatible(const type_t *tp1, const type_t *tp2, bool *dowarn)
2221 if (tp1->t_vararg != tp2->t_vararg)
2224 const sym_t *p1 = tp1->u.params
    [all...]
tree.c 1554 /* Return a type based on tp1, with added qualifiers from tp2. */
1556 merge_qualifiers(type_t *tp1, const type_t *tp2)
1559 lint_assert(tp1->t_tspec == PTR);
1562 bool c1 = tp1->t_subt->t_const;
1564 bool v1 = tp1->t_subt->t_volatile;
1568 return tp1;
1570 type_t *nstp = expr_dup_type(tp1->t_subt);
1574 type_t *ntp = expr_dup_type(tp1);
  /src/sbin/mount_qemufwcfg/
virtdir.c 47 const virt_dirent_t *tp1 = vp1; local in function:compare
50 return strcmp(tp1->name, tp2->name);
  /src/share/examples/refuse/virtdir/
virtdir.c 45 const virt_dirent_t *tp1 = (const virt_dirent_t *) vp1; local in function:compare
48 return strcmp(tp1->name, tp2->name);
  /src/games/larn/
create.c 342 int tp1, tp2; local in function:troom
368 tp1 = playerx;
384 playerx = tp1;
  /src/sys/arch/sgimips/dev/
scn.c 1307 struct tty *tp1 = (sc1 != NULL) ? sc1->sc_tty : NULL; local in function:scnintr
1340 if (tp1 != NULL) {
1341 if ((rs_stat & INT_TXB) && (tp1->t_state & TS_BUSY)) {
1343 tp1->t_state &= ~(TS_BUSY | TS_FLUSH);
1353 (*tp1->t_linesw->l_start) (tp1);
1364 if (rs_ipcr & IPCR_DELTA_DCDB && tp1 != NULL) {
1365 dcd_int(sc1, tp1, rs_ipcr & IPCR_DCDB);

Completed in 56 milliseconds