Home
last modified time | relevance | path

Searched refs:placement (Results 1 – 25 of 65) sorted by relevance

123

/dragonfly/sys/dev/drm/ttm/
H A Dttm_bo.c100 ret = ttm_mem_type_from_place(&placement->placement[i], in ttm_bo_mem_space_debug()
105 i, placement->placement[i].flags, mem_type); in ttm_bo_mem_space_debug()
245 ((mem->placement & bo->mem.placement & TTM_PL_MASK_CACHING) == 0)) { in ttm_bo_handle_move_mem()
636 placement.num_placement = 0; in ttm_bo_evict()
640 if (!placement.num_placement && !placement.num_busy_placement) { in ttm_bo_evict()
919 const struct ttm_place *place = &placement->placement[i]; in ttm_bo_mem_space()
963 mem->placement = cur_flags; in ttm_bo_mem_space()
991 mem->placement = cur_flags; in ttm_bo_mem_space()
1069 if (ttm_bo_places_compat(placement->placement, placement->num_placement, in ttm_bo_mem_compat()
1073 if ((placement->busy_placement != placement->placement || in ttm_bo_mem_compat()
[all …]
H A Dttm_bo_util.c71 ttm_flag_masked(&old_mem->placement, TTM_PL_FLAG_SYSTEM, in ttm_bo_move_ttm()
76 ret = ttm_tt_set_placement_caching(ttm, new_mem->placement); in ttm_bo_move_ttm()
221 if (mem->placement & TTM_PL_FLAG_WC) in ttm_mem_reg_ioremap()
401 pgprot_t prot = ttm_io_prot(old_mem->placement, in ttm_bo_move_memcpy()
406 pgprot_t prot = ttm_io_prot(new_mem->placement, in ttm_bo_move_memcpy()
476 fbo->base.mem.placement |= TTM_PL_FLAG_NO_EVICT; in ttm_buffer_object_transfer()
547 if (mem->placement & TTM_PL_FLAG_WC) in ttm_bo_ioremap()
577 if (num_pages == 1 && (mem->placement & TTM_PL_FLAG_CACHED)) { in ttm_bo_kmap_ttm()
591 prot = ttm_io_prot(mem->placement, PAGE_KERNEL); in ttm_bo_kmap_ttm()
H A Dttm_bo_vm.c234 cvma.vm_page_prot = ttm_io_prot(bo->mem.placement, in ttm_bo_vm_fault()
245 cvma.vm_page_prot = ttm_io_prot(bo->mem.placement, in ttm_bo_vm_fault()
675 pmap_page_set_memattr(m, ttm_io_prot(bo->mem.placement, 0)); in ttm_bo_vm_fault_dfly()
677 cvma.vm_page_prot = ttm_io_prot(bo->mem.placement, in ttm_bo_vm_fault_dfly()
681 cvma.vm_page_prot = ttm_io_prot(bo->mem.placement, in ttm_bo_vm_fault_dfly()
702 (bo->mem.placement & TTM_PL_FLAG_CACHED) ? in ttm_bo_vm_fault_dfly()
703 VM_MEMATTR_WRITE_BACK : ttm_io_prot(bo->mem.placement, 0)); in ttm_bo_vm_fault_dfly()
H A Dttm_tt.c200 int ttm_tt_set_placement_caching(struct ttm_tt *ttm, uint32_t placement) in ttm_tt_set_placement_caching() argument
204 if (placement & TTM_PL_FLAG_WC) in ttm_tt_set_placement_caching()
206 else if (placement & TTM_PL_FLAG_UNCACHED) in ttm_tt_set_placement_caching()
H A Dttm_agp_backend.c56 int ret, cached = (bo_mem->placement & TTM_PL_FLAG_CACHED); in ttm_agp_bind()
/dragonfly/sys/dev/drm/radeon/
H A Dradeon_ttm.c190 placement->placement = &placements; in radeon_evict_flags()
192 placement->num_placement = 1; in radeon_evict_flags()
231 *placement = rbo->placement; in radeon_evict_flags()
321 struct ttm_placement placement; in radeon_move_vram_ram() local
327 placement.num_placement = 1; in radeon_move_vram_ram()
328 placement.placement = &placements; in radeon_move_vram_ram()
329 placement.num_busy_placement = 1; in radeon_move_vram_ram()
367 struct ttm_placement placement; in radeon_move_ram_vram() local
374 placement.num_placement = 1; in radeon_move_ram_vram()
375 placement.placement = &placements; in radeon_move_ram_vram()
[all …]
H A Dradeon_object.c99 rbo->placement.placement = rbo->placements; in radeon_ttm_placement_from_domain()
100 rbo->placement.busy_placement = rbo->placements; in radeon_ttm_placement_from_domain()
163 rbo->placement.num_placement = c; in radeon_ttm_placement_from_domain()
164 rbo->placement.num_busy_placement = c; in radeon_ttm_placement_from_domain()
261 &bo->placement, page_align, !kernel, in radeon_bo_create()
359 for (i = 0; i < bo->placement.num_placement; i++) { in radeon_bo_pin_restricted()
372 r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx); in radeon_bo_pin_restricted()
404 for (i = 0; i < bo->placement.num_placement; i++) { in radeon_bo_unpin()
408 r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx); in radeon_bo_unpin()
829 r = ttm_bo_validate(bo, &rbo->placement, &ctx); in radeon_bo_fault_reserve_notify()
[all …]
H A Dradeon_gem.c352 r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false);
798 const char *placement; in radeon_debugfs_gem_info() local
803 placement = "VRAM"; in radeon_debugfs_gem_info()
806 placement = " GTT"; in radeon_debugfs_gem_info()
810 placement = " CPU"; in radeon_debugfs_gem_info()
815 placement, (unsigned long)rbo->pid); in radeon_debugfs_gem_info()
H A Dradeon_uvd.c307 for (i = 0; i < rbo->placement.num_placement; ++i) { in radeon_uvd_force_into_uvd_segment()
317 if (rbo->placement.num_placement > 1) in radeon_uvd_force_into_uvd_segment()
324 rbo->placement.num_placement++; in radeon_uvd_force_into_uvd_segment()
325 rbo->placement.num_busy_placement++; in radeon_uvd_force_into_uvd_segment()
/dragonfly/sys/dev/drm/include/drm/ttm/
H A Dttm_bo_api.h100 uint32_t placement; member
340 bool ttm_bo_mem_compat(struct ttm_placement *placement, struct ttm_mem_reg *mem,
359 struct ttm_placement *placement,
524 struct ttm_placement *placement,
567 struct ttm_placement *placement,
592 enum ttm_bo_type type, struct ttm_placement *placement,
H A Dttm_bo_driver.h298 struct ttm_placement *placement);
545 struct ttm_placement *placement,
758 if (!(bo->mem.placement & TTM_PL_FLAG_NO_EVICT)) { in ttm_bo_unreserve()
H A Dttm_placement.h103 const struct ttm_place *placement; member
H A Dttm_tt.h229 int ttm_tt_set_placement_caching(struct ttm_tt *ttm, uint32_t placement);
/dragonfly/sys/dev/drm/amd/amdgpu/
H A Damdgpu_ttm.c246 placement->num_placement = 0; in amdgpu_evict_flags()
253 placement->placement = &placements; in amdgpu_evict_flags()
255 placement->num_placement = 1; in amdgpu_evict_flags()
290 *placement = abo->placement; in amdgpu_evict_flags()
556 struct ttm_placement placement; in amdgpu_move_vram_ram() local
564 placement.num_placement = 1; in amdgpu_move_vram_ram()
565 placement.placement = &placements; in amdgpu_move_vram_ram()
622 placement.num_placement = 1; in amdgpu_move_ram_vram()
623 placement.placement = &placements; in amdgpu_move_ram_vram()
1109 placement.num_placement = 1; in amdgpu_ttm_alloc_gart()
[all …]
H A Damdgpu_object.c146 struct ttm_placement *placement = &abo->placement; in amdgpu_bo_placement_from_domain() local
226 placement->num_placement = c; in amdgpu_bo_placement_from_domain()
227 placement->placement = places; in amdgpu_bo_placement_from_domain()
229 placement->num_busy_placement = c; in amdgpu_bo_placement_from_domain()
230 placement->busy_placement = places; in amdgpu_bo_placement_from_domain()
504 &bo->placement, page_align, &ctx, acc_size, in amdgpu_bo_do_create()
518 bo->tbo.mem.placement & TTM_PL_FLAG_VRAM) { in amdgpu_bo_do_create()
926 for (i = 0; i < bo->placement.num_placement; i++) { in amdgpu_bo_pin_restricted()
1004 for (i = 0; i < bo->placement.num_placement; i++) { in amdgpu_bo_unpin()
1323 abo->placement.num_busy_placement = 1; in amdgpu_bo_fault_reserve_notify()
[all …]
H A Damdgpu_gem.c351 r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx); in amdgpu_gem_userptr_ioctl()
813 const char *placement; in amdgpu_debugfs_gem_bo_info() local
819 placement = "VRAM"; in amdgpu_debugfs_gem_bo_info()
822 placement = " GTT"; in amdgpu_debugfs_gem_bo_info()
826 placement = " CPU"; in amdgpu_debugfs_gem_bo_info()
830 id, amdgpu_bo_size(bo), placement); in amdgpu_debugfs_gem_bo_info()
H A Damdgpu_uvd.c449 for (i = 0; i < abo->placement.num_placement; ++i) { in amdgpu_uvd_force_into_uvd_segment()
500 r = ttm_bo_validate(&bo->tbo, &bo->placement, &tctx); in amdgpu_uvd_cs_pass1()
1039 r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx); in amdgpu_uvd_send_msg()
/dragonfly/nrelease/gui/root/.irssi/
H A Dconfig116 placement = "bottom";
139 placement = "bottom";
155 placement = "bottom";
170 placement = "top";
/dragonfly/nrelease/gui/root/.fluxbox/
H A Dinit6 session.screen0.toolbar.placement: TopCenter
22 session.screen0.slit.placement: TopRight
41 session.screen0.tab.placement: TopLeft
/dragonfly/contrib/gcc-8.0/gcc/cp/
H A Dinit.c2353 build_tree_list_vec (placement), type, nelts, in build_raw_new_expr()
3071 if (vec_safe_length (*placement) == 1 in build_new_1()
3072 && (TYPE_PTR_P (TREE_TYPE ((**placement)[0])))) in build_new_1()
3073 placement_first = (**placement)[0]; in build_new_1()
3111 vec_safe_insert (*placement, 0, size); in build_new_1()
3134 = vec_copy_and_insert (*placement, align_arg, 1); in build_new_1()
3216 tree placement = CALL_EXPR_ARG (alloc_call, 1); in build_new_1() local
3232 placement = placement_first; in build_new_1()
3616 || any_type_dependent_arguments_p (*placement) in build_new()
3623 orig_placement = make_tree_vector_copy (*placement); in build_new()
[all …]
/dragonfly/contrib/gcc-4.7/gcc/cp/
H A Dinit.c2076 build_tree_list_vec (placement), type, nelts, in build_raw_new_expr()
2289 if (VEC_length (tree, *placement) == 1 in build_new_1()
2292 placement_first = VEC_index (tree, *placement, 0); in build_new_1()
2349 VEC_safe_insert (tree, gc, *placement, 0, size); in build_new_1()
2368 fns, placement, in build_new_1()
2383 alloc_call = build_operator_new_call (fnname, placement, in build_new_1()
2767 build_new (VEC(tree,gc) **placement, tree type, tree nelts, in build_new() argument
2794 || any_type_dependent_arguments_p (*placement) in build_new()
2797 return build_raw_new_expr (*placement, type, nelts, *init, in build_new()
2800 orig_placement = make_tree_vector_copy (*placement); in build_new()
[all …]
/dragonfly/usr.bin/vi/catalog/
H A Dfrench.UTF-8.base187 195 "Déplacement hors de fin de fichier"
188 196 "Déplacement hors de fin de ligne"
191 199 "Déplacement hors du début du fichier"
202 210 "Vous ne pouvez pas utiliser %s comme commande de déplacement"
211 220 "Déplacement hors de la fin d'écran"
212 221 "Déplacement hors du début d'écran"
/dragonfly/contrib/gcc-4.7/libstdc++-v3/libsupc++/
H A Dnew110 // Default placement versions of operator new.
116 // Default placement versions of operator delete.
/dragonfly/contrib/tcsh-6/nls/french/
H A Dset725 23 %s: ATTENTION: Votre terminal ne peut effectuer de déplacement vers le haut.\n
/dragonfly/contrib/gcc-8.0/libstdc++-v3/libsupc++/
H A Dnew167 // Default placement versions of operator new.
173 // Default placement versions of operator delete.

123