/src/sys/dev/fdt/ |
fdt_iommu.c | 81 u_int cells; local in function:fdtbus_register_iommu 87 if (of_getprop_uint32(phandle, "#iommu-cells", &cells) != 0) { 99 iommu->iommu_cells = cells; 119 u_int n, cells; local in function:fdtbus_iommu_map 130 if (of_getprop_uint32(iommu_phandle, "#iommu-cells", &cells)) { 139 cells > 0 ? &p[1] : NULL, dmat); 141 resid -= (cells + 1) * 4; 142 p += cells + 1 161 u_int cells; local in function:fdtbus_iommu_map_pci [all...] |
fdt_powerdomain.c | 67 uint32_t cells; local in function:fdtbus_register_powerdomain_controller 68 if (of_getprop_uint32(phandle, "#power-domain-cells", &cells) != 0) { 69 aprint_debug_dev(dev, "missing #power-domain-cells"); 77 pdc->pdc_cells = cells;
|
fdt_mbox.c | 65 uint32_t cells; local in function:fdtbus_register_mbox_controller 66 if (of_getprop_uint32(phandle, "#mbox-cells", &cells) != 0) { 67 aprint_debug_dev(dev, "missing #mbox-cells"); 75 mc->mc_cells = cells;
|
fdt_intr.c | 363 uint32_t cells; local in function:find_address_cells 365 if (of_getprop_uint32(phandle, "#address-cells", &cells) != 0) 366 cells = 2; 368 return cells; 374 uint32_t cells; local in function:find_interrupt_cells 377 if (of_getprop_uint32(phandle, "#interrupt-cells", &cells) == 0) 378 return cells; 395 /* child unit address: #address-cells prop of child bus node * [all...] |
/src/sys/arch/macppc/stand/ofwboot/ |
loadfile_machdep.c | 54 uint32_t cells[2+2+1+2]; local in function:ofw_claimphys 55 uint32_t *p = cells; 77 ofw_address_cells, (int *)cells) == -1) { 103 uint32_t cells[2+2]; local in function:ofw_releasephys 104 uint32_t *p = cells; 123 0, (int *)cells) == -1) { 134 uint32_t cells[1+1+1+1]; local in function:ofw_claimvirt 135 uint32_t *p = cells; 143 3, 1, (int *)cells) == -1) { 162 uint32_t cells[1+1] local in function:ofw_releasevirt 180 uint32_t cells[2+1+1+1]; local in function:ofw_map [all...] |
ofdev.c | 103 uint32_t cells[2]; local in function:devclose 106 cells[0] = (uintptr_t)op->dmabuf; 107 cells[1] = MAXPHYS; 111 OF_call_method("dma-free", op->handle, 2, 0, (int *)cells); 392 uint32_t cells[2]; local in function:devopen 440 cells[0] = MAXPHYS; 441 OF_call_method("dma-alloc", handle, 1, 1, (int *)cells); 442 ofdev.dmabuf = (void*)(uintptr_t)cells[1];
|
/src/sys/arch/arm/samsung/ |
exynos_gpio.c | 465 const u_int *cells = data; local in function:exynos_gpio_fdt_acquire 466 const int pin = be32toh(cells[1]) & 0x0f; 467 const int actlo = be32toh(cells[2]) & 0x01;
|
/src/sys/arch/arm/ti/ |
am3_prcm.c | 210 const u_int *cells = data; local in function:am3_prcm_clock_decode 217 bus_size_t regoff = be32toh(cells[0]); 218 const u_int clock_index = be32toh(cells[1]);
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_addrhashmap.h | 54 Cell cells[1]; // variable len member in struct:__sanitizer::AddrHashMap::AddBucket 62 Cell cells[kBucketSize]; member in struct:__sanitizer::AddrHashMap::Bucket 185 // Check the embed cells. 187 Cell *c = &b->cells[i]; 195 // Check the add cells with read lock. 200 Cell *c = &add->cells[i]; 213 // Embed cells. 216 Cell *c = &b->cells[i]; 228 // Add cells. 232 Cell *c = &add->cells[i] [all...] |
/src/sys/arch/powerpc/include/ |
pci_machdep.h | 450 int16_t cells; member in struct:_ofw_pic_node_t
|
/src/sys/dev/wscons/ |
wsdisplay_vcons.c | 90 int cells; member in struct:vcons_data_private 221 vdp->cells = 0; 356 if (size > vdp->cells) { 361 vdp->cells = size; 1720 for (i = 0; i < vdp->cells; i++) {
|
/src/sys/arch/arm/sociox/ |
if_scx.c | 638 u_int index, n, cells; local in function:get_clk_freq 652 if (of_getprop_uint32(cc_phandle, "#clock-cells", &cells)) 660 resid -= (cells + 1) * 4; 661 p += (cells + 1) * 4;
|