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

  /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/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/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/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/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);
  /src/sys/netinet/
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...]
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;

Completed in 31 milliseconds