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

/freebsd-10-stable/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-stable/contrib/ntp/sntp/libevent/include/event2/
H A Dbuffer.h840 @param start_at an evbuffer_ptr indicating the point at which we
854 struct evbuffer_ptr *start_at,
/freebsd-10-stable/contrib/ntp/sntp/libevent/
H A Dbuffer.c2727 const unsigned char *start_at = local
2730 p = memchr(start_at, first,
2733 pos.pos += p - start_at;
2734 pos.internal_.pos_in_chain += p - start_at;
2765 struct evbuffer_ptr *start_at,
2773 if (start_at && start_at->internal_.chain == NULL)
2778 if (start_at) {
2779 chain = start_at->internal_.chain;
2781 - start_at
2764 evbuffer_peek(struct evbuffer *buffer, ev_ssize_t len, struct evbuffer_ptr *start_at, struct evbuffer_iovec *vec, int n_vec) argument
[all...]
/freebsd-10-stable/sys/netinet/
H A Dsctp_output.c7807 struct sctp_nets *net, *start_at, *sack_goes_to = NULL, *old_start_at = NULL; local
7970 start_at = asoc->last_net_cmt_send_started;
7971 if (start_at == NULL) {
7973 start_at = TAILQ_FIRST(&asoc->nets);
7975 start_at = TAILQ_NEXT(asoc->last_net_cmt_send_started, sctp_next);
7976 if (start_at == NULL) {
7977 start_at = TAILQ_FIRST(&asoc->nets);
7980 asoc->last_net_cmt_send_started = start_at;
7982 start_at = TAILQ_FIRST(&asoc->nets);
7996 for (net = start_at; ne
[all...]
H A Dsctp_uio.h933 int32_t start_at; /* start at this one */ member in struct:sctp_cwnd_log_req

Completed in 114 milliseconds