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

1 2 3

  /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,
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,
  /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_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...]
  /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_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_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...]
  /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...]
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...]
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),
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) {
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);
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,

Completed in 64 milliseconds

1 2 3