| /src/etc/etc.prep/ | 
| MAKEDEV.conf | 17 	makedev residual 30 residual)
 31 	mkdev residual c 33 1 644
 
 | 
| /src/sys/arch/mac68k/mac68k/ | 
| psc.c | 391 wait_psc_dma(int channel, int rset, uint32_t *residual) 407 	*residual = psc_reg4(rset_len);
 411 	if (*residual)
 418 stop_psc_dma(int channel, int rset, uint32_t *residual, int datain)
 425 		rval = stop_read_psc_dma(channel, rset, residual);
 427 		rval = stop_write_psc_dma(channel, rset, residual);
 435 stop_read_psc_dma(int channel, int rset, uint32_t *residual)
 445 		*residual = 0;
 456 	*residual = psc_reg4(rset_len);
 457 	if (*residual == 0
 [all...]
 | 
| /src/sys/arch/prep/stand/boot/ | 
| boot.c | 41 #include <machine/residual.h> 65 RESIDUAL residual;  variable in typeref:typename:RESIDUAL
 95 	 * residual data
 100 		memcpy(&residual, resp, sizeof(residual));
 101 		btinfo_residual.addr = (void *)&residual;
 103 		printf("Warning: no residual data.\n");
 127 		    residual.VitalProductData.ProcessorBusHz/4 : TICKS_PER_SEC;
 
 | 
| /src/sys/dev/pci/ | 
| vioscsireg.h | 67 	uint32_t	residual;  member in struct:virtio_scsi_res_hdr 
 | 
| vioscsi.c | 472 	xs->resid  = virtio_rw32(vsc, vr->vr_res.residual); 
 | 
| /src/sys/external/bsd/compiler_rt/dist/lib/builtins/ | 
| divsf3.c | 122     // In either case, we are going to compute a residual of the form 134     rep_t residual;  local in function:__divsf3
 136         residual = (aSignificand << 24) - quotient * bSignificand;
 140         residual = (aSignificand << 23) - quotient * bSignificand;
 157         const bool round = (residual << 1) > bSignificand;
 
 | 
| divdf3.c | 137     // In either case, we are going to compute a residual of the form 149     rep_t residual;  local in function:__divdf3
 151         residual = (aSignificand << 53) - quotient * bSignificand;
 155         residual = (aSignificand << 52) - quotient * bSignificand;
 172         const bool round = (residual << 1) > bSignificand;
 
 | 
| divtf3.c | 153     // In either case, we are going to compute a residual of the form 165     rep_t residual;  local in function:__divtf3
 170         residual = (aSignificand << 113) - qb;
 175         residual = (aSignificand << 112) - qb;
 190         const bool round = (residual << 1) >= bSignificand;
 
 | 
| /src/sys/arch/prep/pnpbus/ | 
| mkclock_pnpbus.c | 53 #include <machine/residual.h> 
 | 
| pnpbusvar.h | 37 #include <machine/residual.h> 
 | 
| mcclock_pnpbus.c | 34  * part by the interface portion of the residual data. (or by the small vendor 52 #include <machine/residual.h>
 
 | 
| wdc_pnpbus.c | 43 #include <machine/residual.h> 
 | 
| if_we_pnpbus.c | 73 #include <machine/residual.h> 
 | 
| nvram_pnpbus.c | 53 #include <machine/residual.h> 69 extern RESIDUAL resdata;
 
 | 
| pnpbus.c | 45 #include <machine/residual.h> 
 | 
| /src/sys/arch/prep/prep/ | 
| mainbus.c | 58 #include <machine/residual.h> 
 | 
| platform.c | 47 #include <machine/residual.h> 83 /* XXX This should be conditional on finding L2 in residual */
 138  * the residual data.
 181  * 1.1 residual, we also look up the bridge data, and get the config base
 295 	/* revision 0 residual does not have valid pci bridge data */
 349  * in the residual.  Check the quirk table and if we find one, call it.
 
 | 
| machdep.c | 65 #include <machine/residual.h> 110 RESIDUAL *res;
 111 RESIDUAL resdata;
 123 	 * copy residual data
 131 			panic("not found residual information in bootinfo");
 133 		if (((RESIDUAL *)resinfo->addr != 0) &&
 134 		    ((RESIDUAL *)resinfo->addr)->ResidualLength != 0) {
 138 			panic("No residual data.");
 140 	aprint_normal("got residual data\n");
 193 	 * General prep setup using pnp residual. Also provides fo
 [all...]
 | 
| residual.c | 1 /*      $NetBSD: residual.c,v 1.19 2023/11/24 16:49:59 christos Exp $     */ 33 __KERNEL_RCSID(0, "$NetBSD: residual.c,v 1.19 2023/11/24 16:49:59 christos Exp $");
 39 #include <machine/residual.h>
 921 	/* rev 0 residual has no valid pcibridge data */
 
 | 
| /src/sys/dev/isa/ | 
| if_iy.c | 632 	u_int llen, residual;  local in function:iystart 748 		residual = resval = 0;
 753 			if (residual) {
 755 				printf("%s: merging residual with next mbuf.\n",
 771 			residual = llen & 1;
 772 			if (residual) {
 783 		if (residual)
 
 | 
| /src/sys/arch/sparc64/sparc64/ | 
| bsd_fdintr.s | 112 	ld	[R_fdc + FDC_TC], R_tc		! residual count 
 | 
| /src/sys/arch/sparc/sparc/ | 
| bsd_fdintr.s | 209 	ld	[R_fdc + FDC_TC], R_tc		! residual count 
 |