Searched refs:new_mem (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/sys/dev/drm2/ttm/
H A Dttm_bo_util.c46 bool no_wait_gpu, struct ttm_mem_reg *new_mem)
60 ret = ttm_tt_set_placement_caching(ttm, new_mem->placement);
64 if (new_mem->mem_type != TTM_PL_SYSTEM) {
65 ret = ttm_tt_bind(ttm, new_mem);
70 *old_mem = *new_mem;
71 new_mem->mm_node = NULL;
295 struct ttm_mem_reg *new_mem)
298 struct ttm_mem_type_manager *man = &bdev->man[new_mem->mem_type];
313 ret = ttm_mem_reg_ioremap(bdev, new_mem, &new_iomap);
335 if ((old_mem->mem_type == new_mem
44 ttm_bo_move_ttm(struct ttm_buffer_object *bo, bool evict, bool no_wait_gpu, struct ttm_mem_reg *new_mem) argument
293 ttm_bo_move_memcpy(struct ttm_buffer_object *bo, bool evict, bool no_wait_gpu, struct ttm_mem_reg *new_mem) argument
596 ttm_bo_move_accel_cleanup(struct ttm_buffer_object *bo, void *sync_obj, bool evict, bool no_wait_gpu, struct ttm_mem_reg *new_mem) argument
[all...]
H A Dttm_bo_driver.h392 * @new_mem: the new memory region receiving the buffer
399 struct ttm_mem_reg *new_mem);
436 struct ttm_mem_reg *new_mem);
912 * @new_mem: struct ttm_mem_reg indicating where to move.
916 * free any old aperture space, and set (@new_mem)->mm_node to NULL,
919 * memory space indicated by @new_mem.
926 struct ttm_mem_reg *new_mem);
934 * @new_mem: struct ttm_mem_reg indicating where to move.
938 * free any old aperture space, and set (@new_mem)->mm_node to NULL,
941 * memory space indicated by @new_mem
[all...]
/freebsd-11-stable/sys/dev/drm2/radeon/
H A Dradeon_ttm.c211 struct ttm_mem_reg *new_mem)
216 *old_mem = *new_mem;
217 new_mem->mm_node = NULL;
222 struct ttm_mem_reg *new_mem,
233 new_start = new_mem->start << PAGE_SHIFT;
246 switch (new_mem->mem_type) {
267 new_mem->num_pages * (PAGE_SIZE / RADEON_GPU_PAGE_SIZE), /* GPU pages */
271 evict, no_wait_gpu, new_mem);
279 struct ttm_mem_reg *new_mem)
289 tmp_mem = *new_mem;
210 radeon_move_null(struct ttm_buffer_object *bo, struct ttm_mem_reg *new_mem) argument
220 radeon_move_blit(struct ttm_buffer_object *bo, bool evict, bool no_wait_gpu, struct ttm_mem_reg *new_mem, struct ttm_mem_reg *old_mem) argument
276 radeon_move_vram_ram(struct ttm_buffer_object *bo, bool evict, bool interruptible, bool no_wait_gpu, struct ttm_mem_reg *new_mem) argument
323 radeon_move_ram_vram(struct ttm_buffer_object *bo, bool evict, bool interruptible, bool no_wait_gpu, struct ttm_mem_reg *new_mem) argument
363 radeon_bo_move(struct ttm_buffer_object *bo, bool evict, bool interruptible, bool no_wait_gpu, struct ttm_mem_reg *new_mem) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_interceptors.cpp453 void *new_mem = asan_malloc(length + 1, &stack); local
454 REAL(memcpy)(new_mem, s, length + 1);
455 return reinterpret_cast<char*>(new_mem);
469 void *new_mem = asan_malloc(length + 1, &stack); local
470 REAL(memcpy)(new_mem, s, length + 1);
471 return reinterpret_cast<char*>(new_mem);
/freebsd-11-stable/contrib/apr/include/
H A Dapr_thread_proc.h352 * @param new_mem The data stored in private memory
355 APR_DECLARE(apr_status_t) apr_threadkey_private_get(void **new_mem,
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc300 char *new_mem = (char *)WRAP(malloc)(copy_length + 1); \
304 COMMON_INTERCEPTOR_COPY_STRING(ctx, new_mem, s, copy_length); \
305 internal_memcpy(new_mem, s, copy_length); \
306 new_mem[copy_length] = '\0'; \
307 return new_mem;

Completed in 211 milliseconds