| /src/sys/dev/raidframe/ | 
| rf_stripelocks.c | 128 /* Determines if a candidate lock request conflicts with a predecessor 133  *      a candidate read conflicts with a predecessor write if any
 136  *      a candidate write conflicts with a predecessor read if any
 139  *      a candidate write conflicts with a predecessor write if any
 386 	RF_LockReqDesc_t *candidate, *candidate_t, *predecessor;  local in function:rf_ReleaseStripeLock
 487 		for (candidate_t = NULL, candidate = lockDesc->waitersH;
 488 		     candidate;) {
 492 			if (RANGE_OVERLAP(lockReqDesc, candidate))
 496 					if (RANGE_OVERLAP(t, candidate)) {
 503 					Dprintf8("[%d] No overlap: rejecting candidate stripeID %ld, type %c range %ld-%ld %ld-%ld table 0x%lx\n"
 [all...]
 | 
| /src/sys/uvm/ | 
| uvm_pglist.c | 115 	long candidate, limit, candidateidx, end, idx;  local in function:uvm_pglistalloc_c_ps 142 	candidate = roundup2(ulmax(low, uvm_physseg_get_avail_start(psi) +
 153 		if (candidate + num > limit) {
 166 			candidate = roundup2(ulmax(low, uvm_physseg_get_avail_start(psi)), alignment);
 173 		    ((candidate ^ (candidate + num - 1)) & pagemask) != 0) {
 178 			candidate = (candidate + num - 1) & pagemask;
 179 			candidate = roundup2(candidate, alignment)
 528  long limit, candidate;  local in function:uvm_pglistalloc_s_ps
 [all...]
 | 
| /src/lib/libc/citrus/modules/ | 
| citrus_hz.c | 209 	escape_t *candidate, *init;  local in function:_citrus_HZ_mbrtowc_priv 271 				candidate = NULL;
 279 					candidate = init;
 281 				if (candidate == NULL) {
 282 					candidate = find_escape(
 284 					if (candidate == NULL) {
 288 						candidate = init;
 291 				psenc->inuse = candidate;
 336 	escape_t *candidate, *init;  local in function:_citrus_HZ_wcrtomb_priv
 355 		candidate = INIT0(ei)
 439  escape_t *candidate;  local in function:_citrus_HZ_put_state_reset
 [all...]
 | 
| /src/usr.sbin/timed/timed/ | 
| Makefile | 7 SRCS=	acksend.c candidate.c correct.c master.c networkdelta.c readmsg.c \ 
 | 
| /src/usr.bin/make/unit-tests/ | 
| depsrc-use.mk | 11 # regarded as a candidate for the main target.  On the other hand, a .USE 13 not-a-main-candidate: .USE
 
 | 
| suff-main.mk | 20 # a candidate for the main target.  Therefore the next target is selected as 
 | 
| depsrc-usebefore.mk | 17 # regarded as a candidate for the main target.  On the other hand, a .USE 19 not-a-main-candidate: .USEBEFORE
 
 | 
| /src/sys/external/isc/libsodium/dist/dist-build/ | 
| emscripten.sh | 116   for candidate in node nodejs; do 117     case $($candidate --version 2>&1) in #(
 119         NODE=$candidate
 
 | 
| /src/sys/arch/i386/stand/lib/ | 
| biosdisk.c | 1219 	int i, candidate;  local in function:raidframe_part_offset 1231 	candidate = 0;
 1239 			candidate = i;
 1245 			if (candidate == 0)
 1246 				candidate = i;
 1250 	d->boff += RF_PROTECTED_SECTORS + raidframe.part[candidate].offset;
 1251 	d->size = raidframe.part[candidate].size;
 1407 		int candidate = -1;  local in function:biosdisk_find_name
 1448 				candidate = first_bootme;
 1450 				candidate = first_ffs
 1544  int candidate = -1;  local in function:biosdisk_find_raid
 [all...]
 | 
| /src/games/backgammon/backgammon/ | 
| move.c | 63  /* these variables are values for the candidate move */ 82 static int cp[5];		/* candidate start position */
 83 static int cg[5];		/* candidate finish position */
 331 mvcheck(struct move *mm, struct BOARD *incumbent, struct BOARD *candidate)
 337 		result = cturn * (candidate->b_st[i] - incumbent->b_st[i]);
 346 		incumbent->b_st[i] = candidate->b_st[i];
 347 		incumbent->b_fn[i] = candidate->b_fn[i];
 
 | 
| /src/sys/netinet6/ | 
| in6.c | 1695 		struct in6_addr mask, candidate, match;  local in function:in6_lifaddr_ioctl 1743 			memcpy(&candidate, IFA_IN6(ifa), sizeof(candidate));
 1744 			in6_clearscope(&candidate);
 1745 			candidate.s6_addr32[0] &= mask.s6_addr32[0];
 1746 			candidate.s6_addr32[1] &= mask.s6_addr32[1];
 1747 			candidate.s6_addr32[2] &= mask.s6_addr32[2];
 1748 			candidate.s6_addr32[3] &= mask.s6_addr32[3];
 1749 			if (IN6_ARE_ADDR_EQUAL(&candidate, &match))
 
 | 
| /src/sys/netinet/ | 
| in.c | 1052 		struct in_addr mask, candidate, match;  local in function:in_lifaddr_ioctl 1091 			candidate.s_addr = ((struct sockaddr_in *)ifa->ifa_addr)->sin_addr.s_addr;
 1092 			candidate.s_addr &= mask.s_addr;
 1093 			if (candidate.s_addr == match.s_addr)
 
 | 
| /src/sys/dev/pci/ | 
| if_vmx.c | 583 	int candidate;  local in function:vmxnet3_attach 602 	candidate = MIN(MIN(VMXNET3_MAX_TX_QUEUES, VMXNET3_MAX_RX_QUEUES),
 605 	    vmxnet3_calc_queue_size(candidate);
 
 |