| /src/sys/lib/libsa/ | 
| loadfile_ecoff.c | 57 	paddr_t minp = ~0, maxp = 0, pos;  local in function:loadfile_coff 92 			if (maxp < pos)
 93 				maxp = pos;
 117 			if (maxp < pos)
 118 				maxp = pos;
 133 			if (maxp < pos)
 134 				maxp = pos;
 141 	marks[MARK_SYM] = LOADADDR(maxp);
 142 	marks[MARK_END] = LOADADDR(maxp);
 
 | 
| loadfile_aout.c | 92 	paddr_t minp, maxp;  local in function:loadfile_aout 108 	minp = maxp = ALIGNENTRY(entry);
 121 		if (flags & LOAD_HDR && maxp >= sizeof(*x))
 122 			BCOPY(x, maxp - sizeof(*x), sizeof(*x));
 126 			BCOPY(x, maxp, sizeof(*x));
 128 			maxp += sizeof(*x);
 137 		nr = READ(fd, maxp, x->a_text - sub);
 154 		maxp += x->a_text - sub;
 160 		int size = -(unsigned int)maxp & (AOUT_LDPGSZ - 1);
 164 			BZERO(maxp, size)
 [all...]
 | 
| loadfile_elf32.c | 339  * by increasing maxp. An alignment is enforced between the code sections. 354 	Elf_Addr maxp, elfp = 0;  local in function:ELFNAMEEND
 357 	maxp = marks[MARK_END] - offset;
 382 	elfp = maxp;
 386 	maxp += sizeof(Elf_Ehdr);
 394 	shpp = maxp;
 395 	maxp += roundup(shdrsz, ELFROUND);
 400 	maxp = roundup(maxp, KERNALIGN_SMALL);
 411 		addr = roundup(maxp, align)
 691  Elf_Addr minp = ~0, maxp = 0, pos = 0, elfp = 0;  local in function:ELFNAMEEND
 [all...]
 | 
| /src/sys/arch/mvme68k/mvme68k/ | 
| disksubr.c | 354 	int maxp, i;  local in function:printclp 363 	maxp = clp->partitions < 16 ? clp->partitions : 16;
 364 	for (i = 0; i < maxp; i++) {
 
 | 
| /src/sys/external/bsd/dwc2/dist/ | 
| dwc2_hcd.h | 232  * @maxp:               Value from wMaxPacketSize field of Endpoint Descriptor 282 	u16 maxp;  member in struct:dwc2_qh
 
 | 
| /src/sys/dev/usb/ | 
| uhci.c | 1992 	int maxp = UGETW(xfer->ux_pipe->up_endpoint->ue_edesc->wMaxPacketSize);  local in function:uhci_alloc_std_chain 1993 	if (maxp == 0) {
 1994 		printf("%s: maxp=0\n", __func__);
 1997 	size_t ntd = howmany(len, maxp);
 1999 	 * if our transfer is bigger than PAGE_SIZE and maxp not a factor of
 2002 	if (len > PAGE_SIZE && (PAGE_SIZE % maxp) != 0) {
 2012 	DPRINTFN(10, "maxp=%jd ntd=%jd", maxp, ntd, 0, 0);
 2078 	int maxp;  local in function:uhci_reset_std_chain
 2088 	maxp = UGETW(pipe->up_endpoint->ue_edesc->wMaxPacketSize)
 [all...]
 | 
| /src/sys/dev/pci/ | 
| if_iwn.c | 4360 	uint32_t maxp, skip_dtim;  local in function:iwn_set_pslevel 4392 		maxp = pmgt->intval[4];
 4393 		if (maxp == (uint32_t)-1)
 4394 			maxp = dtim * (skip_dtim + 1);
 4395 		else if (maxp > dtim)
 4396 			maxp = (maxp / dtim) * dtim;
 4398 		maxp = dtim;
 4400 		cmd.intval[i] = htole32(MIN(maxp, pmgt->intval[i]));
 
 | 
| /src/usr.bin/vmstat/ | 
| vmstat.c | 1474 	char maxp[32];  local in function:dopool_sysctl 1512 			(void)snprintf(maxp, sizeof(maxp), "inf");
 1514 			(void)snprintf(maxp, sizeof(maxp), "%" PRIu64,
 1541 		PRWORD(ovflw, " %*s", wide ? 9 : 6, 1, maxp);
 1615 	char maxp[32], name[32];  local in function:dopool
 1663 			(void)snprintf(maxp, sizeof(maxp), "inf");
 1665 			(void)snprintf(maxp, sizeof(maxp), "%u"
 [all...]
 |