| /src/sys/uvm/ |
| uvm_page.h | 168 paddr_t phys_addr; /* o: physical address of pg */ member in struct:vm_page 426 * Use the lower 10 bits of pg->phys_addr to cache some some locators for 428 * that nobody should use pg->phys_addr directly (use VM_PAGE_TO_PHYS()). 449 unsigned fl = __SHIFTOUT(pg->phys_addr, UVM_PHYSADDR_FREELIST); 457 return __SHIFTOUT(pg->phys_addr, UVM_PHYSADDR_BUCKET); 464 pg->phys_addr &= ~UVM_PHYSADDR_FREELIST; 465 pg->phys_addr |= __SHIFTIN(fl, UVM_PHYSADDR_FREELIST); 472 pg->phys_addr &= ~UVM_PHYSADDR_BUCKET; 473 pg->phys_addr |= __SHIFTIN(b, UVM_PHYSADDR_BUCKET);
|
| /src/external/mit/libuv/dist/src/unix/ |
| ibmi.c | 318 static int get_ibmi_physical_address(const char* line, char (*phys_addr)[6]) { 375 /* convert loca_adapter_address(char[12]) to phys_addr(char[6]) */ 380 (*phys_addr)[0] = c[0]; 381 (*phys_addr)[1] = c[1]; 382 (*phys_addr)[2] = c[2]; 383 (*phys_addr)[3] = c[3]; 384 (*phys_addr)[4] = c[4]; 385 (*phys_addr)[5] = c[5]; 387 memset(*phys_addr, 0, sizeof(*phys_addr)); [all...] |
| bsd-ifaddrs.c | 147 memcpy(address->phys_addr, LLADDR(sa_addr), sizeof(address->phys_addr));
|
| sunos.c | 788 memcpy(address->phys_addr, LLADDR(sa_addr), sizeof(address->phys_addr)); 789 for (i = 0; i < sizeof(address->phys_addr); i++) { 790 /* Check that all bytes of phys_addr are zero. */ 791 if (address->phys_addr[i] != 0) 815 memcpy(address->phys_addr, arpreq.arp_ha.sa_data, sizeof(address->phys_addr));
|
| /src/external/mit/libuv/dist/test/ |
| test-platform-output.c | 163 (unsigned char)interfaces[i].phys_addr[0], 164 (unsigned char)interfaces[i].phys_addr[1], 165 (unsigned char)interfaces[i].phys_addr[2], 166 (unsigned char)interfaces[i].phys_addr[3], 167 (unsigned char)interfaces[i].phys_addr[4], 168 (unsigned char)interfaces[i].phys_addr[5]);
|
| /src/sys/arch/hpcmips/stand/pbsdboot/ |
| vmem.c | 140 alloc_kpage(void *phys_addr) 148 if (phys_addrs[i].addr == phys_addr) { 151 i, phys_addr); 154 i, phys_addr); 165 vmem_get(void *phys_addr, int *length) 168 int pageno = (phys_addr - kernel_start) / pagesize; 169 int offset = (phys_addr - kernel_start) % pagesize;
|
| pbsdboot.h | 131 void *vmem_get(void *phys_addr, int *length);
|
| /src/sys/arch/atari/atari/ |
| stalloc.c | 54 #define PHYS_ADDR(virt) ((u_long)(virt) - st_pool_virt + st_pool_phys) 81 alloc_stmem(u_long size, void **phys_addr) 125 *phys_addr = (void*)PHYS_ADDR(&mn[1]); 146 *phys_addr = (void*)PHYS_ADDR(&mn[1]);
|
| /src/external/gpl3/binutils/dist/bfd/ |
| elf32-m68hc12.c | 533 bfd_vma sym_value, phys_page, phys_addr; 567 phys_addr = m68hc11_phys_addr (&htab->pinfo, sym_value); 572 bfd_put_16 (stub_bfd, phys_addr, loc + 1); 532 bfd_vma sym_value, phys_page, phys_addr; local
|
| elf32-m68hc1x.c | 968 bfd_vma phys_addr; local 1058 phys_addr = m68hc11_phys_addr (pinfo, relocation + rel->r_addend); 1074 relocation = phys_addr; 1103 relocation = phys_addr; 1108 bfd_put_16 (input_bfd, phys_addr, 1123 relocation = phys_addr; 1171 "code."), (long) phys_addr)) 1186 (long) phys_page, (long) phys_addr, 1200 (long) phys_page, (long) phys_addr, 1203 relocation = phys_addr; [all...] |
| /src/external/gpl3/binutils.old/dist/bfd/ |
| elf32-m68hc12.c | 533 bfd_vma sym_value, phys_page, phys_addr; 567 phys_addr = m68hc11_phys_addr (&htab->pinfo, sym_value); 572 bfd_put_16 (stub_bfd, phys_addr, loc + 1); 532 bfd_vma sym_value, phys_page, phys_addr; local
|
| elf32-m68hc1x.c | 968 bfd_vma phys_addr; local 1057 phys_addr = m68hc11_phys_addr (pinfo, relocation + rel->r_addend); 1073 relocation = phys_addr; 1102 relocation = phys_addr; 1107 bfd_put_16 (input_bfd, phys_addr, 1122 relocation = phys_addr; 1170 "code."), (long) phys_addr)) 1185 (long) phys_page, (long) phys_addr, 1199 (long) phys_page, (long) phys_addr, 1202 relocation = phys_addr; [all...] |
| /src/external/gpl3/gdb/dist/sim/d10v/ |
| interp.c | 46 static INLINE uint8_t *map_memory (SIM_DESC, SIM_CPU *, unsigned phys_addr); 598 /* Return a pointer into the raw buffer designated by phys_addr. It 603 map_memory (SIM_DESC sd, SIM_CPU *cpu, unsigned phys_addr) 608 int segment = ((phys_addr >> 24) & 0xff); 615 memory = &State.mem.unif[(phys_addr / SEGMENT_SIZE) % UMEM_SEGMENTS]; 622 memory = &State.mem.insn[(phys_addr / SEGMENT_SIZE) % IMEM_SEGMENTS]; 629 if ((phys_addr & 0xff00) == 0xff00) 631 phys_addr = (phys_addr & 0xffff); 632 if (phys_addr == DMAP2_SHADDOW [all...] |
| /src/external/gpl3/gdb.old/dist/bfd/ |
| elf32-m68hc12.c | 533 bfd_vma sym_value, phys_page, phys_addr; 567 phys_addr = m68hc11_phys_addr (&htab->pinfo, sym_value); 572 bfd_put_16 (stub_bfd, phys_addr, loc + 1); 532 bfd_vma sym_value, phys_page, phys_addr; local
|
| elf32-m68hc1x.c | 967 bfd_vma phys_addr; local 1056 phys_addr = m68hc11_phys_addr (pinfo, relocation + rel->r_addend); 1072 relocation = phys_addr; 1101 relocation = phys_addr; 1106 bfd_put_16 (input_bfd, phys_addr, 1121 relocation = phys_addr; 1169 "code."), (long) phys_addr)) 1184 (long) phys_page, (long) phys_addr, 1198 (long) phys_page, (long) phys_addr, 1201 relocation = phys_addr; [all...] |
| /src/external/gpl3/gdb.old/dist/sim/d10v/ |
| interp.c | 46 static INLINE uint8_t *map_memory (SIM_DESC, SIM_CPU *, unsigned phys_addr); 598 /* Return a pointer into the raw buffer designated by phys_addr. It 603 map_memory (SIM_DESC sd, SIM_CPU *cpu, unsigned phys_addr) 608 int segment = ((phys_addr >> 24) & 0xff); 615 memory = &State.mem.unif[(phys_addr / SEGMENT_SIZE) % UMEM_SEGMENTS]; 622 memory = &State.mem.insn[(phys_addr / SEGMENT_SIZE) % IMEM_SEGMENTS]; 629 if ((phys_addr & 0xff00) == 0xff00) 631 phys_addr = (phys_addr & 0xffff); 632 if (phys_addr == DMAP2_SHADDOW [all...] |
| /src/external/gpl3/gdb/dist/bfd/ |
| elf32-m68hc12.c | 533 bfd_vma sym_value, phys_page, phys_addr; 567 phys_addr = m68hc11_phys_addr (&htab->pinfo, sym_value); 572 bfd_put_16 (stub_bfd, phys_addr, loc + 1); 532 bfd_vma sym_value, phys_page, phys_addr; local
|
| elf32-m68hc1x.c | 968 bfd_vma phys_addr; local 1058 phys_addr = m68hc11_phys_addr (pinfo, relocation + rel->r_addend); 1074 relocation = phys_addr; 1103 relocation = phys_addr; 1108 bfd_put_16 (input_bfd, phys_addr, 1123 relocation = phys_addr; 1171 "code."), (long) phys_addr)) 1186 (long) phys_page, (long) phys_addr, 1200 (long) phys_page, (long) phys_addr, 1203 relocation = phys_addr; [all...] |
| /src/sys/arch/acorn32/stand/boot32/ |
| boot32.c | 504 int phys_addr; local 536 phys_addr = mem_pages_info[page].physical; 537 printf("[0x%x", phys_addr); 538 while (mem_pages_info[page+1].physical - phys_addr == nbpp) { 540 phys_addr >= DRAM_addr[0]) 543 phys_addr >= PODRAM_addr[0]) 546 phys_addr = mem_pages_info[page].physical; 548 printf("-0x%x] ", phys_addr + nbpp -1);
|
| /src/sys/arch/evbppc/nintendo/dev/ |
| bwdsp.c | 263 bwdsp_transfer(struct bwdsp_softc *sc, uint32_t phys_addr, size_t bufsize) 266 WR2(sc, sc->sc_dma_start_addr_h, phys_addr >> 16); 267 WR2(sc, sc->sc_dma_start_addr_l, phys_addr & 0xffff);
|
| /src/sys/arch/atari/dev/ |
| fd.c | 831 paddr_t phys_addr; local 914 phys_addr = (paddr_t)kvtop(sc->io_data); 915 if (phys_addr >= FDC_MAX_DMA_AD) { 919 phys_addr = (paddr_t)kvtop(sc->bounceb); 924 st_dmaaddr_set((void *)phys_addr); /* DMA address setup */
|
| /src/sys/dev/pci/cxgb/ |
| cxgb_adapter.h | 209 bus_addr_t phys_addr; member in struct:sge_rspq 235 bus_addr_t phys_addr; member in struct:sge_fl 263 bus_addr_t phys_addr; member in struct:sge_txq
|
| /src/sys/external/bsd/ena-com/ |
| ena_com.c | 363 io_sq->desc_addr.phys_addr, 371 io_sq->desc_addr.phys_addr, 441 io_cq->cdesc_addr.phys_addr, 449 io_cq->cdesc_addr.phys_addr, 840 io_cq->cdesc_addr.phys_addr, 852 io_sq->desc_addr.phys_addr, 1140 io_sq->desc_addr.phys_addr); 1318 io_cq->cdesc_addr.phys_addr); 2145 dma_addr_t phys_addr; local 2149 virt_addr, phys_addr, mem_handle) [all...] |
| /src/sys/arch/arm/nvidia/ |
| tegra_cec.c | 323 tegra_cec_get_phys_addr(struct tegra_cec_softc *sc, uint16_t *phys_addr) 334 if (!prop_dictionary_get_uint16(prop, "physical-address", phys_addr))
|
| /src/sys/arch/mvme68k/stand/netboot/ |
| if_ie.c | 93 u_int phys_addr; member in struct:ie_configuration 424 (struct iereg *)ie_config[nif->nif_unit].phys_addr;
|