/src/sys/arch/amd64/amd64/ |
gdt.c | 214 struct region_descriptor region; local in function:gdt_init_cpu 218 setregion(®ion, ci->ci_gdt, (uint16_t)(gdt_size - 1)); 219 lgdt(®ion);
|
machdep.c | 1505 struct region_descriptor region; local in function:cpu_init_idt 1509 setregion(®ion, idt, NIDT * sizeof(idt[0]) - 1); 1510 lidt(®ion); 1720 struct region_descriptor region; local in function:init_x86_64 1991 setregion(®ion, gdtstore, DYNSEL_START - 1); 1992 lgdt(®ion);
|
/src/sys/external/bsd/drm2/dist/drm/i915/ |
intel_memory_region.c | 160 return i915_buddy_init(&mem->mm, resource_size(&mem->region), 185 mem->region = (struct resource)DEFINE_RES_MEM(start, size); 249 /* Global memory region registration -- only slight layer inversions! */ 277 DRM_ERROR("Failed to setup region(%d) type=%d\n", err, type); 300 struct intel_memory_region *region = local in function:intel_memory_regions_driver_release 303 if (region) 304 intel_memory_region_put(region);
|
intel_memory_region.h | 79 struct resource region; member in struct:intel_memory_region
|
/src/sys/arch/i386/i386/ |
gdt.c | 217 struct region_descriptor region; local in function:gdt_init_cpu 219 setregion(®ion, ci->ci_gdt, gdt_size - 1); 220 lgdt(®ion);
|
machdep.c | 957 struct region_descriptor region; local in function:cpu_init_idt 963 setregion(®ion, idt, NIDT * sizeof(idt[0]) - 1); 964 lidt(®ion); 1011 struct region_descriptor region; local in function:initgdt 1037 setregion(®ion, gdtstore, NGDT * sizeof(gdtstore[0]) - 1); 1038 lgdt(®ion); 1180 struct region_descriptor region; local in function:init386 1475 setregion(®ion, gdtstore, NGDT * sizeof(gdtstore[0]) - 1); 1476 lgdt(®ion); 1551 struct region_descriptor region; [all...] |
/src/sys/arch/amd64/stand/prekern/ |
prekern.c | 158 struct region_descriptor region; local in function:init_idt 168 setregion(®ion, &idtstore, PAGE_SIZE - 1); 169 lidt(®ion);
|
/src/sys/dev/i2o/ |
i2odpt.h | 85 u_int32_t region; member in struct:i2o_dpt_flash_region
|
/src/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/argon2/ |
argon2-core.h | 96 block_region *region; /* Memory region pointer */ member in struct:Argon2_instance_t
|
/src/sys/arch/powerpc/oea/ |
ofwoea_machdep.c | 551 * Find a region of memory, and create a bus_space_tag for it. 563 rangemap_t region, holes[32], list[32]; local in function:ofwoea_map_space 566 memset(®ion, 0, sizeof(region)); 643 memcpy(®ion, &list[range], sizeof(rangemap_t)); 649 if (region.addr + region.size < list[range].addr) { 652 holes[nrofholes].addr = region.size + region.addr; 657 region.size = list[range].size + list[range].addr [all...] |
/src/sys/external/bsd/drm2/dist/drm/amd/display/dmub/inc/ |
dmub_srv.h | 113 * struct dmub_region - dmub hw memory region 114 * @base: base address for region, must be 256 byte aligned 115 * @top: top address for region 125 * @r: region in uc address space for cache window 129 struct dmub_region region; member in struct:dmub_window 133 * struct dmub_fb - defines a dmub framebuffer memory region 134 * @cpu_addr: cpu virtual address for the region, NULL if invalid 135 * @gpu_addr: gpu virtual address for the region, NULL if invalid 136 * @size: size of the region in bytes, zero if invalid 159 * struct dmub_srv_region_info - output region info from the dmub servic [all...] |
/src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/ |
fb.h | 44 struct nvkm_fb_tile region[16]; member in struct:nvkm_fb::__anonc03e02340108 54 void nvkm_fb_tile_init(struct nvkm_fb *, int region, u32 addr, u32 size, 56 void nvkm_fb_tile_fini(struct nvkm_fb *, int region, struct nvkm_fb_tile *); 57 void nvkm_fb_tile_prog(struct nvkm_fb *, int region, struct nvkm_fb_tile *);
|
/src/sys/dev/raidframe/ |
rf_paritymap.c | 87 unsigned region = sector / pm->region_size; local in function:rf_paritymap_test 91 retval = isset(pm->disk_boot->bits, region) ? 1 : 0; 123 rf_paritymap_begin_region(struct rf_paritymap *pm, unsigned region) 127 KASSERT(region < RF_PARITYMAP_NREG); 132 if (pm->current->state[region] < 0) 133 pm->current->state[region] = 0; 136 KASSERT(pm->current->state[region] < 127); 137 pm->current->state[region]++; 139 needs_write = isclr(pm->disk_now->bits, region); 142 KASSERT(pm->current->state[region] == 1) [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_allocator_primary32.h | 26 // Region: 31 // a ByteMap possible_regions to store the size classes of each Region. 32 // 0 size class means the region is not used by the allocator. 34 // One Region is used to allocate chunks of a single size class. 35 // A Region looks like this: 244 for (uptr region = 0; region < kNumPossibleRegions; region++) local in function:SizeClassAllocator32::ForEachChunk 245 if (possible_regions[region]) { 246 uptr chunk_size = ClassIdToSize(possible_regions[region]); 331 const uptr region = AllocateRegion(stat, class_id); local in function:SizeClassAllocator32::PopulateFreeList [all...] |
sanitizer_allocator_primary64.h | 29 // Region: a part of Space dedicated to a single size class. 37 // A Region looks like this: 62 // When we know the size class (the region base) we can represent a pointer 63 // as a 4-byte integer (offset from the region start shifted right by 4). 112 RegionInfo *region = GetRegionInfo(class_id); local in function:SizeClassAllocator64::ReturnToAllocator 116 BlockingMutexLock l(®ion->mutex); 117 uptr old_num_chunks = region->num_freed_chunks; 121 if (UNLIKELY(!EnsureFreeArraySpace(region, region_beg, 130 region->num_freed_chunks = new_num_freed_chunks; 131 region->stats.n_freed += n_chunks 138 RegionInfo *region = GetRegionInfo(class_id); local in function:SizeClassAllocator64::GetFromAllocator 192 RegionInfo *region = GetRegionInfo(class_id); local in function:SizeClassAllocator64::GetBlockBegin 234 RegionInfo *region = GetRegionInfo(class_id); local in function:SizeClassAllocator64::PrintStats 261 RegionInfo *region = GetRegionInfo(class_id); local in function:SizeClassAllocator64::PrintStats 295 RegionInfo *region = GetRegionInfo(class_id); local in function:SizeClassAllocator64::ForEachChunk 820 RegionInfo *region = GetRegionInfo(class_id); local in function:SizeClassAllocator64::MaybeReleaseToOS [all...] |
/src/sys/external/bsd/drm2/dist/drm/i915/gem/ |
i915_gem_object_types.h | 206 * Memory region for this object. 208 struct intel_memory_region *region; member in struct:drm_i915_gem_object::__anonbfddbbad0408 210 * List of memory region blocks allocated for this object. 214 * Element within memory_region->objects or region->purgeable 216 * region->obj_lock.
|
/src/sys/external/bsd/compiler_rt/dist/lib/interception/ |
interception_win.cc | 23 // region is used. A trampoline region is a memory space withing 2G boundary 326 // Check whether a region can be allocated at |address|. 335 // Move to the next region. 360 // Find a region within 2G with enough space to allocate |size| bytes. 361 TrampolineMemoryRegion *region = nullptr; local in function:__interception::AllocateMemoryForTrampoline 365 // No valid region found, allocate a new region. 374 region = current; 384 // The space can be allocated in the current region [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/lsan/ |
lsan_common.cc | 317 LOG_POINTERS("Root region %p-%p intersects with mapped region %p-%p (%s)\n", 825 RootRegion region = {reinterpret_cast<uptr>(begin), size}; local in function:__lsan_register_root_region 826 root_regions->push_back(region); 827 VReport(1, "Registered root region at %p of size %llu\n", begin, size); 838 RootRegion region = (*root_regions)[i]; local in function:__lsan_unregister_root_region 839 if (region.begin == reinterpret_cast<uptr>(begin) && region.size == size) { 844 VReport(1, "Unregistered root region at %p of size %llu\n", begin, size); 850 "__lsan_unregister_root_region(): region at %p of size %llu has not [all...] |
/src/sys/external/bsd/drm2/dist/drm/vmwgfx/ |
vmwgfx_stdu.c | 621 struct drm_clip_rect region; local in function:vmw_stdu_bo_cpu_commit 625 region.x1 = diff.rect.x1; 626 region.x2 = diff.rect.x2; 627 region.y1 = diff.rect.y1; 628 region.y2 = diff.rect.y2; 629 ret = vmw_kms_update_proxy(&stdu->display_srf->res, ®ion, 641 region.x1, region.x2, 642 region.y1, region.y2) [all...] |
/src/sys/arch/arm/rockchip/ |
rk3399_pcie.c | 45 /* APB region */ 115 /* AXI region */ 456 int region, i, ranges_len; local in function:rkpcie_atr_init 458 /* Use region 0 to map PCI configuration space */ 487 /* Only support mappings aligned on a region boundary. */ 495 /* Mappings should lie in AXI region. */ 502 region = 1 + (offset / PCIE_ATR_OB_REGION_SIZE); 505 HWRITE4(sc, PCIE_ATR_OB_ADDR0(region), 32 - 1); 506 HWRITE4(sc, PCIE_ATR_OB_ADDR1(region), 0); 507 HWRITE4(sc, PCIE_ATR_OB_DESC0(region), type | PCIE_ATR_HDR_RID) [all...] |
/src/sys/dev/pci/qat/ |
qat_ae.c | 2746 int region; local in function:qat_aefw_uof_assign_image 2749 region = page->qap_page->qup_page_region; 2750 if (region >= nregions) 2753 page->qap_region = &slice->qas_regions[region]; 2755 "ae %p slice %d page %d assign region %d\n", 2756 qae, qae->qae_num_slices, i, region); 2989 "unsupported memory region to init: %d\n", 3369 "region != 0 is not supported\n");
|
/src/sys/external/bsd/drm2/dist/drm/i915/gvt/ |
gvt.h | 204 struct vfio_region *region; member in struct:intel_vgpu::__anon1940818c0308
|
kvmgt.c | 74 struct vfio_region *region); 419 void *base = vgpu->vdev.region[i].data; 422 if (pos >= vgpu->vdev.region[i].size || iswrite) { 426 count = min(count, (size_t)(vgpu->vdev.region[i].size - pos)); 433 struct vfio_region *region) 443 struct vfio_edid_region *region, char *buf, 446 struct vfio_region_gfx_edid *regs = ®ion->vfio_edid_regs; 461 (u8 *)region->edid_blob, 488 gvt_vgpu_err("write read-only EDID region at offset %d\n", 499 static int handle_edid_blob(struct vfio_edid_region *region, char *buf 519 struct vfio_edid_region *region = local in function:intel_vgpu_reg_rw_edid 552 struct vfio_region *region; local in function:intel_vgpu_register_reg [all...] |
/src/sys/external/bsd/drm/dist/shared-core/ |
i915_drm.h | 36 /* Each region is a minimum of 16k, and there are at most 255 of them. 326 int region; member in struct:drm_i915_mem_alloc 333 int region; member in struct:drm_i915_mem_free 338 int region; member in struct:drm_i915_mem_init_heap 347 int region; member in struct:drm_i915_mem_destroy_heap
|
radeon_drm.h | 310 /* There are 2 heaps (local/GART). Each region within a heap is a 702 int region; member in struct:drm_radeon_mem_alloc 709 int region; member in struct:drm_radeon_mem_free 714 int region; member in struct:drm_radeon_mem_init_heap
|