OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:temp_bo
(Results
1 - 3
of
3
) sorted by null
/external/mesa3d/src/mesa/drivers/dri/intel/
intel_tex_subimage.c
54
drm_intel_bo *
temp_bo
= NULL;
local
93
temp_bo
= drm_intel_bo_alloc_tiled(intel->bufmgr,
100
if (
temp_bo
== NULL) {
105
if (drm_intel_gem_bo_map_gtt(
temp_bo
)) {
110
dstMap =
temp_bo
->virtual;
132
drm_intel_gem_bo_unmap_gtt(
temp_bo
);
137
temp_bo
, 0, false,
145
drm_intel_bo_unreference(
temp_bo
);
intel_buffer_objects.c
217
drm_intel_bo *
temp_bo
=
local
220
drm_intel_bo_subdata(
temp_bo
, 0, size, data);
224
temp_bo
, 0,
227
drm_intel_bo_unreference(
temp_bo
);
391
drm_intel_bo *
temp_bo
;
local
402
temp_bo
= drm_intel_bo_alloc(intel->bufmgr, "range map flush", length, 64);
404
drm_intel_bo_subdata(
temp_bo
, 0, length, intel_obj->range_map_buffer);
408
temp_bo
, 0,
411
drm_intel_bo_unreference(
temp_bo
);
/external/libdrm/radeon/
radeon_cs_space.c
218
struct radeon_cs_space_check
temp_bo
;
local
223
temp_bo
.bo = boi;
224
temp_bo
.read_domains = read_domains;
225
temp_bo
.write_domain = write_domain;
226
temp_bo
.new_accounted = 0;
229
ret = radeon_cs_check_space_internal(csi, bo ? &
temp_bo
: NULL);
Completed in 187 milliseconds