HomeSort by: relevance | last modified time | path
    Searched defs:residual (Results 1 - 6 of 6) sorted by relevancy

  /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/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
  /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)

Completed in 15 milliseconds