Searched refs:residual (Results 1 - 25 of 45) sorted by relevance

12

/netbsd-current/etc/etc.prep/
H A DMAKEDEV.conf17 makedev residual
30 residual)
31 mkdev residual c 33 1 644
/netbsd-current/sys/arch/mac68k/mac68k/
H A Dpsc.c391 wait_psc_dma(int channel, int rset, uint32_t *residual) argument
407 *residual = psc_reg4(rset_len);
411 if (*residual)
418 stop_psc_dma(int channel, int rset, uint32_t *residual, int datain) argument
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) argument
445 *residual = 0;
456 *residual = psc_reg4(rset_len);
457 if (*residual
468 stop_write_psc_dma(int channel, int rset, uint32_t *residual) argument
[all...]
/netbsd-current/sys/arch/prep/stand/boot/
H A Dboot.c41 #include <machine/residual.h>
65 RESIDUAL residual; variable
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;
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/builtins/
H A Ddivsf3.c122 // In either case, we are going to compute a residual of the form
134 rep_t residual; local
136 residual = (aSignificand << 24) - quotient * bSignificand;
140 residual = (aSignificand << 23) - quotient * bSignificand;
157 const bool round = (residual << 1) > bSignificand;
H A Ddivtf3.c153 // In either case, we are going to compute a residual of the form
165 rep_t residual; local
170 residual = (aSignificand << 113) - qb;
175 residual = (aSignificand << 112) - qb;
190 const bool round = (residual << 1) >= bSignificand;
H A Ddivdf3.c137 // In either case, we are going to compute a residual of the form
149 rep_t residual; local
151 residual = (aSignificand << 53) - quotient * bSignificand;
155 residual = (aSignificand << 52) - quotient * bSignificand;
172 const bool round = (residual << 1) > bSignificand;
/netbsd-current/sys/dev/pci/
H A Dvioscsireg.h67 uint32_t residual; member in struct:virtio_scsi_res_hdr
/netbsd-current/sys/arch/prep/pnpbus/
H A Dmkclock_pnpbus.c53 #include <machine/residual.h>
H A Dpnpbusvar.h37 #include <machine/residual.h>
H A Dwdc_pnpbus.c43 #include <machine/residual.h>
H A Dmcclock_pnpbus.c34 * part by the interface portion of the residual data. (or by the small vendor
52 #include <machine/residual.h>
H A Dif_we_pnpbus.c73 #include <machine/residual.h>
H A Dnvram_pnpbus.c53 #include <machine/residual.h>
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/krb5/
H A Ddcache.c73 set_default_cache(krb5_context context, krb5_dcache *dc, const char *residual) argument
81 if (!is_filename_cacheish(residual)) {
83 "name %s is not a cache (doesn't start with tkt)", residual);
103 len = strlen(residual);
105 iov[0].iov_base = rk_UNCONST(residual);
144 get_default_cache(krb5_context context, krb5_dcache *dc, char **residual) argument
151 *residual = NULL;
160 *residual = strdup("tkt");
161 if (*residual == NULL)
191 *residual
317 char *residual; local
[all...]
H A Dkeytab.c53 * A keytab name is on the form type:residual. The residual part is
67 * residual part is a filename. For compatibility with other
76 * the type's name is AFSKEYFILE. The residual part is a filename.
82 * opened by the residual name, so two handles can point to the
170 const char *residual; local
172 residual = strchr(name, ':');
174 if (residual == NULL ||
179 || name + 1 == residual
185 residual
216 const char *type, *residual; local
[all...]
H A Dcache.c181 * and name `residual'. Return 0 or an error code.
187 const char *residual,
199 ret = _krb5_expand_path_tokens(context, residual, filepath, &exp_residual);
203 residual = exp_residual;
215 ret = (*id)->ops->resolve(context, id, residual);
249 * Find and allocate a ccache in `id' from the specification in `residual'.
185 allocate_ccache(krb5_context context, const krb5_cc_ops *ops, const char *residual, krb5_ccache *id) argument
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/hdb/
H A Dhdb.c358 const char *residual; member in struct:cb_s
370 cb_ctx->residual = cb_ctx->filename + strlen(h->prefix) + 1;
430 cb_ctx.residual = NULL;
484 cb_ctx.h = find_method (filename, &cb_ctx.residual);
500 return (*cb_ctx.h->create)(context, db, cb_ctx.residual);
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dexplow.c1852 rtx *residual,
1872 *residual = simplify_gen_binary (MINUS, Pmode, size, *rounded_size);
1892 if (*residual != CONST0_RTX (Pmode))
1975 rtx rounded_size, last_addr, residual;
1979 &residual, &probe_interval, size);
2031 if (residual != CONST0_RTX (Pmode))
2046 anti_adjust_stack (residual);
2048 if (!CONST_INT_P (residual))
2053 ? gen_rtx_CONST_INT (GET_MODE (residual), probe_range)
2054 : CONST0_RTX (GET_MODE (residual));
1842 compute_stack_clash_protection_loop_data(rtx *rounded_size, rtx *last_addr, rtx *residual, HOST_WIDE_INT *probe_interval, rtx size) argument
1966 rtx rounded_size, last_addr, residual; local
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dexplow.cc1884 rtx *residual,
1904 *residual = simplify_gen_binary (MINUS, Pmode, size, *rounded_size);
1924 if (*residual != CONST0_RTX (Pmode))
2007 rtx rounded_size, last_addr, residual;
2011 &residual, &probe_interval, size);
2063 if (residual != CONST0_RTX (Pmode))
2078 anti_adjust_stack (residual);
2080 if (!CONST_INT_P (residual))
2085 ? gen_rtx_CONST_INT (GET_MODE (residual), probe_range)
2086 : CONST0_RTX (GET_MODE (residual));
1874 compute_stack_clash_protection_loop_data(rtx *rounded_size, rtx *last_addr, rtx *residual, HOST_WIDE_INT *probe_interval, rtx size) argument
1998 rtx rounded_size, last_addr, residual; local
[all...]
/netbsd-current/sys/arch/prep/prep/
H A Dmainbus.c58 #include <machine/residual.h>
H A Dplatform.c47 #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.
H A Dmachdep.c65 #include <machine/residual.h>
123 * copy residual data
131 panic("not found residual information in bootinfo");
138 panic("No residual data.");
140 aprint_normal("got residual data\n");
193 * General prep setup using pnp residual. Also provides for
/netbsd-current/sys/dev/isa/
H A Dif_iy.c632 u_int llen, residual; local
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)
/netbsd-current/sys/arch/sparc64/sparc64/
H A Dbsd_fdintr.s112 ld [R_fdc + FDC_TC], R_tc ! residual count
/netbsd-current/sys/arch/sparc/sparc/
H A Dbsd_fdintr.s209 ld [R_fdc + FDC_TC], R_tc ! residual count

Completed in 586 milliseconds

12