Searched refs:PAGE_SIZE (Results 1 - 22 of 22) sorted by relevance
/solaris-x11-s11/open-src/kernel/drm/src/ |
H A D | ati_pcigart.c | 96 ASSERT(PAGE_SIZE >= ATI_PCIGART_PAGE_SIZE); 102 for (k = 0; k < bulksize / PAGE_SIZE; k++) { 104 dmah->cookie.dmac_address + k * PAGE_SIZE; 108 for (j = 0; j < (PAGE_SIZE / ATI_PCIGART_PAGE_SIZE);
|
H A D | drm_cache.c | 50 for (i = 0; i < PAGE_SIZE; i += x86_clflush_size)
|
H A D | drm_scatter.c | 96 pages = (request->size + PAGE_SIZE - 1) / PAGE_SIZE;
|
H A D | drm_agpsupport.c | 249 pages = (request->size + PAGE_SIZE - 1) / PAGE_SIZE; 372 page = (request->offset + PAGE_SIZE - 1) / PAGE_SIZE;
|
H A D | drm_bufs.c | 54 #define PAGE_MASK (~(PAGE_SIZE - 1)) 55 #define round_page(x) (((x) + (PAGE_SIZE - 1)) & PAGE_MASK) 565 total = PAGE_SIZE << page_order; 646 byte_count += PAGE_SIZE << page_order; 722 total = PAGE_SIZE << page_order; 805 byte_count += PAGE_SIZE << page_order;
|
H A D | drm_gem.c | 351 BUG_ON((size & (PAGE_SIZE - 1)) != 0);
|
H A D | drm_fb_helper.c | 956 size = ALIGN(pitch *fb_info.yres, PAGE_SIZE);
|
/solaris-x11-s11/open-src/kernel/efb/src/ |
H A D | ati_pcigart.c | 78 ASSERT(PAGE_SIZE >= ATI_PCIGART_PAGE_SIZE); 85 for (k = 0; k < bulksize / PAGE_SIZE; k++) { 87 dmah->cookie.dmac_address + k * PAGE_SIZE; 91 for (j = 0; j < (PAGE_SIZE / ATI_PCIGART_PAGE_SIZE);
|
H A D | drmP.h | 85 #define PAGE_SIZE DRM_PAGE_SIZE macro 122 #define DRM_MAX_CTXBITMAP (PAGE_SIZE * 8)
|
H A D | drm_bufs.c | 46 #define PAGE_MASK (PAGE_SIZE-1) 482 byte_count += PAGE_SIZE << page_order; 583 byte_count += PAGE_SIZE << page_order;
|
/solaris-x11-s11/open-src/kernel/i915/src/ |
H A D | i915_gem_gtt.c | 304 pt_vaddr = (uint32_t*)(uintptr_t)(ppgtt->kaddr + act_pt*PAGE_SIZE); 324 pt_vaddr = (gen6_gtt_pte_t *)(uintptr_t)(ppgtt->kaddr + act_pt*PAGE_SIZE); 331 pt_vaddr = (gen6_gtt_pte_t *)(uintptr_t)(ppgtt->kaddr + act_pt*PAGE_SIZE); 452 i915_ggtt_clear_range(dev_priv->mm.gtt_start / PAGE_SIZE, 453 (dev_priv->mm.gtt_end - dev_priv->mm.gtt_start) / PAGE_SIZE); 491 unsigned num_entries = obj->base.size / PAGE_SIZE; 507 BUG_ON(j != obj->base.size / PAGE_SIZE); 537 unsigned num_entries = obj->base.size / PAGE_SIZE; 580 (obj->base.size / PAGE_SIZE), obj->gtt_offset, 647 drm_mm_init(&dev_priv->mm.gtt_space, start, end - start - PAGE_SIZE); [all...] |
H A D | intel_fb.c | 69 size = ALIGN(size, PAGE_SIZE);
|
H A D | intel_ringbuffer.c | 449 ((ring->size - PAGE_SIZE) & RING_NR_PAGES) 1253 (void) memset(ring->status_page.page_addr, 0, PAGE_SIZE); 1274 drm_pci_alloc(ring->dev, PAGE_SIZE, PAGE_SIZE, 0xffffffff, 1); 1280 memset(ring->status_page.page_addr, 0, PAGE_SIZE); 1293 ring->size = 32 * PAGE_SIZE; 1322 ret = i915_gem_object_pin(obj, PAGE_SIZE, true, false);
|
H A D | i915_gem.c | 144 (args->gtt_end | args->gtt_start) & (PAGE_SIZE - 1)) 201 size = roundup(size, PAGE_SIZE); 346 first_data_page = data_ptr / PAGE_SIZE; 370 page_length = PAGE_SIZE - shmem_page_offset; 372 page_length = PAGE_SIZE - data_page_offset; 502 first_data_page = data_ptr / PAGE_SIZE; 554 page_length = PAGE_SIZE - shmem_page_offset; 556 page_length = PAGE_SIZE - data_page_offset; 2696 drm_clflush_pages(obj->page_list, obj->base.size / PAGE_SIZE); 3866 page_count = obj->base.size / PAGE_SIZE; [all...] |
H A D | i915_gem_tiling.c | 474 for (i = 0; i < PAGE_SIZE; i += 128) {
|
H A D | intel_overlay.c | 1335 reg_bo = i915_gem_object_create_stolen(dev, PAGE_SIZE); 1337 reg_bo = i915_gem_alloc_object(dev, PAGE_SIZE); 1345 PAGE_SIZE); 1352 ret = i915_gem_object_pin(reg_bo, PAGE_SIZE, true, false);
|
H A D | i915_gem_execbuffer.c | 176 int reloc_base = (reloc->offset & ~(PAGE_SIZE-1)); 177 reloc_offset = reloc->offset & (PAGE_SIZE-1); 178 reloc_entry = (uint32_t *)(uintptr_t)(obj->page_list[reloc_base/PAGE_SIZE] + reloc_offset);
|
H A D | i915_irq.c | 1477 d = kmalloc(PAGE_SIZE, GFP_ATOMIC); 1493 memcpy_fromio(d, s, PAGE_SIZE); 1502 memcpy_fromio(d, (void __iomem *) offset, PAGE_SIZE); 1512 memcpy(d, s, PAGE_SIZE); 1521 reloc_offset += PAGE_SIZE;
|
H A D | i915_dma.c | 1101 (void) memset(dev_priv->dri1.gfx_hws_cpu_addr.handle, 0, PAGE_SIZE);
|
H A D | i915_reg.h | 1815 #define HSW_CXT_TOTAL_SIZE (17 * PAGE_SIZE)
|
H A D | intel_display.c | 6746 return ALIGN(pitch * mode->vdisplay, PAGE_SIZE);
|
/solaris-x11-s11/open-src/kernel/sys/drm/ |
H A D | drmP.h | 133 #define PAGE_SIZE DRM_PAGE_SIZE macro 170 #define DRM_MAX_CTXBITMAP (PAGE_SIZE * 8)
|
Completed in 147 milliseconds