maxp             1691 dev/usb/uhci.c 	int i, ntd, l, tog, maxp;
maxp             1699 dev/usb/uhci.c 	maxp = UGETW(upipe->pipe.endpoint->edesc->wMaxPacketSize);
maxp             1700 dev/usb/uhci.c 	if (maxp == 0) {
maxp             1704 dev/usb/uhci.c 	ntd = (len + maxp - 1) / maxp;
maxp             1705 dev/usb/uhci.c 	if ((flags & USBD_FORCE_SHORT_XFER) && len % maxp == 0)
maxp             1707 dev/usb/uhci.c 	DPRINTFN(10, ("uhci_alloc_std_chain: maxp=%d ntd=%d\n", maxp, ntd));
maxp             1738 dev/usb/uhci.c 			l = len % maxp;
maxp             1740 dev/usb/uhci.c 				l = maxp;
maxp             1743 dev/usb/uhci.c 			l = maxp;
maxp             1747 dev/usb/uhci.c 		p->td.td_buffer = htole32(DMAADDR(dma, i * maxp));
maxp             1434 kern/subr_pool.c 	char maxp[16];
maxp             1473 kern/subr_pool.c 			snprintf(maxp, sizeof maxp, "inf");
maxp             1475 kern/subr_pool.c 			snprintf(maxp, sizeof maxp, "%u", pp->pr_maxpages);
maxp             1497 kern/subr_pool.c 		PRWORD(ovflw, " %*s", 6, 1, maxp);
maxp              200 lib/libsa/loadfile.c 	paddr_t minp = ~0, maxp = 0, pos;
maxp              227 lib/libsa/loadfile.c 			if (maxp < pos)
maxp              228 lib/libsa/loadfile.c 				maxp = pos;
maxp              247 lib/libsa/loadfile.c 			if (maxp < pos)
maxp              248 lib/libsa/loadfile.c 				maxp = pos;
maxp              263 lib/libsa/loadfile.c 			if (maxp < pos)
maxp              264 lib/libsa/loadfile.c 				maxp = pos;
maxp              271 lib/libsa/loadfile.c 	marks[MARK_SYM] = LOADADDR(maxp);
maxp              272 lib/libsa/loadfile.c 	marks[MARK_END] = LOADADDR(maxp);
maxp              283 lib/libsa/loadfile.c 	paddr_t minp, maxp;
maxp              295 lib/libsa/loadfile.c 	minp = maxp = ALIGNENTRY(entry);
maxp              308 lib/libsa/loadfile.c 		if (flags & LOAD_HDR && maxp >= sizeof(*x))
maxp              309 lib/libsa/loadfile.c 			BCOPY(x, maxp - sizeof(*x), sizeof(*x));
maxp              313 lib/libsa/loadfile.c 			BCOPY(x, maxp, sizeof(*x));
maxp              315 lib/libsa/loadfile.c 			maxp += sizeof(*x);
maxp              324 lib/libsa/loadfile.c 		if (READ(fd, maxp, x->a_text - sub) != x->a_text - sub) {
maxp              335 lib/libsa/loadfile.c 		maxp += x->a_text - sub;
maxp              341 lib/libsa/loadfile.c 		int size = -(unsigned int)maxp & (__LDPGSZ - 1);
maxp              345 lib/libsa/loadfile.c 			BZERO(maxp, size);
maxp              349 lib/libsa/loadfile.c 			maxp += size;
maxp              358 lib/libsa/loadfile.c 		if (READ(fd, maxp, x->a_data) != x->a_data) {
maxp              370 lib/libsa/loadfile.c 		maxp += x->a_data;
maxp              379 lib/libsa/loadfile.c 		BZERO(maxp, x->a_bss);
maxp              383 lib/libsa/loadfile.c 		maxp += x->a_bss;
maxp              390 lib/libsa/loadfile.c 		BCOPY(&x->a_syms, maxp, sizeof(x->a_syms));
maxp              393 lib/libsa/loadfile.c 		maxp += sizeof(x->a_syms);
maxp              394 lib/libsa/loadfile.c 		aoutp = maxp;
maxp              403 lib/libsa/loadfile.c 			if (READ(fd, maxp, x->a_syms) != x->a_syms) {
maxp              414 lib/libsa/loadfile.c 			maxp += x->a_syms;
maxp              422 lib/libsa/loadfile.c 			BCOPY(&cc, maxp, sizeof(cc));
maxp              429 lib/libsa/loadfile.c 			maxp += sizeof(cc);
maxp              438 lib/libsa/loadfile.c 			if (READ(fd, maxp, cc) != cc) {
maxp              449 lib/libsa/loadfile.c 			maxp += cc;
maxp              456 lib/libsa/loadfile.c 	marks[MARK_END] = LOADADDR(maxp);
maxp               87 lib/libsa/loadfile_elf.c 	paddr_t minp = ~0, maxp = 0, pos = 0;
maxp              143 lib/libsa/loadfile_elf.c 			if (maxp < pos)
maxp              144 lib/libsa/loadfile_elf.c 				maxp = pos;
maxp              156 lib/libsa/loadfile_elf.c 			if (maxp < pos)
maxp              157 lib/libsa/loadfile_elf.c 				maxp = pos;
maxp              165 lib/libsa/loadfile_elf.c 	elfp = maxp = roundup(maxp, sizeof(long));
maxp              167 lib/libsa/loadfile_elf.c 		maxp += sizeof(Elf_Ehdr);
maxp              183 lib/libsa/loadfile_elf.c 		shpp = maxp;
maxp              184 lib/libsa/loadfile_elf.c 		maxp += roundup(sz, sizeof(long));
maxp              209 lib/libsa/loadfile_elf.c 					if (READ(fd, maxp, shp[i].sh_size) !=
maxp              216 lib/libsa/loadfile_elf.c 				maxp += roundup(shp[i].sh_size,
maxp              248 lib/libsa/loadfile_elf.c 	marks[MARK_END] = LOADADDR(maxp);