Searched refs:tl (Results 1 - 25 of 31) sorted by relevance

12

/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/vl/
H A Dvl_compositor_gfx.c473 struct vertex2f tl, tr, br, bl; local in function:gen_rect_verts
480 tl = layer->dst.tl;
482 tr.y = layer->dst.tl.y;
484 bl.x = layer->dst.tl.x;
488 tl.x = layer->dst.br.x;
489 tl.y = layer->dst.tl.y;
491 br.x = layer->dst.tl.x;
493 bl = layer->dst.tl;
557 struct vertex2f tl, br; local in function:calc_drawn_area
[all...]
H A Dvl_compositor_cs.c305 struct vertex2f tl, br; local in function:calc_drawn_area
310 tl = layer->dst.tl;
314 result.x0 = tl.x * layer->viewport.scale[0] + layer->viewport.translate[0];
315 result.y0 = tl.y * layer->viewport.scale[1] + layer->viewport.translate[1];
H A Dvl_compositor.h81 struct vertex2f tl, br; member in struct:vl_compositor_layer::__anonfd6622410108
H A Dvl_compositor.c313 layer->src.tl = calc_topleft(size, src);
315 layer->dst.tl = calc_topleft(size, dst);
351 s->layers[layer].src.tl.y += half_a_line;
358 s->layers[layer].src.tl.y -= half_a_line;
572 s->layers[layer].src.tl.y += half_a_line;
582 s->layers[layer].src.tl.y -= half_a_line;
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/vl/
H A Dvl_compositor_gfx.c473 struct vertex2f tl, tr, br, bl; local in function:gen_rect_verts
480 tl = layer->dst.tl;
482 tr.y = layer->dst.tl.y;
484 bl.x = layer->dst.tl.x;
488 tl.x = layer->dst.br.x;
489 tl.y = layer->dst.tl.y;
491 br.x = layer->dst.tl.x;
493 bl = layer->dst.tl;
557 struct vertex2f tl, br; local in function:calc_drawn_area
[all...]
H A Dvl_compositor_cs.c625 struct vertex2f tl, br; local in function:calc_drawn_area
630 tl = layer->dst.tl;
634 result.x0 = tl.x * layer->viewport.scale[0] + layer->viewport.translate[0];
635 result.y0 = tl.y * layer->viewport.scale[1] + layer->viewport.translate[1];
715 (layer->src.br.x - layer->src.tl.x);
719 (layer->src.br.y - layer->src.tl.y));
H A Dvl_compositor.h83 struct vertex2f tl, br; member in struct:vl_compositor_layer::__anon30f112140108
H A Dvl_compositor.c310 layer->src.tl = calc_topleft(size, src);
312 layer->dst.tl = calc_topleft(size, dst);
349 s->layers[layer].src.tl.y += half_a_line;
359 s->layers[layer].src.tl.y -= half_a_line;
586 s->layers[layer].src.tl.y += half_a_line;
596 s->layers[layer].src.tl.y -= half_a_line;
/xsrc/external/mit/MesaLib.old/dist/src/intel/tools/
H A Daubinator_viewer_urb.h17 const ImVec2& tl, const ImVec2& br) {
19 tl.x <= mouse.x && tl.y <= mouse.y &&
16 _Hovered(const ImVec2 & mouse,bool window_hovered,const ImVec2 & tl,const ImVec2 & br) argument
/xsrc/external/mit/MesaLib/dist/src/intel/tools/
H A Daubinator_viewer_urb.h17 const ImVec2& tl, const ImVec2& br) {
19 tl.x <= mouse.x && tl.y <= mouse.y &&
16 _Hovered(const ImVec2 & mouse,bool window_hovered,const ImVec2 & tl,const ImVec2 & br) argument
/xsrc/external/mit/glu/dist/src/libnurbs/internals/
H A Dcoveandtiler.cc94 TrimVertex blv, tlv, *bl, *tl; local in function:CoveAndTiler::coveAndTile
104 tl = lf;
118 tl = &tlv;
127 coveLowerLeftNoGrid( tl );
171 output( tl );
336 CoveAndTiler::coveLowerLeftNoGrid( TrimVertex* tl ) argument
342 output( tl );
/xsrc/external/mit/freetype/dist/src/gzip/
H A Dinfblock.c157 inflate_huft *tl, *td; local in function:inflate_blocks
159 inflate_trees_fixed(&bl, &bd, (const inflate_huft**)&tl,
161 s->sub.decode.codes = inflate_codes_new(bl, bd, tl, td, z);
311 inflate_huft *tl, *td; local in function:inflate_blocks
318 s->sub.trees.blens, &bl, &bd, &tl, &td,
331 if ((c = inflate_codes_new(bl, bd, tl, td, z)) == Z_NULL)
H A Dinftrees.c327 local int inflate_trees_dynamic( /* nl, nd, c, bl, bd, tl, td, hp, z) */ argument
333 inflate_huft * FAR *tl, /* literal/length tree result */
348 r = huft_build(c, nl, 257, cplens, cplext, tl, bl, hp, &hn, v);
409 local int inflate_trees_fixed( /* bl, bd, tl, td, z) */ argument
412 const inflate_huft * FAR *tl, /* literal/length tree result */
465 *tl = fixed_tl;
H A Dinfcodes.c58 local inflate_codes_statef *inflate_codes_new( /* bl, bd, tl, td, z) */ argument
60 inflate_huft *tl,
72 c->ltree = tl;
/xsrc/external/mit/MesaLib/dist/src/gallium/frontends/lavapipe/
H A Dlvp_device.c1202 struct lvp_semaphore_timeline *tl = util_dynarray_pop(&sema->links, struct lvp_semaphore_timeline*); local in function:get_semaphore_link
1204 sema->latest->next = tl;
1206 sema->timeline = tl;
1207 sema->latest = tl;
1208 return tl;
1221 struct lvp_semaphore_timeline *tl = sema->timeline; local in function:prune_semaphore_links
1223 while (tl && ((tl->timeline <= timeline) || (tl->signal <= sema->current))) {
1224 struct lvp_semaphore_timeline *cur = tl;
1243 for (struct lvp_semaphore_timeline *tl = sema->timeline; tl; tl = tl->next) { local in function:find_semaphore_timeline
1253 struct lvp_semaphore_timeline *tl; member in struct:timeline_wait
1549 struct lvp_semaphore_timeline *tl = get_semaphore_link(sema); local in function:lvp_QueueSubmit
[all...]
/xsrc/external/mit/pixman/dist/pixman/
H A Dpixman-inlines.h94 bilinear_interpolation (uint32_t tl, uint32_t tr, argument
111 lo = (tl & 0xff00ff) * distixiy;
112 hi = ((tl >> 8) & 0xff00ff) * distixiy;
130 bilinear_interpolation (uint32_t tl, uint32_t tr, argument
147 tl64 = tl & 0xff0000ff;
156 tl64 = tl;
177 bilinear_interpolation (uint32_t tl, uint32_t tr, argument
195 r = (tl & 0x000000ff) * distixiy + (tr & 0x000000ff) * distxiy
199 f = (tl & 0x0000ff00) * distixiy + (tr & 0x0000ff00) * distxiy
203 tl >>
226 bilinear_interpolation_float(argb_t tl,argb_t tr,argb_t bl,argb_t br,float distx,float disty) argument
[all...]
H A Dpixman-bits-image.c107 uint32_t tl, tr, bl, br; local in function:bits_image_fetch_pixel_bilinear_32
129 get_pixel (image, x1, y1, FALSE, &tl);
136 get_pixel (image, x1, y1, TRUE, &tl);
142 *ret = bilinear_interpolation (tl, tr, bl, br, distx, disty);
156 argb_t tl, tr, bl, br; local in function:bits_image_fetch_pixel_bilinear_float
178 get_pixel (image, x1, y1, FALSE, &tl);
185 get_pixel (image, x1, y1, TRUE, &tl);
191 *ret = bilinear_interpolation_float (tl, tr, bl, br, distx, disty);
H A Dpixman-mips-dspr2-asm.h655 .macro BILINEAR_INTERPOLATE_SINGLE_PIXEL tl, tr, bl, br, \
659 andi \scratch1, \tl, 0xff
669 ext \scratch1, \tl, 8, 8
679 ext \scratch1, \tl, 16, 8
691 ext \scratch1, \tl, 24, 8
708 precrq.qb.ph \tl, \alpha, \scratch1
H A Dpixman-fast-path.c2650 uint32_t tl, tr, bl, br; local in function:bits_image_fetch_bilinear_no_repeat_8888
2653 tl = top_row [pixman_fixed_to_int (x_top)] | top_mask;
2660 *buffer = bilinear_interpolation (tl, tr, bl, br, distx, disty);
2676 uint32_t tl, bl; local in function:bits_image_fetch_bilinear_no_repeat_8888
2679 tl = top_row [pixman_fixed_to_int (x_top)] | top_mask;
2684 *buffer = bilinear_interpolation (tl, 0, bl, 0, distx, disty);
2884 uint32_t tl, tr, bl, br; local in function:bits_image_fetch_bilinear_affine
2919 tl = convert_pixel (row1, x1) | mask;
2973 tl = 0;
2978 tl
[all...]
/xsrc/external/mit/xf86-video-intel/dist/src/sna/
H A Dblt.c1566 bilinear_interpolation(uint32_t tl, uint32_t tr, argument
1583 lo = (tl & 0xff00ff) * distixiy;
1584 hi = ((tl >> 8) & 0xff00ff) * distixiy;
1599 bilinear_interpolation(uint32_t tl, uint32_t tr, argument
1616 tl64 = tl & 0xff0000ff;
1625 tl64 = tl;
1644 bilinear_interpolation(uint32_t tl, uint32_t tr, argument
1662 r = ((tl & 0x000000ff) * distixiy + (tr & 0x000000ff) * distxiy +
1666 f = ((tl & 0x0000ff00) * distixiy + (tr & 0x0000ff00) * distxiy +
1670 tl >>
1734 uint32_t tl, tr, bl, br; local in function:affine_blt
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/frontends/va/
H A Dpicture_h264_enc.c204 VAEncMiscParameterTemporalLayerStructure *tl = (VAEncMiscParameterTemporalLayerStructure *)misc->data; local in function:vlVaHandleVAEncMiscParameterTypeTemporalLayerH264
206 context->desc.h264enc.num_temporal_layers = tl->number_of_layers;
/xsrc/external/mit/fontconfig/dist/fc-lang/
H A DMakefile.am201 tl.orth \
/xsrc/external/mit/MesaLib/dist/docs/isl/
H A Dunits.rst11 * Tiles (tl)
/xsrc/external/mit/fontconfig/dist/conf.d/
H A D35-lang-normalize.conf1119 <!-- tl* -> tl -->
1121 <test name="lang" compare="contains"><string>tl</string></test>
1122 <edit name="lang" mode="assign" binding="same"><string>tl</string></edit>
/xsrc/external/mit/MesaLib.old/dist/src/amd/common/
H A Dac_llvm_build.c1934 LLVMValueRef tl, trbl; local in function:ac_build_ddxy
1948 tl = ac_build_quad_swizzle(ctx, val,
1956 tl = LLVMBuildTrunc(ctx->builder, tl, ctx->i16, "");
1960 tl = LLVMBuildBitCast(ctx->builder, tl, result_type, "");
1962 result = LLVMBuildFSub(ctx->builder, trbl, tl, "");

Completed in 37 milliseconds

12