HomeSort by: relevance | last modified time | path
    Searched defs:template (Results 1 - 25 of 38) sorted by relevancy

1 2

  /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
format_pack.py 3 from mako.template import Template
1000 template = Template(string, future_imports=['division']); variable
1002 print(template.render(argv = argv[0:]))
format_unpack.py 3 from mako.template import Template
893 template = Template(string, future_imports=['division']); variable
895 print(template.render(argv = argv[0:]))
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/panfrost/ci/
generate_lava.py 7 parser.add_argument("--template")
12 template = env.get_template(args.template) variable
17 print(template.render(values)
  /xsrc/external/mit/MesaLib/dist/src/util/
anon_file.c 129 char template[] = "/tmp/mesa-XXXXXXXXXX"; local
130 fd = shm_mkstemp(template);
132 shm_unlink(template);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/swr/rasterizer/codegen/
gen_llvm_ir_macros.py 85 template = os.path.join(this_dir, 'templates', 'gen_builder.hpp') variable
229 template,
274 template,
303 template,
  /xsrc/external/mit/MesaLib/dist/src/mapi/glapi/
glapi_entrypoint.c 141 static const unsigned int template[] = { local
207 code[0] = template[0] | (dispatch >> 10);
208 code[1] = template[1];
210 code[2] = template[2] | (dispatch & 0x3ff);
211 code[3] = template[3];
213 code[4] = template[4];
214 code[5] = template[5];
216 code[6] = template[6];
220 code[0] = template[0] | (dispatch >> (32 + 10));
221 code[1] = template[1] | ((dispatch & 0xffffffff) >> 10)
271 static const unsigned int template[] = { local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/rasterizer/codegen/
gen_llvm_ir_macros.py 86 template = os.path.join(this_dir, 'templates', 'gen_builder.hpp') variable
220 template,
265 template,
294 template,
  /xsrc/external/mit/MesaLib.old/dist/src/mapi/glapi/
glapi_entrypoint.c 141 static const unsigned int template[] = { local
207 code[0] = template[0] | (dispatch >> 10);
208 code[1] = template[1];
210 code[2] = template[2] | (dispatch & 0x3ff);
211 code[3] = template[3];
213 code[4] = template[4];
214 code[5] = template[5];
216 code[6] = template[6];
220 code[0] = template[0] | (dispatch >> (32 + 10));
221 code[1] = template[1] | ((dispatch & 0xffffffff) >> 10)
271 static const unsigned int template[] = { local
    [all...]
  /xsrc/external/mit/libXmu/dist/src/
AllCmap.c 97 XVisualInfo template, *vinfo, *v1, *v2; local
103 template.screen = scr;
105 vinfo = XGetVisualInfo(dpy, vinfo_mask, &template, &nvisuals);
  /xsrc/external/mit/libxshmfence/dist/src/
xshmfence_alloc.c 71 char template[] = SHMDIR "/shmfd-XXXXXX"; local
92 fd = mkostemp(template, O_CLOEXEC);
94 fd = mkstemp(template);
98 unlink(template);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/
r600_uvd.c 66 struct pipe_video_buffer template; local
78 template = *tmpl;
79 template.width = align(tmpl->width, VL_MACROBLOCK_WIDTH);
80 template.height = align(tmpl->height / array_size, VL_MACROBLOCK_HEIGHT);
82 vl_video_buffer_template(&templ, &template, resource_formats[0], 1, array_size,
92 vl_video_buffer_template(&templ, &template, resource_formats[1], 1, array_size,
103 vl_video_buffer_template(&templ, &template, resource_formats[2], 1, array_size,
132 template.height *= array_size;
133 return vl_video_buffer_create_ex2(pipe, &template, (struct pipe_resource **)resources);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r600/
r600_uvd.c 66 struct pipe_video_buffer template; local
78 template = *tmpl;
79 template.width = align(tmpl->width, VL_MACROBLOCK_WIDTH);
80 template.height = align(tmpl->height / array_size, VL_MACROBLOCK_HEIGHT);
82 vl_video_buffer_template(&templ, &template, resource_formats[0], 1, array_size, PIPE_USAGE_DEFAULT, 0);
91 vl_video_buffer_template(&templ, &template, resource_formats[1], 1, array_size, PIPE_USAGE_DEFAULT, 1);
101 vl_video_buffer_template(&templ, &template, resource_formats[2], 1, array_size, PIPE_USAGE_DEFAULT, 2);
129 template.height *= array_size;
130 return vl_video_buffer_create_ex2(pipe, &template, (struct pipe_resource **)resources);
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/lavapipe/
lvp_image.c 46 struct pipe_resource template; local
48 memset(&template, 0, sizeof(template));
50 template.screen = device->pscreen;
53 template.target = pCreateInfo->arrayLayers > 1 ? PIPE_TEXTURE_1D_ARRAY : PIPE_TEXTURE_1D;
57 template.target = pCreateInfo->arrayLayers > 1 ? PIPE_TEXTURE_2D_ARRAY : PIPE_TEXTURE_2D;
60 template.target = PIPE_TEXTURE_3D;
64 template.format = lvp_vk_format_to_pipe_format(pCreateInfo->format);
66 bool is_ds = util_format_is_depth_or_stencil(template.format);
69 template.bind |= PIPE_BIND_RENDER_TARGET
314 struct pipe_resource template; local
    [all...]
  /xsrc/external/mit/fontconfig/dist/test/
test-bz106632.c 59 fc_mkdtemp (char *template)
61 if (!mktemp (template) || mkdir (template, 0700))
64 return template;
169 char *basedir, template[512] = "/tmp/bz106632-XXXXXX"; local
182 basedir = fc_mkdtemp (template);
185 fprintf (stderr, "%s: %s\n", template, strerror (errno));
test-issue107.c 74 fc_mkdtemp (char *template)
76 if (!mktemp (template) || mkdir (template, 0700))
79 return template;
184 char *basedir = NULL, template[512] = "/tmp/fc107-XXXXXX"; local
197 basedir = fc_mkdtemp (template);
200 fprintf (stderr, "%s: %s\n", template, strerror (errno));
test-issue110.c 74 fc_mkdtemp (char *template)
76 if (!mktemp (template) || mkdir (template, 0700))
79 return template;
184 char *basedir, template[512] = "/tmp/fc110-XXXXXX"; local
193 basedir = fc_mkdtemp (template);
196 fprintf (stderr, "%s: %s\n", template, strerror (errno));
test-migration.c 46 fc_mkdtemp (char *template)
48 if (!mktemp (template) || mkdir (template, 0700))
51 return template;
150 char template[32] = "fontconfig-XXXXXXXX"; local
151 char *tmp = fc_mkdtemp (template);
test-d1f48f11.c 75 fc_mkdtemp (char *template)
77 if (!mktemp (template) || mkdir (template, 0700))
80 return template;
181 char template[512] = "/tmp/fc-d1f48f11-XXXXXX"; variable
243 rootdir = fc_mkdtemp (template);
246 fprintf (stderr, "%s: %s\n", template, strerror (errno));
  /xsrc/external/mit/MesaGLUT/dist/src/glut/glx/
glut_overlay.c 104 XLayerVisualInfo template; local
116 template.vinfo.screen = __glutScreen;
117 template.vinfo.class = PseudoColor;
118 template.layer = i;
119 template.type = TransparentPixel;
122 &template, &nitems);
  /xsrc/external/mit/xorg-server.old/dist/hw/dmx/
dmx_glxvisuals.c 208 XVisualInfo *vis, template; local
211 template.screen = screen;
212 template.visualid = config->vid;
214 &template, &n);
467 XVisualInfo *vis, template; local
470 template.screen = screen;
471 template.visualid = config->associatedVisualId;
473 &template, &n);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/svga/
svga_pipe_blit.c 647 struct pipe_resource template; local
658 template = *src;
659 template.format = blit.src.format;
660 newSrc = svga_texture_create(svga->pipe.screen, &template);
685 struct pipe_resource template; local
695 template = *dst;
696 template.format = blit.dst.format;
697 newDst = svga_texture_create(svga->pipe.screen, &template);
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/xa/
xa_tracker.c 341 struct pipe_resource *template; local
357 template = &srf->template;
358 template->format = fdesc.format;
359 template->target = PIPE_TEXTURE_2D;
360 template->width0 = width;
361 template->height0 = height;
362 template->depth0 = 1;
363 template->array_size = 1;
364 template->last_level = 0
448 struct pipe_resource *template = &srf->template; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/svga/
svga_pipe_blit.c 653 struct pipe_resource template; local
664 template = *src;
665 template.format = blit.src.format;
666 newSrc = svga_texture_create(svga->pipe.screen, &template);
691 struct pipe_resource template; local
701 template = *dst;
702 template.format = blit.dst.format;
703 newDst = svga_texture_create(svga->pipe.screen, &template);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/xa/
xa_tracker.c 341 struct pipe_resource *template; local
357 template = &srf->template;
358 template->format = fdesc.format;
359 template->target = PIPE_TEXTURE_2D;
360 template->width0 = width;
361 template->height0 = height;
362 template->depth0 = 1;
363 template->array_size = 1;
364 template->last_level = 0
448 struct pipe_resource *template = &srf->template; local
    [all...]
  /xsrc/external/mit/xstdcmap/dist/
xstdcmap.c 280 XVisualInfo *vinfo, *v = NULL, template; local
283 template.screen = screen;
284 vinfo = XGetVisualInfo(dpy, VisualScreenMask, &template, &nvisuals);

Completed in 23 milliseconds

1 2