Searched refs:start_at (Results 1 - 3 of 3) sorted by relevance

/freebsd-10.0-release/sys/dev/mpt/
H A Dmpt.c148 mpt_pers_find(struct mpt_softc *mpt, u_int start_at) argument
150 KASSERT(start_at <= MPT_MAX_PERSONALITIES,
153 while (start_at < MPT_MAX_PERSONALITIES
154 && (mpt->mpt_pers_mask & (0x1 << start_at)) == 0) {
155 start_at++;
157 return (mpt_personalities[start_at]);
166 mpt_pers_find_reverse(struct mpt_softc *mpt, u_int start_at) argument
168 while (start_at < MPT_MAX_PERSONALITIES
169 && (mpt->mpt_pers_mask & (0x1 << start_at)) == 0) {
170 start_at
[all...]
/freebsd-10.0-release/sys/netinet/
H A Dsctp_output.c7637 struct sctp_nets *net, *start_at, *sack_goes_to = NULL, *old_start_at = NULL; local
7800 start_at = asoc->last_net_cmt_send_started;
7801 if (start_at == NULL) {
7803 start_at = TAILQ_FIRST(&asoc->nets);
7805 start_at = TAILQ_NEXT(asoc->last_net_cmt_send_started, sctp_next);
7806 if (start_at == NULL) {
7807 start_at = TAILQ_FIRST(&asoc->nets);
7810 asoc->last_net_cmt_send_started = start_at;
7812 start_at = TAILQ_FIRST(&asoc->nets);
7826 for (net = start_at; ne
[all...]
H A Dsctp_uio.h913 int32_t start_at; /* start at this one */ member in struct:sctp_cwnd_log_req

Completed in 98 milliseconds