HomeSort by relevance Sort by last modified time
    Searched defs:bo (Results 1 - 25 of 205) sorted by null

1 2 3 4 5 6 7 8 9

  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_buffer_objects.h 41 struct radeon_bo *bo; member in struct:radeon_buffer_object
  /external/libdrm/tests/kmstest/
main.c 42 struct kms_bo *bo; local
51 ret = kms_bo_create(kms, attrs, &bo);
52 CHECK_RET_RETURN(ret, "Could not create bo");
54 kms_bo_destroy(&bo);
  /external/libdrm/tests/radeon/
radeon_ttm.c 32 /* allocate as many single page bo to try to starve the kernel
38 struct rbo *bo, *tmp; local
44 bo = rbo(fd, 0, 4096, 0, NULL);
45 if (bo == NULL) {
46 printf("failing after %d bo\n", nbo);
50 list_add(&bo->list, &list);
52 LIST_FOR_EACH_ENTRY_SAFE(bo, tmp, &list, list) {
53 list_del(&bo->list);
54 rbo_decref(bo);
rbo.c 39 struct rbo *bo; local
42 bo = calloc(1, sizeof(*bo));
43 if (bo == NULL) {
46 list_inithead(&bo->list);
47 bo->fd = fd;
48 bo->size = size;
49 bo->handle = handle;
50 bo->refcount = 1;
51 bo->alignment = alignment
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_bufferobj.h 32 struct nouveau_bo *bo; member in struct:nouveau_bufferobj
38 (_mesa_is_bufferobj(x) ? to_nouveau_bufferobj(x)->bo : NULL)
nouveau_scratch.h 34 struct nouveau_bo *bo[NOUVEAU_SCRATCH_COUNT]; member in struct:nouveau_scratch_state
43 struct nouveau_bo **bo, unsigned *offset);
nouveau_array.h 39 struct nouveau_bo *bo; member in struct:nouveau_array
nouveau_fbo.h 35 struct nouveau_bo *bo; member in struct:nouveau_framebuffer::__anon27847
nouveau_scratch.c 31 * Returns a pointer to a chunk of 'size' bytes long GART memory. 'bo'
36 struct nouveau_bo **bo, unsigned *offset)
44 nouveau_bo_ref(scratch->bo[scratch->index], bo);
52 nouveau_bo_ref(scratch->bo[scratch->index], bo);
54 nouveau_bo_map(*bo, NOUVEAU_BO_WR, client);
55 buf = scratch->buf = (*bo)->map;
62 NOUVEAU_BO_MAP, 0, size, NULL, bo); local
64 nouveau_bo_map(*bo, NOUVEAU_BO_WR, client)
    [all...]
nouveau_surface.h 37 struct nouveau_bo *bo; member in struct:nouveau_surface
  /external/drm_hwcomposer/
platformnv.h 37 int ImportBuffer(buffer_handle_t handle, hwc_drm_bo_t *bo) override;
38 int ReleaseBuffer(hwc_drm_bo_t *bo) override;
43 hwc_drm_bo_t bo; member in struct:android::NvImporter::NvBuffer
48 void ReleaseBufferImpl(hwc_drm_bo_t *bo);
  /external/libdrm/freedreno/msm/
msm_bo.c 37 struct fd_bo *bo = &msm_bo->base; local
40 .handle = bo->handle,
48 ret = drmCommandWriteRead(bo->dev->fd, DRM_MSM_GEM_INFO,
61 static int msm_bo_offset(struct fd_bo *bo, uint64_t *offset)
63 struct msm_bo *msm_bo = to_msm_bo(bo);
71 static int msm_bo_cpu_prep(struct fd_bo *bo, struct fd_pipe *pipe, uint32_t op)
74 .handle = bo->handle,
80 return drmCommandWrite(bo->dev->fd, DRM_MSM_GEM_CPU_PREP, &req, sizeof(req));
83 static void msm_bo_cpu_fini(struct fd_bo *bo)
86 .handle = bo->handle
131 struct fd_bo *bo; local
    [all...]
  /external/libdrm/rockchip/
rockchip_drm.c 94 struct rockchip_bo *bo; local
105 bo = calloc(1, sizeof(*bo));
106 if (!bo) {
107 fprintf(stderr, "failed to create bo[%s].\n",
112 bo->dev = dev;
120 bo->handle = req.handle;
121 bo->size = size;
122 bo->flags = flags;
124 return bo;
135 struct rockchip_bo *bo; local
197 struct rockchip_bo *bo; local
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_transfer.h 8 struct nouveau_bo *bo; member in struct:nv50_m2mf_rect
  /external/mesa3d/src/gallium/drivers/r600/
compute_memory_pool.h 38 int64_t start_in_dw; ///Start pointer in dwords relative in the pool bo
52 struct r600_resource *bo; ///The pool buffer object resource member in struct:compute_memory_pool
  /external/mesa3d/src/gallium/drivers/radeonsi/
radeonsi_pm4.h 53 /* BO's referenced by this state */
55 struct si_resource *bo[SI_PM4_MAX_BO]; member in struct:si_pm4_state
69 struct si_resource *bo,
  /external/mesa3d/src/gallium/winsys/i915/drm/
