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

12

/netbsd-6-1-5-RELEASE/sys/arch/evbppc/evbppc/
H A Devbppc_machdep.c101 vaddr_t taddr, va; local
121 va = taddr = uvm_km_alloc(kernel_map, len, 0, UVM_KMF_VAONLY);
127 pmap_kenter_pa(taddr, faddr,
130 taddr += PAGE_SIZE;
/netbsd-6-1-5-RELEASE/sys/arch/usermode/usermode/
H A Dvm_machdep.c49 vaddr_t faddr, taddr, off; local
61 taddr = uvm_km_alloc(phys_map, len, 0, UVM_KMF_VAONLY | UVM_KMF_WAITVA);
62 bp->b_data = (void *)(taddr + off);
70 pmap_enter(vm_map_pmap(phys_map), taddr, trunc_page(pa), local
73 taddr += PAGE_SIZE;
/netbsd-6-1-5-RELEASE/sys/arch/powerpc/powerpc/
H A Dvm_machdep.c185 vaddr_t faddr, taddr, kaddr; local
192 taddr = uvm_km_alloc(phys_map, len, 0, UVM_KMF_VAONLY | UVM_KMF_WAITVA);
193 kaddr = taddr + off;
197 pmap_kenter_pa(taddr, pa, prot, 0);
199 taddr += PAGE_SIZE;
228 vaddr_t faddr, taddr; local
244 taddr = uvm_km_alloc(phys_map, len, 0, UVM_KMF_VAONLY | UVM_KMF_WAITVA);
245 bp->b_data = (void *)(taddr + off);
253 pmap_kenter_pa(taddr, pa, prot, 0);
255 taddr
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/bfin/
H A Dbfin-sim.h299 #define __PUT_MEM(taddr, v, size) \
302 bu32 __taddr = (taddr); \
311 #define PUT_BYTE(taddr, v) __PUT_MEM(taddr, v, 8)
312 #define PUT_WORD(taddr, v) __PUT_MEM(taddr, v, 16)
313 #define PUT_LONG(taddr, v) __PUT_MEM(taddr, v, 32)
315 #define __GET_MEM(taddr, size, inst, map) \
318 bu32 __taddr = (taddr); \
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/acorn26/acorn26/
H A Dvm_machdep.c179 vaddr_t faddr, taddr, off; local
191 taddr = uvm_km_alloc(phys_map, len, 0, UVM_KMF_VAONLY | UVM_KMF_WAITVA);
192 bp->b_data = (void *)(taddr + off);
200 pmap_enter(vm_map_pmap(phys_map), taddr, trunc_page(pa), local
203 taddr += PAGE_SIZE;
/netbsd-6-1-5-RELEASE/usr.sbin/rpcbind/
H A Drpcbind.c213 struct t_bind taddr; local
306 taddr.addr.len = taddr.addr.maxlen = addrlen;
307 taddr.addr.buf = malloc(addrlen);
308 if (taddr.addr.buf == NULL) {
315 (void)memcpy(taddr.addr.buf, sa, addrlen);
336 my_xprt = (SVCXPRT *)svc_tli_create(fd, nconf, &taddr, RPC_MAXDATASIZE,
383 tcp_uaddr = taddr2uaddr(nconf, &taddr.addr);
401 udp_uaddr = taddr2uaddr(nconf, &taddr.addr);
429 rbllist_add(PMAPPROG, PMAPVERS, nconf, &taddr
[all...]
/netbsd-6-1-5-RELEASE/tests/fs/nfs/nfsservice/rpcbind/
H A Drpcbind.c232 struct t_bind taddr; local
327 taddr.addr.len = taddr.addr.maxlen = addrlen;
328 taddr.addr.buf = malloc(addrlen);
329 if (taddr.addr.buf == NULL) {
336 (void)memcpy(taddr.addr.buf, sa, addrlen);
357 my_xprt = (SVCXPRT *)svc_tli_create(fd, nconf, &taddr, RPC_MAXDATASIZE,
404 tcp_uaddr = taddr2uaddr(nconf, &taddr.addr);
422 udp_uaddr = taddr2uaddr(nconf, &taddr.addr);
450 rbllist_add(PMAPPROG, PMAPVERS, nconf, &taddr
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/rpc/
H A Drpcb_clnt.c229 add_cache(host, netid, taddr, uaddr)
232 struct netbuf *taddr;
239 /* taddr may be NULL ??? */
253 ad_cache->ac_taddr->len = ad_cache->ac_taddr->maxlen = taddr->len;
254 ad_cache->ac_taddr->buf = malloc(taddr->len);
268 memcpy(ad_cache->ac_taddr->buf, taddr->buf, taddr->len);
324 struct netbuf *addr, taddr; local
393 taddr.buf = tres->ai_addr;
394 taddr
1267 struct netbuf *taddr; local
[all...]
H A Dclnt_bcast.c602 struct netbuf taddr, *np; local
611 taddr.len = taddr.maxlen =
613 taddr.buf = &fdlist[i].raddr;
615 &taddr, fdlist[i].nconf);
/netbsd-6-1-5-RELEASE/tests/fs/common/nfsrpc/
H A Drpcb_clnt.c230 add_cache(host, netid, taddr, uaddr)
233 struct netbuf *taddr;
240 /* taddr may be NULL ??? */
254 ad_cache->ac_taddr->len = ad_cache->ac_taddr->maxlen = taddr->len;
255 ad_cache->ac_taddr->buf = malloc(taddr->len);
269 memcpy(ad_cache->ac_taddr->buf, taddr->buf, taddr->len);
325 struct netbuf *addr, taddr; local
394 taddr.buf = tres->ai_addr;
395 taddr
1269 struct netbuf *taddr; local
[all...]
/netbsd-6-1-5-RELEASE/sys/compat/linux/common/
H A Dlinux_uselib.c91 long bsize, dsize, tsize, taddr, baddr, daddr; local
119 taddr = hdr.a_entry & (~(PAGE_SIZE - 1));
121 daddr = taddr + tsize;
133 hdr.a_text + hdr.a_data, taddr,
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/m32r/
H A Dtraps.c101 unsigned long taddr, char *buf, int bytes)
106 return sim_core_read_buffer (sd, cpu, read_map, buf, taddr, bytes);
111 unsigned long taddr, const char *buf, int bytes)
116 return sim_core_write_buffer (sd, cpu, write_map, buf, taddr, bytes);
99 syscall_read_mem(host_callback *cb, struct cb_syscall *sc, unsigned long taddr, char *buf, int bytes) argument
109 syscall_write_mem(host_callback *cb, struct cb_syscall *sc, unsigned long taddr, const char *buf, int bytes) argument
/netbsd-6-1-5-RELEASE/sys/arch/vax/vax/
H A Dvm_machdep.c269 vaddr_t faddr, taddr, off; local
285 taddr = uvm_km_alloc(phys_map, len, 0, UVM_KMF_VAONLY | UVM_KMF_WAITVA);
286 bp->b_data = (void *)(taddr + off);
292 pmap_enter(vm_map_pmap(phys_map), taddr, trunc_page(pa), local
295 taddr += PAGE_SIZE;
/netbsd-6-1-5-RELEASE/sys/arch/x86/x86/
H A Dvm_machdep.c304 vaddr_t faddr, taddr, off; local
313 taddr = uvm_km_alloc(phys_map, len, 0, UVM_KMF_VAONLY | UVM_KMF_WAITVA);
314 bp->b_data = (void *)(taddr + off);
330 pmap_kenter_pa(taddr, fpa, VM_PROT_READ|VM_PROT_WRITE, 0);
332 taddr += PAGE_SIZE;
/netbsd-6-1-5-RELEASE/sys/arch/sh3/sh3/
H A Dvm_machdep.c346 vaddr_t faddr, taddr, off; local
356 taddr = uvm_km_alloc(phys_map, len, 0, UVM_KMF_VAONLY | UVM_KMF_WAITVA);
357 bp->b_data = (void *)(taddr + off);
374 pmap_enter(kpmap, taddr, fpa,
377 taddr += PAGE_SIZE;
H A Dcoff_exec.c419 int taddr, tsize, daddr, dsize, offset;
461 taddr = COFF_ALIGN(shp->s_vaddr);
462 offset = shp->s_scnptr - (shp->s_vaddr - taddr);
463 tsize = shp->s_size + (shp->s_vaddr - taddr);
464 DPRINTF(("VMCMD: addr %x size %x offset %x\n", taddr, tsize, offset));
465 NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_readvn, tsize, taddr,
/netbsd-6-1-5-RELEASE/sys/arch/arm/arm32/
H A Dvm_machdep.c262 vaddr_t faddr, taddr, off; local
279 taddr = uvm_km_alloc(phys_map, len, 0, UVM_KMF_VAONLY | UVM_KMF_WAITVA);
280 bp->b_data = (void *)(taddr + off);
289 pmap_enter(pmap_kernel(), taddr, fpa, local
292 taddr += PAGE_SIZE;
/netbsd-6-1-5-RELEASE/sys/arch/alpha/alpha/
H A Dvm_machdep.c188 vaddr_t faddr, taddr, off; local
199 taddr = uvm_km_alloc(phys_map, len, 0, UVM_KMF_VAONLY|UVM_KMF_WAITVA);
200 bp->b_data = (void *)(taddr + off);
206 pmap_enter(vm_map_pmap(phys_map), taddr, trunc_page(pa), local
209 taddr += PAGE_SIZE;
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/lm32/
H A Dtraps.c32 unsigned long taddr, char *buf, int bytes)
37 return sim_core_read_buffer (sd, cpu, read_map, buf, taddr, bytes);
44 unsigned long taddr, const char *buf, int bytes)
49 return sim_core_write_buffer (sd, cpu, write_map, buf, taddr, bytes);
31 syscall_read_mem(host_callback * cb, struct cb_syscall *sc, unsigned long taddr, char *buf, int bytes) argument
43 syscall_write_mem(host_callback * cb, struct cb_syscall *sc, unsigned long taddr, const char *buf, int bytes) argument
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/mn10300/
H A Dop_utils.c146 unsigned long taddr, char *buf, int bytes)
151 return sim_core_read_buffer (sd, cpu, read_map, buf, taddr, bytes);
156 unsigned long taddr, const char *buf, int bytes)
161 return sim_core_write_buffer (sd, cpu, write_map, buf, taddr, bytes);
145 syscall_read_mem(host_callback *cb, struct cb_syscall *sc, unsigned long taddr, char *buf, int bytes) argument
155 syscall_write_mem(host_callback *cb, struct cb_syscall *sc, unsigned long taddr, const char *buf, int bytes) argument
/netbsd-6-1-5-RELEASE/usr.sbin/bootp/bootpd/
H A Dbootpd.c1153 struct in_addr_list *taddr;
1174 taddr = hp->domain_server;
1175 if (taddr->addrcount > 0) {
1176 (vendp->v_dns1).s_addr = (taddr->addr)[0].s_addr;
1177 if (taddr->addrcount > 1) {
1178 (vendp->v_dns2).s_addr = (taddr->addr)[1].s_addr;
1183 taddr = hp->name_server;
1184 if (taddr->addrcount > 0) {
1185 (vendp->v_ins1).s_addr = (taddr->addr)[0].s_addr;
1186 if (taddr
1145 struct in_addr_list *taddr; local
[all...]
/netbsd-6-1-5-RELEASE/usr.sbin/timed/timed/
H A Dslave.c69 struct sockaddr_in taddr; local
394 taddr = from;
398 if (!acksend(&to, &taddr, tname,
456 taddr = from;
470 (void)sendtsp(sock, &to, &taddr);
512 taddr = from;
516 if (!acksend(&to, &taddr, tname,
627 struct sockaddr_in taddr; local
633 taddr = from;
652 xmit(TSP_DATEACK, seq, &taddr);
[all...]
/netbsd-6-1-5-RELEASE/usr.sbin/npf/npftest/libnpftest/
H A Dnpf_nat_test.c40 const char * taddr; member in struct:test_case
159 const char *saddr = forw ? t->taddr : t->src;
160 const char *daddr = forw ? t->dst : t->taddr;
/netbsd-6-1-5-RELEASE/external/bsd/libbind/dist/irs/
H A Dlcl_ho.c299 const u_char *taddr = (const u_char *)*hap; local
304 (!memcmp(taddr, mapped, sizeof mapped) ||
305 !memcmp(taddr, tunnelled, sizeof tunnelled))) {
307 taddr += sizeof mapped;
312 !memcmp(taddr, uaddr, tlen))
/netbsd-6-1-5-RELEASE/sys/compat/ibcs2/
H A Dibcs2_exec_coff.c514 int taddr, tsize, daddr, dsize, offset; local
557 taddr = COFF_ALIGN(shp->s_vaddr);
558 offset = shp->s_scnptr - (shp->s_vaddr - taddr);
559 tsize = shp->s_size + (shp->s_vaddr - taddr);
560 /* DPRINTF(("VMCMD: addr %x size %d offset %d\n", taddr, tsize, offset)); */
561 NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_readvn, tsize, taddr,

Completed in 229 milliseconds

12