Home
last modified time | relevance | path

Searched refs:seq1 (Results 1 – 5 of 5) sorted by relevance

/titanic_44/usr/src/uts/common/inet/ipf/
H A Dip_proxy.c731 u_32_t seq1, seq2; local
747 seq1 = (u_32_t)ntohl(tcp->th_seq);
752 (seq1 > aps->aps_seqmin[!sel])) {
755 sel, !sel, seq1,
762 if (seq1 > seq2) {
764 seq1 += seq2;
765 tcp->th_seq = htonl(seq1);
770 if (inc && (seq1 > aps->aps_seqmin[!sel])) {
771 aps->aps_seqmin[sel] = seq1 + nlen - 1;
781 seq1 = ntohl(tcp->th_ack);
[all …]
/titanic_44/usr/src/cmd/cron/
H A Datq.c462 int seq1, seq2; in creation() local
485 seq1 = atoi(p1); in creation()
487 return (seq1 - seq2); in creation()
500 int seq1, seq2; in execution() local
522 seq1 = atoi(p1); in execution()
524 return (seq1 - seq2); in execution()
/titanic_44/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dmvcur.c77 add_seq(seq1, seq2) in add_seq() argument
78 struct Sequence *seq1, *seq2; in add_seq()
80 if (seq1->cost >= __MOVE_INFINITY || seq2->cost >= __MOVE_INFINITY)
81 seq1->cost = __MOVE_INFINITY;
85 *(seq1->end++) = *(vptr++);
86 seq1->cost += seq2->cost;
/titanic_44/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dmvcur.c81 add_seq(struct Sequence *seq1, struct Sequence *seq2) in add_seq() argument
83 if (seq1->cost >= __MOVE_INFINITY || seq2->cost >= __MOVE_INFINITY) in add_seq()
84 seq1->cost = __MOVE_INFINITY; in add_seq()
88 *(seq1->end++) = *(vptr++); in add_seq()
89 seq1->cost += seq2->cost; in add_seq()
/titanic_44/usr/src/uts/intel/io/drm/
H A Di915_gem.c728 i915_seqno_passed(uint32_t seq1, uint32_t seq2) in i915_seqno_passed() argument
730 return (int32_t)(seq1 - seq2) >= 0; in i915_seqno_passed()