Home
last modified time | relevance | path

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

/titanic_50/usr/src/cmd/cron/
H A Datq.c462 int seq1, seq2; in creation() local
486 seq2 = atoi(p2); in creation()
487 return (seq1 - seq2); in creation()
500 int seq1, seq2; in execution() local
523 seq2 = atoi(p2); in execution()
524 return (seq1 - seq2); in execution()
/titanic_50/usr/src/uts/common/inet/ipf/
H A Dip_proxy.c731 u_32_t seq1, seq2; local
761 seq2 = aps->aps_seqmin[sel] - aps->aps_seqoff[sel];
762 if (seq1 > seq2) {
763 seq2 = aps->aps_seqoff[sel];
764 seq1 += seq2;
795 seq2 = aps->aps_ackoff[sel];
796 tcp->th_ack = htonl(seq1 - seq2);
813 seq2 = aps->aps_ackmin[sel] - aps->aps_ackoff[sel];
814 if (seq1 > seq2) {
815 seq2 = aps->aps_ackoff[sel];
[all …]
/titanic_50/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)
83 int* vptr = seq2->vec;
84 while (vptr != seq2->end)
86 seq1->cost += seq2->cost;
/titanic_50/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()
86 int *vptr = seq2->vec; in add_seq()
87 while (vptr != seq2->end) in add_seq()
89 seq1->cost += seq2->cost; in add_seq()
/titanic_50/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()