/src/sys/dev/pci/ |
if_ath_pci.c | 159 pcireg_t mem_type; local in function:ath_pci_attach 176 mem_type = pci_mapreg_type(pc, pa->pa_tag, ATH_PCI_MMBA); 177 if (mem_type != PCI_MAPREG_TYPE_MEM && 178 mem_type != PCI_MAPREG_MEM_TYPE_64BIT) { 180 (int)mem_type); 183 if (pci_mapreg_map(pa, ATH_PCI_MMBA, mem_type, 0, &psc->sc_iot,
|
isp_pci.c | 490 pcireg_t mem_type; local in function:isp_pci_attach 502 mem_type = pci_mapreg_type(pa->pa_pc, pa->pa_tag, MEM_MAP_REG); 503 if (PCI_MAPREG_TYPE(mem_type) != PCI_MAPREG_TYPE_MEM) { 505 } else if (PCI_MAPREG_MEM_TYPE(mem_type) != PCI_MAPREG_MEM_TYPE_32BIT && 506 PCI_MAPREG_MEM_TYPE(mem_type) != PCI_MAPREG_MEM_TYPE_64BIT) { 509 memh_valid = (pci_mapreg_map(pa, MEM_MAP_REG, mem_type, 0,
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_posix.cc | 45 void *MmapOrDie(uptr size, const char *mem_type, bool raw_report) { 52 ReportMmapFailureAndDie(size, mem_type, "allocate", reserrno, raw_report); 68 void *MmapOrDieOnFatalError(uptr size, const char *mem_type) { 77 ReportMmapFailureAndDie(size, mem_type, "allocate", reserrno); 87 const char *mem_type) { 91 uptr map_res = (uptr)MmapOrDieOnFatalError(map_size, mem_type); 106 void *MmapNoReserveOrDie(uptr size, const char *mem_type) { 115 ReportMmapFailureAndDie(size, mem_type, "allocate noreserve", reserrno); 131 char mem_type[40]; local in function:__sanitizer::MmapFixedImpl 132 internal_snprintf(mem_type, sizeof(mem_type), "memory at address 0x%zx" [all...] |
sanitizer_win.cc | 111 void *MmapOrDie(uptr size, const char *mem_type, bool raw_report) { 114 ReportMmapFailureAndDie(size, mem_type, "allocate", 139 static void *ReturnNullptrOnOOMOrDie(uptr size, const char *mem_type, 144 ReportMmapFailureAndDie(size, mem_type, mmap_type, last_error); 147 void *MmapOrDieOnFatalError(uptr size, const char *mem_type) { 150 return ReturnNullptrOnOOMOrDie(size, mem_type, "allocate"); 156 const char *mem_type) { 166 return ReturnNullptrOnOOMOrDie(size, mem_type, "allocate aligned"); 173 ReportMmapFailureAndDie(size, mem_type, "deallocate", GetLastError()); 186 return ReturnNullptrOnOOMOrDie(size, mem_type, "allocate aligned") 237 char mem_type[30]; local in function:__sanitizer::MmapFixedOrDie 268 char mem_type[30]; local in function:__sanitizer::MmapFixedOrDieOnFatalError [all...] |
/src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
amdgpu_atombios.h | 89 u8 mem_type; member in struct:atom_memory_info
|
amdgpu_atomfirmware.c | 191 u8 mem_type; local in function:amdgpu_atomfirmware_get_vram_info 216 mem_type = igp_info->v11.memorytype; 218 *vram_type = convert_atom_mem_type_to_vram_type(adev, mem_type); 237 mem_type = vram_module->v9.memory_type; 239 *vram_type = convert_atom_mem_type_to_vram_type(adev, mem_type); 257 mem_type = vram_module->v10.memory_type; 259 *vram_type = convert_atom_mem_type_to_vram_type(adev, mem_type);
|
amdgpu_object.c | 73 if (bo->tbo.mem.mem_type == TTM_PL_VRAM) { 77 } else if (bo->tbo.mem.mem_type == TTM_PL_TT) { 592 bo->tbo.mem.mem_type == TTM_PL_VRAM && 919 uint32_t mem_type = bo->tbo.mem.mem_type; local in function:amdgpu_bo_pin_restricted 921 if (!(domain & amdgpu_mem_type_to_domain(mem_type))) 927 u64 domain_start = bo->tbo.bdev->man[mem_type].gpu_offset; 962 domain = amdgpu_mem_type_to_domain(bo->tbo.mem.mem_type); 1303 trace_amdgpu_bo_move(abo, new_mem->mem_type, old_mem->mem_type); [all...] |
amdgpu_vm.c | 348 amdgpu_mem_type_to_domain(bo->tbo.mem.mem_type)) 1801 if (mem->mem_type == TTM_PL_TT) { 1845 uint32_t mem_type = bo->tbo.mem.mem_type; local in function:amdgpu_vm_bo_update 1848 amdgpu_mem_type_to_domain(mem_type)))
|
/src/sys/external/bsd/drm2/dist/drm/i915/ |
i915_gem.c | 258 enum intel_memory_type mem_type; local in function:i915_gem_dumb_create 289 mem_type = INTEL_MEMORY_SYSTEM; 291 mem_type = INTEL_MEMORY_LOCAL; 295 mem_type),
|
/src/sys/external/bsd/drm2/dist/drm/vmwgfx/ |
vmwgfx_ttm_buffer.c | 249 int mem_type; member in struct:vmw_ttm_tt 595 vmw_be->mem_type = bo_mem->mem_type; 597 switch (bo_mem->mem_type) { 623 switch (vmw_be->mem_type) { 804 struct ttm_mem_type_manager *man = &bdev->man[mem->mem_type]; 814 switch (mem->mem_type) {
|
/src/sys/external/bsd/drm2/dist/include/drm/ttm/ |
ttm_bo_api.h | 116 uint32_t mem_type; member in struct:ttm_mem_reg 578 * @mem_type: The memory type. 596 * @mem_type: The memory type. 618 int ttm_bo_clean_mm(struct ttm_bo_device *bdev, unsigned mem_type); 624 * @mem_type: The memory type. 638 int ttm_bo_evict_mm(struct ttm_bo_device *bdev, unsigned mem_type);
|
/src/sys/stand/efiboot/ |
boot.c | 361 const char *mem_type = "<unknown>"; local in function:command_mem 363 mem_type = efi_memory_type[md->Type]; 366 mem_type, md->PhysicalStart, md->PhysicalStart + (md->NumberOfPages * EFI_PAGE_SIZE) - 1,
|
/src/sys/external/bsd/drm2/dist/drm/amd/amdkfd/ |
kfd_topology.c | 330 static struct kobj_type mem_type = { variable in typeref:struct:kobj_type 682 ret = kobject_init_and_add(mem->kobj, &mem_type,
|
/src/sys/external/bsd/drm2/dist/drm/radeon/ |
radeon_ni.c | 647 u32 mem_type, running, blackout = 0; local in function:ni_mc_load_microcode 678 mem_type = (RREG32(MC_SEQ_MISC0) & MC_SEQ_MISC0_GDDR5_MASK) >> MC_SEQ_MISC0_GDDR5_SHIFT; 681 if ((mem_type == MC_SEQ_MISC0_GDDR5_VALUE) && (running == 0)) {
|
radeon_mode.h | 640 u8 mem_type; member in struct:atom_memory_info
|
/src/sys/external/mit/xen-include-public/dist/xen/include/public/hvm/ |
hvm_op.h | 159 uint16_t mem_type; member in struct:xen_hvm_get_mem_type
|
dm_op.h | 292 uint16_t mem_type; member in struct:xen_dm_op_set_mem_type
|
/src/sys/external/bsd/drm2/dist/drm/ttm/ |
ttm_bo.c | 92 uint32_t *mem_type) 100 *mem_type = pos - 1; 105 int mem_type) 107 struct ttm_mem_type_manager *man = &bdev->man[mem_type]; 116 if (mem_type != TTM_PL_SYSTEM) 124 int i, ret, mem_type; local in function:ttm_bo_mem_space_debug 131 &mem_type); 135 i, placement->placement[i].flags, mem_type); 136 ttm_mem_type_debug(bo->bdev, &p, mem_type); 208 man = &bdev->man[mem->mem_type]; 1055 uint32_t mem_type = TTM_PL_SYSTEM; local in function:ttm_bo_mem_placement [all...] |
/src/sys/external/bsd/drm2/dist/drm/i915/gvt/ |
kvmgt.c | 865 u32 mem_type; local in function:intel_vgpu_get_bar_addr 869 mem_type = (*(u32 *)(vgpu->cfg_space.virtual_cfg_space + bar)) & 872 switch (mem_type) {
|
/src/sys/external/bsd/sljit/dist/sljit_src/ |
sljitNativeMIPS_common.c | 1898 # define mem_type WORD_DATA macro 1900 sljit_s32 mem_type = (op & SLJIT_I32_OP) ? (INT_DATA | SIGNED_DATA) : WORD_DATA; local in function:sljit_emit_op_flags 1913 mem_type = INT_DATA | SIGNED_DATA; 1921 FAIL_IF(emit_op_mem2(compiler, mem_type | LOAD_DATA, DR(TMP_REG1), src, srcw, dst, dstw)); 1967 return emit_op(compiler, op | flags, mem_type | CUMULATIVE_OP | LOGICAL_OP | IMM_OP | ALT_KEEP_CACHE, dst, dstw, src, srcw, TMP_REG2, 0); 1971 return emit_op_mem(compiler, mem_type, dst_ar, dst, dstw); 1978 # undef mem_type
|
sljitNativeTILEGX_64.c | 2091 sljit_s32 mem_type = (op & SLJIT_I32_OP) ? (INT_DATA | SIGNED_DATA) : WORD_DATA; local in function:sljit_emit_op_flags 2102 mem_type = INT_DATA | SIGNED_DATA; 2109 FAIL_IF(emit_op_mem2(compiler, mem_type | LOAD_DATA, TMP_REG1_mapped, src, srcw, dst, dstw)); 2161 return emit_op(compiler, op | flags, mem_type | CUMULATIVE_OP | LOGICAL_OP | IMM_OP | ALT_KEEP_CACHE, dst, dstw, src, srcw, TMP_REG2, 0); 2165 return emit_op_mem(compiler, mem_type, dst_ar, dst, dstw);
|
/src/sys/external/bsd/drm/dist/shared-core/ |
drm.h | 954 unsigned int mem_type; member in struct:drm_mm_type_arg 962 unsigned int mem_type; member in struct:drm_mm_init_arg 968 unsigned int mem_type; member in struct:drm_mm_info_arg
|