Searched refs:trans (Results 1 - 25 of 353) sorted by relevance

1234567891011>>

/xsrc/external/mit/libX11/dist/specs/i18n/
H A DMakefile.am24 SUBDIRS=compose framework localedb trans
/xsrc/external/mit/libX11/dist/specs/i18n/trans/
H A DMakefile.am5 docbook = trans.xml
8 shelfdir = $(docdir)/i18n/trans
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/virgl/
H A Dvirgl_buffer.c35 struct virgl_transfer *trans = virgl_transfer(transfer); local in function:virgl_buffer_transfer_unmap
36 bool persistent_coherent = trans->base.usage & (PIPE_MAP_PERSISTENT |
39 if ((trans->base.usage & PIPE_MAP_WRITE) && !persistent_coherent) {
41 if (trans->range.end <= trans->range.start) {
42 virgl_resource_destroy_transfer(vctx, trans);
46 transfer->box.x += trans->range.start;
47 transfer->box.width = trans->range.end - trans->range.start;
48 trans
65 struct virgl_transfer *trans = virgl_transfer(transfer); local in function:virgl_buffer_transfer_flush_region
[all...]
H A Dvirgl_texture.c125 struct virgl_transfer *trans; local in function:texture_transfer_map_resolve
127 trans = virgl_resource_create_transfer(vctx, resource,
129 if (!trans)
168 &trans->resolve_transfer);
172 /* trans->resolve_transfer owns resolve_tmp now */
175 *transfer = &trans->base;
177 trans->base.stride = trans->resolve_transfer->stride;
178 trans->base.layer_stride = trans
247 flush_data(struct pipe_context * ctx,struct virgl_transfer * trans,const struct pipe_box * box) argument
261 struct virgl_transfer *trans = virgl_transfer(transfer); local in function:virgl_texture_transfer_unmap
[all...]
H A Dvirgl_resource.c58 struct virgl_transfer *trans)
61 struct virgl_resource *res = virgl_resource(trans->base.resource);
63 if (trans->base.usage & PIPE_MAP_UNSYNCHRONIZED)
385 struct virgl_transfer *trans; local in function:virgl_resource_transfer_map
392 trans = virgl_resource_create_transfer(vctx, resource,
395 map_type = virgl_resource_transfer_prepare(vctx, trans);
402 vws->resource_reference(vws, &trans->hw_res, vres->hw_res);
405 trans->hw_res_map = vws->resource_map(vws, vres->hw_res);
406 if (trans->hw_res_map)
407 map_addr = trans
57 virgl_res_needs_flush(struct virgl_context * vctx,struct virgl_transfer * trans) argument
693 struct virgl_transfer *trans; local in function:virgl_resource_create_transfer
750 virgl_resource_destroy_transfer(struct virgl_context * vctx,struct virgl_transfer * trans) argument
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/virgl/
H A Dvirgl_buffer.c40 struct virgl_transfer *trans; local in function:virgl_buffer_transfer_map
44 trans = virgl_resource_create_transfer(&vctx->transfer_pool, resource,
49 flush = virgl_res_needs_flush(vctx, trans);
56 vs->vws->transfer_get(vs->vws, vbuf->hw_res, box, trans->base.stride,
57 trans->l_stride, trans->offset, level);
62 trans->hw_res_map = vs->vws->resource_map(vs->vws, vbuf->hw_res);
63 if (!trans->hw_res_map) {
64 virgl_resource_destroy_transfer(&vctx->transfer_pool, trans);
68 *transfer = &trans
76 struct virgl_transfer *trans = virgl_transfer(transfer); local in function:virgl_buffer_transfer_unmap
99 struct virgl_transfer *trans = virgl_transfer(transfer); local in function:virgl_buffer_transfer_flush_region
[all...]
H A Dvirgl_texture.c128 struct virgl_transfer *trans; local in function:texture_transfer_map_plain
131 trans = virgl_resource_create_transfer(&vctx->transfer_pool, resource,
133 trans->resolve_transfer = NULL;
137 flush = virgl_res_needs_flush(vctx, trans);
143 vws->transfer_get(vws, vtex->hw_res, box, trans->base.stride,
144 trans->l_stride, trans->offset, level);
149 trans->hw_res_map = vws->resource_map(vws, vtex->hw_res);
150 if (!trans->hw_res_map) {
151 virgl_resource_destroy_transfer(&vctx->transfer_pool, trans);
169 struct virgl_transfer *trans; local in function:texture_transfer_map_resolve
279 flush_data(struct pipe_context * ctx,struct virgl_transfer * trans,const struct pipe_box * box) argument
293 struct virgl_transfer *trans = virgl_transfer(transfer); local in function:virgl_texture_transfer_unmap
[all...]
H A Dvirgl_resource.c31 struct virgl_transfer *trans)
34 struct virgl_resource *res = virgl_resource(trans->base.resource);
36 if (trans->base.usage & PIPE_TRANSFER_UNSYNCHRONIZED)
40 if (res->clean_mask & (1 << trans->base.level)) {
43 if (!virgl_transfer_queue_is_queued(&vctx->queue, trans))
255 struct virgl_transfer *trans; local in function:virgl_resource_create_transfer
279 trans = slab_alloc(pool);
280 if (!trans)
283 trans->base.resource = pres;
284 trans
30 virgl_res_needs_flush(struct virgl_context * vctx,struct virgl_transfer * trans) argument
304 virgl_resource_destroy_transfer(struct slab_child_pool * pool,struct virgl_transfer * trans) argument
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/
H A Du_transfer_helper.c70 struct pipe_transfer *trans; /* driver's transfer */ member in struct:u_transfer
72 void *ptr, *ptr2; /* ptr to trans, and trans2 */
167 struct u_transfer *trans = calloc(1, sizeof(*trans)); local in function:transfer_map_msaa
168 if (!trans)
170 struct pipe_transfer *ptrans = &trans->base;
185 trans->ss = pscreen->resource_create(pscreen, &tmpl);
186 if (!trans->ss) {
187 free(trans);
200 blit.dst.resource = trans
236 struct u_transfer *trans; local in function:u_transfer_helper_transfer_map
355 struct u_transfer *trans = (struct u_transfer *)ptrans; local in function:flush_region
467 struct u_transfer *trans = u_transfer(ptrans); local in function:u_transfer_helper_transfer_flush_region
496 struct u_transfer *trans = u_transfer(ptrans); local in function:u_transfer_helper_transfer_unmap
564 struct u_transfer *trans; local in function:u_transfer_helper_deinterleave_transfer_map
650 struct u_transfer *trans = (struct u_transfer *)ptrans; local in function:u_transfer_helper_deinterleave_transfer_unmap
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
H A Du_transfer_helper.c70 struct pipe_transfer *trans; /* driver's transfer */ member in struct:u_transfer
72 void *ptr, *ptr2; /* ptr to trans, and trans2 */
167 struct u_transfer *trans = calloc(1, sizeof(*trans)); local in function:transfer_map_msaa
168 if (!trans)
170 struct pipe_transfer *ptrans = &trans->base;
185 trans->ss = pscreen->resource_create(pscreen, &tmpl);
186 if (!trans->ss) {
187 free(trans);
200 blit.dst.resource = trans
236 struct u_transfer *trans; local in function:u_transfer_helper_transfer_map
353 struct u_transfer *trans = u_transfer(ptrans); local in function:flush_region
465 struct u_transfer *trans = u_transfer(ptrans); local in function:u_transfer_helper_transfer_flush_region
494 struct u_transfer *trans = u_transfer(ptrans); local in function:u_transfer_helper_transfer_unmap
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r300/
H A Dr300_transfer.c112 struct r300_transfer *trans; local in function:r300_texture_transfer_map
126 trans = CALLOC_STRUCT(r300_transfer);
127 if (trans) {
129 trans->transfer.resource = texture;
130 trans->transfer.level = level;
131 trans->transfer.usage = usage;
132 trans->transfer.box = *box;
167 trans->linear_texture = r300_resource(
171 if (!trans->linear_texture) {
176 trans
249 struct r300_transfer *trans = r300_transfer(transfer); local in function:r300_texture_transfer_unmap
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r300/
H A Dr300_transfer.c109 struct r300_transfer *trans; local in function:r300_texture_transfer_map
123 trans = CALLOC_STRUCT(r300_transfer);
124 if (trans) {
126 trans->transfer.resource = texture;
127 trans->transfer.level = level;
128 trans->transfer.usage = usage;
129 trans->transfer.box = *box;
164 trans->linear_texture = r300_resource(
168 if (!trans->linear_texture) {
173 trans
246 struct r300_transfer *trans = r300_transfer(transfer); local in function:r300_texture_transfer_unmap
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/etnaviv/
H A Detnaviv_transfer.c105 struct etna_transfer *trans = etna_transfer(ptrans); local in function:etna_transfer_unmap
123 if (trans->rsc)
124 etna_bo_cpu_fini(etna_resource(trans->rsc)->bo);
127 if (trans->rsc) {
131 etna_copy_resource_box(pctx, ptrans->resource, trans->rsc, ptrans->level, &ptrans->box);
132 } else if (trans->staging) {
138 trans->mapped + ptrans->box.z * res_level->layer_stride,
139 trans->staging, ptrans->box.x, ptrans->box.y,
143 util_copy_box(trans->mapped, rsc->base.format, res_level->stride,
147 trans
188 struct etna_transfer *trans; local in function:etna_transfer_map
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/etnaviv/
H A Detnaviv_transfer.c105 struct etna_transfer *trans = etna_transfer(ptrans); local in function:etna_transfer_unmap
123 if (trans->rsc)
124 etna_bo_cpu_fini(etna_resource(trans->rsc)->bo);
127 if (trans->rsc) {
131 etna_copy_resource_box(pctx, ptrans->resource, trans->rsc, ptrans->level, &ptrans->box);
132 } else if (trans->staging) {
139 trans->mapped + (ptrans->box.z + z) * res_level->layer_stride,
140 trans->staging + z * ptrans->layer_stride,
146 util_copy_box(trans->mapped, rsc->base.format, res_level->stride,
150 trans
200 struct etna_transfer *trans; local in function:etna_transfer_map
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/d3d12/
H A Dd3d12_resource.cpp355 struct d3d12_transfer *trans, unsigned resid, unsigned z)
358 int subres = get_subresource_id(res, resid, z, trans->base.level);
370 struct d3d12_transfer *trans,
380 unsigned sub_resid = get_subresource_id(res, resid, z, trans->base.level);
388 buf_loc.PlacedFootprint.Footprint.Width = ALIGN(trans->base.box.width,
390 buf_loc.PlacedFootprint.Footprint.Height = ALIGN(trans->base.box.height,
395 buf_loc.PlacedFootprint.Footprint.RowPitch = trans->base.stride;
429 struct d3d12_transfer *trans,
435 trans->base.box.x, trans
354 fill_texture_location(struct d3d12_resource * res,struct d3d12_transfer * trans,unsigned resid,unsigned z) argument
367 fill_buffer_location(struct d3d12_context * ctx,struct d3d12_resource * res,struct d3d12_resource * staging_res,struct d3d12_transfer * trans,unsigned depth,unsigned resid,unsigned z) argument
426 transfer_buf_to_image_part(struct d3d12_context * ctx,struct d3d12_resource * res,struct d3d12_resource * staging_res,struct d3d12_transfer * trans,int z,int depth,int start_z,int dest_z,int resid) argument
457 transfer_buf_to_image(struct d3d12_context * ctx,struct d3d12_resource * res,struct d3d12_resource * staging_res,struct d3d12_transfer * trans,int resid) argument
480 transfer_image_part_to_buf(struct d3d12_context * ctx,struct d3d12_resource * res,struct d3d12_resource * staging_res,struct d3d12_transfer * trans,unsigned resid,int z,int start_layer,int start_box_z,int depth) argument
516 transfer_image_to_buf(struct d3d12_context * ctx,struct d3d12_resource * res,struct d3d12_resource * staging_res,struct d3d12_transfer * trans,unsigned resid) argument
708 prepare_zs_layer_strides(struct d3d12_resource * res,const struct pipe_box * box,struct d3d12_transfer * trans) argument
720 read_zs_surface(struct d3d12_context * ctx,struct d3d12_resource * res,const struct pipe_box * box,struct d3d12_transfer * trans) argument
803 prepare_write_zs_surface(struct d3d12_resource * res,const struct pipe_box * box,struct d3d12_transfer * trans) argument
817 write_zs_surface(struct pipe_context * pctx,struct d3d12_resource * res,struct d3d12_transfer * trans) argument
900 struct d3d12_transfer *trans = (struct d3d12_transfer *)slab_alloc(&ctx->transfer_pool); local in function:d3d12_transfer_map
1002 struct d3d12_transfer *trans = (struct d3d12_transfer *)ptrans; local in function:d3d12_transfer_unmap
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/lima/
H A Dlima_resource.h75 lima_transfer(struct pipe_transfer *trans) argument
77 return (struct lima_transfer *)trans;
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/lima/
H A Dlima_resource.h89 lima_transfer(struct pipe_transfer *trans) argument
91 return (struct lima_transfer *)trans;
/xsrc/external/mit/xf86-video-vmware/dist/vmwgfx/
H A Dvmwgfx_xa_composite.c73 vmwgfx_matrix_from_pict_transform(PictTransform *trans, float *matrix) argument
75 if (!trans)
78 matrix[0] = pixman_fixed_to_double(trans->matrix[0][0]);
79 matrix[3] = pixman_fixed_to_double(trans->matrix[0][1]);
80 matrix[6] = pixman_fixed_to_double(trans->matrix[0][2]);
82 matrix[1] = pixman_fixed_to_double(trans->matrix[1][0]);
83 matrix[4] = pixman_fixed_to_double(trans->matrix[1][1]);
84 matrix[7] = pixman_fixed_to_double(trans->matrix[1][2]);
86 matrix[2] = pixman_fixed_to_double(trans->matrix[2][0]);
87 matrix[5] = pixman_fixed_to_double(trans
[all...]
/xsrc/external/mit/pixman/dist/demos/
H A Dgradient-test.c24 pixman_transform_t trans = {
31 pixman_transform_t trans = { local in function:main
75 pixman_image_set_transform (src_img, &trans);
H A Dcheckerboard.c16 pixman_transform_t trans = { { local in function:main
59 pixman_image_set_transform (checkerboard, &trans);
H A Dclip-in.c20 pixman_transform_t trans = { local in function:main
37 pixman_image_set_transform (src_img, &trans);
/xsrc/external/mit/xorg-server.old/dist/mi/
H A Dmioverlay.h16 miOverlayTransFunc trans
/xsrc/external/mit/xorg-server/dist/mi/
H A Dmioverlay.h15 miOverlayInOverlayFunc inOverlay, miOverlayTransFunc trans);
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/
H A Dzink_resource.c1058 struct zink_transfer *trans)
1060 assert((trans->base.b.usage & (PIPE_MAP_DEPTH_ONLY | PIPE_MAP_STENCIL_ONLY)) !=
1065 struct pipe_box box = trans->base.b.box;
1068 box.x = trans->offset;
1071 zink_copy_image_buffer(ctx, dst, src, trans->base.b.level, buf2img ? x : 0,
1072 box.y, box.z, trans->base.b.level, &box, trans->base.b.usage);
1074 util_blitter_copy_texture(ctx->blitter, &dst->base.b, trans->base.b.level,
1126 struct zink_transfer *trans; local in function:create_transfer
1129 trans
1055 zink_transfer_copy_bufimage(struct zink_context * ctx,struct zink_resource * dst,struct zink_resource * src,struct zink_transfer * trans) argument
1146 destroy_transfer(struct zink_context * ctx,struct zink_transfer * trans) argument
1169 struct zink_transfer *trans = create_transfer(ctx, pres, usage, box); local in function:zink_buffer_map
1338 struct zink_transfer *trans = create_transfer(ctx, pres, usage, box); local in function:zink_image_map
1449 struct zink_transfer *trans = (struct zink_transfer *)ptrans; local in function:zink_transfer_flush_region
1487 struct zink_transfer *trans = (struct zink_transfer *)ptrans; local in function:transfer_unmap
1504 do_transfer_unmap(struct zink_screen * screen,struct zink_transfer * trans) argument
1516 struct zink_transfer *trans = (struct zink_transfer *)ptrans; local in function:zink_buffer_unmap
1526 struct zink_transfer *trans = (struct zink_transfer *)ptrans; local in function:zink_image_unmap
[all...]
/xsrc/external/mit/xtrans/dist/
H A DXtrans.c728 Xtransport *trans;
733 if ((trans = TRANS(SelectTransport)(protocol)) == NULL)
740 if (trans->flags & TRANS_ALIAS) {
741 if (trans->nolisten)
742 while (trans->nolisten[i]) {
743 ret |= TRANS(Received)(trans->nolisten[i]);
748 trans->flags |= TRANS_RECEIVED;
756 Xtransport *trans;
759 if ((trans = TRANS(SelectTransport)(protocol)) == NULL)
766 if (trans
726 Xtransport *trans; local in function:TRANS
754 Xtransport *trans; local in function:TRANS
779 Xtransport *trans; local in function:TRANS
804 Xtransport *trans; local in function:TRANS
1160 Xtransport *trans = Xtransports[i].transport; local in function:TRANS
[all...]

Completed in 18 milliseconds

1234567891011>>