i915_drm_fence.c 11 * been idled. If bo is NULL fence has expired.
16 drm_intel_bo *bo; member in struct:i915_drm_fence
21 i915_drm_fence_create(drm_intel_bo *bo)
26 /* bo is null if fence already expired */
27 if (bo) {
28 drm_intel_bo_reference(bo);
29 fence->bo = bo;
44 if (old->bo)
45 drm_intel_bo_unreference(old->bo);
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_sf_state.c 145 drm_intel_bo *bo = intel->batch.bo; local
193 sf->sf5.sf_viewport_state_offset = (intel->batch.bo->offset +
306 drm_intel_bo_emit_reloc(bo, (brw->sf.state_offset +
308 intel->batch.bo, (brw->sf.vp_offset |
  /frameworks/native/opengl/libagl/
BufferObjectManager.cpp 47 buffer_t* bo = mBuffers.valueAt(i); local
48 free(bo->data);
49 delete bo;
60 buffer_t* bo = new buffer_t; local
61 bo->data = 0;
62 bo->usage = GL_STATIC_DRAW;
63 bo->size = 0;
64 bo->name = buffer;
65 mBuffers.add(buffer, bo);
66 return bo;
93 buffer_t* bo = mBuffers.valueAt(index); local
    [all...]
  /external/libdrm/freedreno/
freedreno_ringbuffer.h 68 struct fd_bo *bo; member in struct:fd_reloc
  /external/libdrm/libkms/
dumb.c 76 struct dumb_bo *bo; local
91 bo = calloc(1, sizeof(*bo));
92 if (!bo)
106 bo->base.kms = kms;
107 bo->base.handle = arg.handle;
108 bo->base.size = arg.size;
109 bo->base.pitch = arg.pitch;
111 *out = &bo->base;
116 free(bo);
132 struct dumb_bo *bo = (struct dumb_bo *)_bo; local
164 struct dumb_bo *bo = (struct dumb_bo *)_bo; local
172 struct dumb_bo *bo = (struct dumb_bo *)_bo; local
    [all...]
exynos.c 65 struct exynos_bo *bo; local
79 bo = calloc(1, sizeof(*bo));
80 if (!bo)
101 bo->base.kms = kms;
102 bo->base.handle = arg.handle;
103 bo->base.size = size;
104 bo->base.pitch = pitch;
106 *out = &bo->base;
111 free(bo);
127 struct exynos_bo *bo = (struct exynos_bo *)_bo; local
159 struct exynos_bo *bo = (struct exynos_bo *)_bo; local
167 struct exynos_bo *bo = (struct exynos_bo *)_bo; local
    [all...]
intel.c 79 struct intel_bo *bo; local
93 bo = calloc(1, sizeof(*bo));
94 if (!bo)
105 free(bo);
116 bo->base.kms = kms;
117 bo->base.handle = arg.handle;
118 bo->base.size = size;
119 bo->base.pitch = pitch;
121 *out = &bo->base
158 struct intel_bo *bo = (struct intel_bo *)_bo; local
190 struct intel_bo *bo = (struct intel_bo *)_bo; local
198 struct intel_bo *bo = (struct intel_bo *)_bo; local
    [all...]
nouveau.c 80 struct nouveau_bo *bo; local
94 bo = calloc(1, sizeof(*bo));
95 if (!bo)
106 free(bo);
122 bo->base.kms = kms;
123 bo->base.handle = arg.info.handle;
124 bo->base.size = size;
125 bo->base.pitch = pitch;
126 bo->map_handle = arg.info.map_handle
149 struct nouveau_bo *bo = (struct nouveau_bo *)_bo; local
172 struct nouveau_bo *bo = (struct nouveau_bo *)_bo; local
180 struct nouveau_bo *bo = (struct nouveau_bo *)_bo; local
    [all...]
radeon.c 82 struct radeon_bo *bo; local
110 bo = calloc(1, sizeof(*bo));
111 if (!bo)
126 bo->base.kms = kms;
127 bo->base.handle = arg.handle;
128 bo->base.size = size;
129 bo->base.pitch = pitch;
130 bo->base.offset = 0;
131 bo->map_count = 0
154 struct radeon_bo *bo = (struct radeon_bo *)_bo; local
190 struct radeon_bo *bo = (struct radeon_bo *)_bo; local
201 struct radeon_bo *bo = (struct radeon_bo *)_bo; local
    [all...]

Completed in 550 milliseconds

1 2 3 4 5 6 7 8 9