Searched refs:seqp (Results 1 - 4 of 4) sorted by relevance

/freebsd-10-stable/sys/sys/
H A Dseq.h92 seq_in_modify(seq_t seqp) argument
95 return (seqp & 1);
99 seq_write_begin(seq_t *seqp) argument
102 MPASS(!seq_in_modify(*seqp));
103 atomic_add_acq_int(seqp, 1);
107 seq_write_end(seq_t *seqp) argument
110 atomic_add_rel_int(seqp, 1);
111 MPASS(!seq_in_modify(*seqp));
115 seq_read(seq_t *seqp) argument
120 ret = atomic_load_acq_rmb_int(seqp);
132 seq_consistent(seq_t *seqp, seq_t oldseq) argument
139 seq_consistent_nomb(seq_t *seqp, seq_t oldseq) argument
[all...]
H A Dmsgbuf.h77 u_int *seqp);
/freebsd-10-stable/sys/kern/
H A Dsubr_msgbuf.c351 * data as read. `seqp' should point to an unsigned integer that
360 msgbuf_peekbytes(struct msgbuf *mbp, char *buf, int buflen, u_int *seqp) argument
367 /* Just initialise *seqp. */
368 *seqp = MSGBUF_SEQNORM(mbp, mbp->msg_wseq - mbp->msg_size);
374 len = MSGBUF_SEQSUB(mbp, wseq, *seqp);
380 *seqp = MSGBUF_SEQNORM(mbp, wseq - mbp->msg_size);
383 pos = MSGBUF_SEQ_TO_POS(mbp, *seqp);
386 bcopy(&mbp->msg_ptr[MSGBUF_SEQ_TO_POS(mbp, *seqp)], buf, len);
387 *seqp = MSGBUF_SEQNORM(mbp, *seqp
[all...]
/freebsd-10-stable/tools/tools/net80211/w00t/prga/
H A Dprga.c262 short *seqp; local
296 seqp = (short*) wh->i_seq;
297 *seqp = seqfn(p->seq, p->frag);

Completed in 41 milliseconds