/linux/arch/arm64/kernel/ |
A D | module.c | 82 return val - (u64)place; in do_reloc() 111 *(s16 *)place = sval; in reloc_data() 127 *(s32 *)place = sval; in reloc_data() 143 *(s64 *)place = sval; in reloc_data() 162 u32 insn = le32_to_cpu(*place); in reloc_insn_movw() 190 *place = cpu_to_le32(insn); in reloc_insn_movw() 203 u32 insn = le32_to_cpu(*place); in reloc_insn_imm() 215 *place = cpu_to_le32(insn); in reloc_insn_imm() 234 __le32 *place, u64 val) in reloc_insn_adrp() argument 245 insn = le32_to_cpu(*place); in reloc_insn_adrp() [all …]
|
/linux/drivers/gpu/drm/vmwgfx/ |
A D | vmwgfx_thp.c | 35 const struct ttm_place *place, in vmw_thp_insert_aligned() argument 45 place->fpfn, lpfn, mode); in vmw_thp_insert_aligned() 53 const struct ttm_place *place, in vmw_thp_get_node() argument 68 ttm_resource_init(bo, place, &node->base); in vmw_thp_get_node() 70 lpfn = place->lpfn; in vmw_thp_get_node() 75 if (place->flags & TTM_PL_FLAG_TOPDOWN) in vmw_thp_get_node() 83 align_pages, place, in vmw_thp_get_node() 93 align_pages, place, &node->base, in vmw_thp_get_node() 102 place->fpfn, lpfn, mode); in vmw_thp_get_node()
|
A D | vmwgfx_gmrid_manager.c | 54 const struct ttm_place *place, in vmw_gmrid_man_get_node() argument 64 ttm_resource_init(bo, place, *res); in vmw_gmrid_man_get_node()
|
/linux/drivers/gpu/drm/ttm/ |
A D | ttm_bo.c | 574 const struct ttm_place *place) in ttm_bo_eviction_valuable() argument 584 (place->lpfn && place->lpfn <= bo->resource->start)) in ttm_bo_eviction_valuable() 603 const struct ttm_place *place, in ttm_bo_evict_swapout_allowable() argument 622 if (ret && place && (bo->resource->mem_type != place->mem_type || in ttm_bo_evict_swapout_allowable() 671 const struct ttm_place *place, in ttm_mem_evict_first() argument 779 const struct ttm_place *place, in ttm_bo_mem_force_space() argument 791 ret = ttm_resource_alloc(bo, place, mem); in ttm_bo_mem_force_space() 1095 struct ttm_place place; in ttm_bo_swapout() local 1105 memset(&place, 0, sizeof(place)); in ttm_bo_swapout() 1106 place.mem_type = bo->resource->mem_type; in ttm_bo_swapout() [all …]
|
A D | ttm_range_manager.c | 60 const struct ttm_place *place, in ttm_range_man_alloc() argument 70 lpfn = place->lpfn; in ttm_range_man_alloc() 79 if (place->flags & TTM_PL_FLAG_TOPDOWN) in ttm_range_man_alloc() 82 ttm_resource_init(bo, place, &node->base); in ttm_range_man_alloc() 88 place->fpfn, lpfn, mode); in ttm_range_man_alloc()
|
A D | ttm_resource.c | 33 const struct ttm_place *place, in ttm_resource_init() argument 38 res->mem_type = place->mem_type; in ttm_resource_init() 39 res->placement = place->flags; in ttm_resource_init() 48 const struct ttm_place *place, in ttm_resource_alloc() argument 52 ttm_manager_type(bo->bdev, place->mem_type); in ttm_resource_alloc() 54 return man->func->alloc(man, bo, place, res_ptr); in ttm_resource_alloc()
|
A D | ttm_sys_manager.c | 12 const struct ttm_place *place, in ttm_sys_man_alloc() argument 19 ttm_resource_init(bo, place, *res); in ttm_sys_man_alloc()
|
/linux/drivers/gpu/drm/amd/amdgpu/ |
A D | amdgpu_gtt_mgr.c | 127 const struct ttm_place *place, in amdgpu_gtt_mgr_new() argument 135 if (!(place->flags & TTM_PL_FLAG_TEMPORARY) && in amdgpu_gtt_mgr_new() 148 ttm_resource_init(tbo, place, &node->base.base); in amdgpu_gtt_mgr_new() 150 if (place->lpfn) { in amdgpu_gtt_mgr_new() 155 0, place->fpfn, place->lpfn, in amdgpu_gtt_mgr_new() 175 if (!(place->flags & TTM_PL_FLAG_TEMPORARY)) in amdgpu_gtt_mgr_new()
|
A D | amdgpu_vram_mgr.c | 370 const struct ttm_place *place, in amdgpu_vram_mgr_new() argument 383 lpfn = place->lpfn; in amdgpu_vram_mgr_new() 398 if (place->flags & TTM_PL_FLAG_CONTIGUOUS) { in amdgpu_vram_mgr_new() 420 ttm_resource_init(tbo, place, &node->base); in amdgpu_vram_mgr_new() 423 if (place->flags & TTM_PL_FLAG_TOPDOWN) in amdgpu_vram_mgr_new() 440 alignment, 0, place->fpfn, in amdgpu_vram_mgr_new()
|
A D | amdgpu_preempt_mgr.c | 68 const struct ttm_place *place, in amdgpu_preempt_mgr_new() argument 77 ttm_resource_init(tbo, place, *res); in amdgpu_preempt_mgr_new()
|
/linux/drivers/gpu/drm/i915/ |
A D | i915_ttm_buddy_manager.c | 32 const struct ttm_place *place, in i915_ttm_buddy_man_alloc() argument 44 GEM_BUG_ON(place->fpfn || place->lpfn); in i915_ttm_buddy_man_alloc() 50 ttm_resource_init(bo, place, &bman_res->base); in i915_ttm_buddy_man_alloc() 63 if (place->flags & TTM_PL_FLAG_CONTIGUOUS) { in i915_ttm_buddy_man_alloc()
|
A D | intel_region_ttm.c | 165 struct ttm_place place = {}; in intel_region_ttm_resource_alloc() local 171 place.flags = flags; in intel_region_ttm_resource_alloc() 173 ret = man->func->alloc(man, &mock_bo, &place, &res); in intel_region_ttm_resource_alloc()
|
/linux/Documentation/hwmon/ |
A D | k8temp.rst | 36 temp1_input temperature of Core 0 and "place" 0 37 temp2_input temperature of Core 0 and "place" 1 38 temp3_input temperature of Core 1 and "place" 0 39 temp4_input temperature of Core 1 and "place" 1
|
/linux/drivers/gpu/drm/nouveau/ |
A D | nouveau_ttm.c | 47 const struct ttm_place *place, in nouveau_vram_manager_new() argument 61 ttm_resource_init(bo, place, *res); in nouveau_vram_manager_new() 80 const struct ttm_place *place, in nouveau_gart_manager_new() argument 91 ttm_resource_init(bo, place, *res); in nouveau_gart_manager_new() 104 const struct ttm_place *place, in nv04_gart_manager_new() argument 117 ttm_resource_init(bo, place, *res); in nv04_gart_manager_new()
|
/linux/include/drm/ttm/ |
A D | ttm_resource.h | 73 const struct ttm_place *place, 262 const struct ttm_place *place, 265 const struct ttm_place *place,
|
A D | ttm_bo_api.h | 345 const struct ttm_place *place); 575 const struct ttm_place *place,
|
/linux/arch/mips/include/asm/mach-ip27/ |
A D | kernel-entry-init.h | 37 dsll t1, NASID_SHFT # Shift text nasid into place 43 dsll t1, 6 # Get pfn into place 44 dsll t2, 6 # Get pfn into place
|
/linux/arch/arm64/include/asm/ |
A D | module.h | 53 static inline bool is_forbidden_offset_for_adrp(void *place) in is_forbidden_offset_for_adrp() argument 57 ((u64)place & 0xfff) >= 0xff8; in is_forbidden_offset_for_adrp()
|
/linux/drivers/hwmon/ |
A D | k8temp.c | 91 int core, place; in k8temp_read() local 96 place = channel & 1; in k8temp_read() 105 if (place) in k8temp_read()
|
/linux/drivers/gpu/drm/i915/gem/ |
A D | i915_gem_ttm.c | 144 struct ttm_place *place, in i915_ttm_place_from_region() argument 147 memset(place, 0, sizeof(*place)); in i915_ttm_place_from_region() 148 place->mem_type = intel_region_to_ttm_type(mr); in i915_ttm_place_from_region() 151 place->flags = TTM_PL_FLAG_CONTIGUOUS; in i915_ttm_place_from_region() 234 const struct ttm_place *place) in i915_ttm_eviction_valuable() argument 338 struct ttm_placement place = {}; in i915_ttm_purge() local 345 ret = ttm_bo_validate(bo, &place, &ctx); in i915_ttm_purge()
|
/linux/Documentation/ABI/testing/ |
A D | sysfs-bus-usb-devices-usbsevseg | 42 To set the nth decimal place, give this field 45 to set the mth place (where m is not already set),
|
/linux/Documentation/usb/ |
A D | misc_usbsevseg.rst | 47 to set the nth decimal place calculate 10 ** n 50 For example, to set the 0th and 3rd decimal place
|
/linux/Documentation/powerpc/ |
A D | kaslr-booke32.rst | 14 map or copy kernel to a proper place and relocate. Freescale Book-E 17 region, so we chose to copy the kernel to a proper place and restart to
|
/linux/arch/x86/realmode/rm/ |
A D | trampoline_64.S | 47 mov %cs, %ax # Code and data in the same place 91 mov %cs, %ax # Code and data in the same place
|
/linux/tools/testing/selftests/rcutorture/bin/ |
A D | jitterstop.sh | 18 echo jitterstop.sh: Missing directory in which to place jittering file.
|