Searched defs:template (Results 76 - 100 of 140) sorted by relevance

123456

/external/mesa3d/src/compiler/nir/
H A Dnir_algebraic.py32 import mako.template namespace
78 __template = mako.template.Template("""
500 _algebraic_pass_template = mako.template.Template("""
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_pipe_blit.c416 struct pipe_resource template; local
427 template = *src;
428 template.format = blit.src.format;
429 newSrc = svga_texture_create(svga->pipe.screen, &template);
453 struct pipe_resource template; local
463 template = *dst;
464 template.format = blit.dst.format;
465 newDst = svga_texture_create(svga->pipe.screen, &template);
H A Dsvga_resource_texture.c900 const struct pipe_resource *template)
904 unsigned bindings = template->bind;
909 assert(template->last_level < SVGA_MAX_TEXTURE_LEVELS);
910 if (template->last_level >= SVGA_MAX_TEXTURE_LEVELS) {
919 tex->defined = CALLOC(template->depth0 * template->array_size,
926 tex->rendered_to = CALLOC(template->depth0 * template->array_size,
932 tex->dirty = CALLOC(template->depth0 * template
899 svga_texture_create(struct pipe_screen *screen, const struct pipe_resource *template) argument
1144 svga_texture_from_handle(struct pipe_screen *screen, const struct pipe_resource *template, struct winsys_handle *whandle) argument
[all...]
/external/mesa3d/src/gallium/drivers/virgl/
H A Dvirgl_texture.c311 const struct pipe_resource *template,
318 tex->base.u.b = *template;
329 const struct pipe_resource *template)
337 tex->base.u.b = *template;
343 vbind = pipe_to_virgl_bind(template->bind);
344 tex->base.hw_res = vs->vws->resource_create(vs->vws, template->target, template->format, vbind, template->width0, template->height0, template
310 virgl_texture_from_handle(struct virgl_screen *vs, const struct pipe_resource *template, struct winsys_handle *whandle) argument
328 virgl_texture_create(struct virgl_screen *vs, const struct pipe_resource *template) argument
[all...]
/external/mesa3d/src/gallium/state_trackers/xa/
H A Dxa_tracker.c332 struct pipe_resource *template; local
348 template = &srf->template;
349 template->format = fdesc.format;
350 template->target = PIPE_TEXTURE_2D;
351 template->width0 = width;
352 template->height0 = height;
353 template->depth0 = 1;
354 template->array_size = 1;
355 template
439 struct pipe_resource *template = &srf->template; local
[all...]
/external/python/cpython2/Lib/
H A Dtempfile.py13 template - the default prefix for all temporary names.
80 template = "tmp" variable
263 """Accessor for tempdir.template."""
264 return template
280 def mkstemp(suffix="", prefix=template, dir=None, text=False):
317 def mkdtemp(suffix="", prefix=template, dir=None):
353 def mktemp(suffix="", prefix=template, dir=None):
448 prefix=template, dir=None, delete=True):
491 prefix=template, dir=None):
527 suffix="", prefix=template, di
[all...]
/external/python/cpython3/Lib/
H A Dre.py134 "findall", "finditer", "compile", "purge", "template", "escape",
240 def template(pattern, flags=0): function
241 "Compile a template pattern, returning a pattern object"
319 def _expand(pattern, match, template):
321 template = sre_parse.parse_template(template, pattern)
322 return sre_parse.expand_template(template, match)
324 def _subx(pattern, template):
326 template = _compile_repl(template, patter
[all...]
H A Dtempfile.py71 template = "tmp" variable
125 prefix = template
127 prefix = _os.fsencode(template)
281 return template
384 def mktemp(suffix="", prefix=template, dir=None):
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
H A DDataUsageController.java112 NetworkTemplate template = NetworkTemplate.buildTemplateMobileAll(subscriberId);
113 template = NetworkTemplate.normalize(template, mTelephonyManager.getMergedSubscriberIds());
115 return getDataUsageInfo(template);
126 NetworkTemplate template = NetworkTemplate.buildTemplateMobileAll(subscriberId);
127 template = NetworkTemplate.normalize(template, mTelephonyManager.getMergedSubscriberIds());
129 return getDataUsageInfo(template, uId);
137 NetworkTemplate template = NetworkTemplate.buildTemplateWifiWildcard();
138 return getDataUsageInfo(template);
146 getDataUsageInfo(NetworkTemplate template) argument
155 getDataUsageInfo(NetworkTemplate template, int uId) argument
209 findNetworkPolicy(NetworkTemplate template) argument
[all...]
/external/tensorflow/tensorflow/contrib/eager/python/
H A Dtfe.py107 from tensorflow.python.ops import template namespace
112 make_template = template.make_template_internal
/external/boringssl/src/crypto/obj/
H A Dobj.c267 ASN1_OBJECT *match, template; local
269 template.sn = short_name;
270 match = lh_ASN1_OBJECT_retrieve(global_added_by_short_name, &template);
303 ASN1_OBJECT *match, template; local
305 template.ln = long_name;
306 match = lh_ASN1_OBJECT_retrieve(global_added_by_long_name, &template);
358 ASN1_OBJECT *match, template; local
360 template.nid = nid;
361 match = lh_ASN1_OBJECT_retrieve(global_added_by_nid, &template);
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
H A DTemplateInterpreter.java56 import com.google.clearsilver.jsilver.template.Macro;
57 import com.google.clearsilver.jsilver.template.RenderingContext;
58 import com.google.clearsilver.jsilver.template.Template;
59 import com.google.clearsilver.jsilver.template.TemplateLoader;
68 * Main JSilver interpreter. This walks a template's AST and renders the result out.
72 private final Template template; field in class:TemplateInterpreter
80 public TemplateInterpreter(Template template, TemplateLoader templateLoader, argument
82 this.template = template;
148 // Now parse result, into new mini template
[all...]
/external/libcups/filter/
H A Dtestclient.c93 "job-template",
413 int temprow, /* Row in template */
415 const char *template; /* Pointer into template */ local
436 { /* Raster template */
637 * Write a single page consisting of the template dots repeated over the page.
649 template = templates[temprow];
671 for (lineptr = line + xoff; *template; template ++)
673 if (*template !
[all...]
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_winsys_dri.c184 struct pipe_resource template, *tex; local
238 memset(&template, 0, sizeof(template));
239 template.target = PIPE_TEXTURE_2D;
240 template.format = PIPE_FORMAT_B8G8R8X8_UNORM;
241 template.last_level = 0;
242 template.width0 = reply->width;
243 template.height0 = reply->height;
244 template.depth0 = 1;
245 template
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_texture.c436 const struct pipe_resource *template,
450 lpr->base = *template;
464 template,
435 llvmpipe_resource_from_handle(struct pipe_screen *screen, const struct pipe_resource *template, struct winsys_handle *whandle, unsigned usage) argument
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DSIPHeaderList.java411 * Template match against a template. null field in template indicates wild
414 public boolean match(SIPHeaderList<?> template) { argument
415 if (template == null)
417 if (!this.getClass().equals(template.getClass()))
419 SIPHeaderList<SIPHeader> that = (SIPHeaderList<SIPHeader>) template;
/external/tensorflow/tensorflow/python/kernel_tests/
H A Dtemplate_test.py31 from tensorflow.python.ops import template namespace
77 The template is used to share parameters between a training and test model.
92 line_template = template.make_template("line", test_line)
117 The template is used to share parameters between a training and test model.
133 line_template = template.make_template("line", test_line)
157 result = template._skip_common_stack_elements(first, second)
163 tmpl1 = template.make_template("s1", variable_scoped_function)
164 tmpl2 = template.make_template("s1", variable_scoped_function)
175 tmpl1 = template.make_template(
178 tmpl2 = template
[all...]
/external/guice/extensions/struts2/lib/
H A Dfreemarker-2.3.16.jar ... servlet/ freemarker/ext/util/ freemarker/ext/xml/ freemarker/log/ freemarker/template/ freemarker/template/debug/ freemarker/template/utility/ freemarker/cache/CacheStorage. ...
/external/boringssl/src/crypto/conf/
H A Dconf.c367 CONF_VALUE template; local
369 OPENSSL_memset(&template, 0, sizeof(template));
370 template.section = (char *) section;
371 return lh_CONF_VALUE_retrieve(conf->data, &template);
384 CONF_VALUE template, *value; local
386 OPENSSL_memset(&template, 0, sizeof(template));
387 template.section = (char *) section;
388 template
[all...]
/external/clang/test/Preprocessor/
H A Dcxx_oper_keyword_ms_compat.cpp86 #define template macro
171 template
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_resource_texture.c921 const struct pipe_resource *template,
932 tex->b.b = *template;
937 if ( (force_untiled) || (template->usage == PIPE_USAGE_STREAM) )
955 if ((template->bind & PIPE_BIND_SCANOUT) && template->width0 != 64)
979 const struct pipe_resource *template,
991 buffer = iws->buffer_from_handle(iws, whandle, template->height0, &tiling, &stride);
994 if ((template->target != PIPE_TEXTURE_2D &&
995 template->target != PIPE_TEXTURE_RECT) ||
996 template
920 i915_texture_create(struct pipe_screen *screen, const struct pipe_resource *template, boolean force_untiled) argument
978 i915_texture_from_handle(struct pipe_screen * screen, const struct pipe_resource *template, struct winsys_handle *whandle) argument
[all...]
/external/mesa3d/src/gallium/drivers/nouveau/nv50/
H A Dnv84_video.c603 const struct pipe_video_buffer *template)
615 if (getenv("XVMC_VL") || template->buffer_format != PIPE_FORMAT_NV12)
616 return vl_video_buffer_create(pipe, template);
618 if (!template->interlaced) {
622 if (template->chroma_format != PIPE_VIDEO_CHROMA_FORMAT_420) {
638 buffer->base.buffer_format = template->buffer_format;
641 buffer->base.chroma_format = template->chroma_format;
642 buffer->base.width = template->width;
643 buffer->base.height = template->height;
654 templ.width0 = align(template
602 nv84_video_buffer_create(struct pipe_context *pipe, const struct pipe_video_buffer *template) argument
[all...]
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
H A Druntime.py64 the template execution such as local variable names or special names
70 except the template is being called in an inheritance context,
72 used to propagate these arguments to the inheriting template::
214 """Represents an undefined value in a template.
216 All template modules have a constant value
379 this module is the equivalent of ``template.module``,
380 i.e. the generated module for the template.
384 template = None variable in class:Namespace
403 :class:`.Namespace`'s module or template.
407 template
829 import mako.template as template namespace
[all...]
/external/tensorflow/tensorflow/python/feature_column/
H A Dfeature_column.py153 from tensorflow.python.ops import template namespace
295 self._input_layer_template = template.make_template(
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DStylesheetRoot.java354 * @param templ non-null reference to template element that will have
394 * @param addToList <code>true</code> if this template should be added to the import list
704 * The "xsl:template" properties.
710 * Recompose the template declarations.
712 * @param template An ElemTemplate object to add to the template list.
714 void recomposeTemplates(ElemTemplate template) argument
716 m_templateList.setTemplate(template);
733 * the template list is built during the recompose process and should not be
743 * Get an "xsl:template" propert
[all...]

Completed in 829 milliseconds

123456