Home
last modified time | relevance | path

Searched refs:shouldbe (Results 1 – 4 of 4) sorted by relevance

/NextBSD/contrib/tcpdump/
HDin_cksum.c160 uint32_t shouldbe; in in_cksum_shouldbe() local
196 shouldbe = sum; in in_cksum_shouldbe()
197 shouldbe += ntohs(computed_sum); in in_cksum_shouldbe()
198 shouldbe = (shouldbe & 0xFFFF) + (shouldbe >> 16); in in_cksum_shouldbe()
199 shouldbe = (shouldbe & 0xFFFF) + (shouldbe >> 16); in in_cksum_shouldbe()
200 return shouldbe; in in_cksum_shouldbe()
/NextBSD/tools/regression/p1003_1b/
HDprutil.c37 int sched_is(int line, struct sched_param *p, int shouldbe) in sched_is() argument
52 if (shouldbe != -1 && scheduler != shouldbe) in sched_is()
56 line, sched_text(shouldbe), sched_text(scheduler)); in sched_is()
HDsched.c159 struct sched_param orig_param, shouldbe; in sched() local
179 q(__LINE__, sched_getparam(0, &shouldbe), "sched_getparam"); in sched()
181 if (shouldbe.sched_priority != fifo_schedmin) in sched()
194 q(__LINE__, sched_getparam(0, &shouldbe), in sched()
197 if (shouldbe.sched_priority != fifo_schedmin + 1) in sched()
/NextBSD/crypto/openssl/
HDPROBLEMS99 is off by 1 (meaning: calculated=shouldbe+1). Further analysis failed,