HomeSort by: relevance | last modified time | path
    Searched defs:mem_type (Results 1 - 25 of 32) sorted by relevancy

1 2

  /src/sys/dev/pci/
if_ath_pci.c 159 pcireg_t mem_type; local
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
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
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
268 char mem_type[30]; local
    [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
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
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
1848 amdgpu_mem_type_to_domain(mem_type)))
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_posix.cpp 46 void *MmapOrDie(uptr size, const char *mem_type, bool raw_report) {
49 MAP_PRIVATE | MAP_ANON, mem_type);
52 ReportMmapFailureAndDie(size, mem_type, "allocate", reserrno, raw_report);
66 void *MmapOrDieOnFatalError(uptr size, const char *mem_type) {
69 MAP_PRIVATE | MAP_ANON, mem_type);
74 ReportMmapFailureAndDie(size, mem_type, "allocate", reserrno);
84 const char *mem_type) {
93 uptr map_res = (uptr)MmapOrDieOnFatalError(map_size, mem_type);
111 void *MmapNoReserveOrDie(uptr size, const char *mem_type) {
114 MAP_PRIVATE | MAP_ANON | MAP_NORESERVE, mem_type);
132 char mem_type[40]; local
    [all...]
sanitizer_win.cpp 139 void *MmapOrDie(uptr size, const char *mem_type, bool raw_report) {
142 ReportMmapFailureAndDie(size, mem_type, "allocate",
167 static void *ReturnNullptrOnOOMOrDie(uptr size, const char *mem_type,
172 ReportMmapFailureAndDie(size, mem_type, mmap_type, last_error);
175 void *MmapOrDieOnFatalError(uptr size, const char *mem_type) {
178 return ReturnNullptrOnOOMOrDie(size, mem_type, "allocate");
184 const char *mem_type) {
194 return ReturnNullptrOnOOMOrDie(size, mem_type, "allocate aligned");
201 ReportMmapFailureAndDie(size, mem_type, "deallocate", GetLastError());
214 return ReturnNullptrOnOOMOrDie(size, mem_type, "allocate aligned")
281 char mem_type[30]; local
313 char mem_type[30]; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_posix.cpp 44 void *MmapOrDie(uptr size, const char *mem_type, bool raw_report) {
47 MAP_PRIVATE | MAP_ANON, mem_type);
50 ReportMmapFailureAndDie(size, mem_type, "allocate", reserrno, raw_report);
66 void *MmapOrDieOnFatalError(uptr size, const char *mem_type) {
69 MAP_PRIVATE | MAP_ANON, mem_type);
74 ReportMmapFailureAndDie(size, mem_type, "allocate", reserrno);
84 const char *mem_type) {
88 uptr map_res = (uptr)MmapOrDieOnFatalError(map_size, mem_type);
103 void *MmapNoReserveOrDie(uptr size, const char *mem_type) {
106 MAP_PRIVATE | MAP_ANON | MAP_NORESERVE, mem_type);
124 char mem_type[40]; local
    [all...]
sanitizer_win.cpp 130 void *MmapOrDie(uptr size, const char *mem_type, bool raw_report) {
133 ReportMmapFailureAndDie(size, mem_type, "allocate",
158 static void *ReturnNullptrOnOOMOrDie(uptr size, const char *mem_type,
163 ReportMmapFailureAndDie(size, mem_type, mmap_type, last_error);
166 void *MmapOrDieOnFatalError(uptr size, const char *mem_type) {
169 return ReturnNullptrOnOOMOrDie(size, mem_type, "allocate");
175 const char *mem_type) {
185 return ReturnNullptrOnOOMOrDie(size, mem_type, "allocate aligned");
192 ReportMmapFailureAndDie(size, mem_type, "deallocate", GetLastError());
205 return ReturnNullptrOnOOMOrDie(size, mem_type, "allocate aligned")
261 char mem_type[30]; local
293 char mem_type[30]; local
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_gem.c 258 enum intel_memory_type mem_type; local
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
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
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)) {
  /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/external/gpl3/gcc/dist/gcc/config/s390/
s390-c.cc 502 tree mem_type = build_aligned_type (return_type, align); local
503 return build2 (MEM_REF, mem_type,
515 tree mem_type = build_aligned_type (TREE_TYPE ((*arglist)[0]), align); local
516 return build2 (MODIFY_EXPR, mem_type,
517 build2 (MEM_REF, mem_type,
  /src/external/gpl3/gcc.old/dist/gcc/config/s390/
s390-c.cc 501 tree mem_type = build_aligned_type (return_type, align); local
502 return build2 (MEM_REF, mem_type,
514 tree mem_type = build_aligned_type (TREE_TYPE ((*arglist)[0]), align); local
515 return build2 (MODIFY_EXPR, mem_type,
516 build2 (MEM_REF, 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
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
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/gvt/
kvmgt.c 865 u32 mem_type; local
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
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 macro

Completed in 64 milliseconds

1 2