Searched defs:t__low (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libnsl/dial/
H A Dconn.c871 int t__low, t__high; local
876 if ((sscanf(s, "%d-%d", &t__low, &t__high) < 2) ||
877 (t__low == t__high))
881 if (t__low < t__high) {
882 if (t__low <= t__now && t__now <= t__high)
884 } else if (t__low <= t__now || t__now <= t__high)
/illumos-gate/usr/src/cmd/bnu/
H A Dconn.c1185 int t__low, t__high; local
1190 if ((sscanf(s, "%d-%d", &t__low, &t__high) < 2))
1193 if (t__low == t__high)
1197 if (t__low < t__high) {
1198 if (t__low <= t__now && t__now <= t__high)
1201 if (t__low <= t__now || t__now <= t__high)

Completed in 46 milliseconds