HomeSort by relevance Sort by last modified time
    Searched refs:tmpl (Results 1 - 25 of 55) sorted by null

1 2 3

  /ndk/sources/host-tools/sed-4.2.1/lib/
tempname.h 26 /* Generate a temporary file name based on TMPL. TMPL must match the
28 does not exist at the time of the call to gen_tempname. TMPL is
39 extern int gen_tempname (char *tmpl, int kind);
tempname.c 119 P_tmpdir, /tmp that exists. Copies into TMPL a template suitable
122 enough space in TMPL. */
124 __path_search (char *tmpl, size_t tmpl_len, const char *dir, const char *pfx,
176 sprintf (tmpl, "%.*s/%.*sXXXXXX", (int) dlen, dir, (int) plen, pfx);
185 /* Generate a temporary file name based on TMPL. TMPL must match the
187 does not exist at the time of the call to __gen_tempname. TMPL is
200 __gen_tempname (char *tmpl, int kind)
227 len = strlen (tmpl);
228 if (len < 6 || strcmp (&tmpl[len - 6], "XXXXXX")
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
nv30_resource.c 36 const struct pipe_resource *tmpl)
38 switch (tmpl->target) {
40 return nouveau_buffer_create(pscreen, tmpl);
42 return nv30_miptree_create(pscreen, tmpl);
48 const struct pipe_resource *tmpl,
51 if (tmpl->target == PIPE_BUFFER)
54 return nv30_miptree_from_handle(pscreen, tmpl, handle);
nv30_miptree.c 271 const struct pipe_resource *tmpl)
280 switch (tmpl->nr_samples) {
299 *pt = *tmpl;
359 const struct pipe_resource *tmpl,
366 if ((tmpl->target != PIPE_TEXTURE_2D &&
367 tmpl->target != PIPE_TEXTURE_RECT) ||
368 tmpl->last_level != 0 ||
369 tmpl->depth0 != 1 ||
370 tmpl->array_size > 1)
383 mt->base.base = *tmpl;
    [all...]
nv30_texture.c 202 const struct pipe_sampler_view *tmpl)
204 const struct nv30_texfmt *fmt = nv30_texfmt(pipe->screen, tmpl->format);
212 so->pipe = *tmpl;
241 so->swz |= swizzle(fmt, 3, tmpl->swizzle_a);
242 so->swz |= swizzle(fmt, 0, tmpl->swizzle_r) << 2;
243 so->swz |= swizzle(fmt, 1, tmpl->swizzle_g) << 4;
244 so->swz |= swizzle(fmt, 2, tmpl->swizzle_b) << 6;
256 switch (tmpl->format) {
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_resource.c 36 const struct pipe_resource *tmpl)
38 switch (tmpl->target) {
40 return nouveau_buffer_create(pscreen, tmpl);
42 return nv30_miptree_create(pscreen, tmpl);
48 const struct pipe_resource *tmpl,
51 if (tmpl->target == PIPE_BUFFER)
54 return nv30_miptree_from_handle(pscreen, tmpl, handle);
nv30_miptree.c 271 const struct pipe_resource *tmpl)
280 switch (tmpl->nr_samples) {
299 *pt = *tmpl;
359 const struct pipe_resource *tmpl,
366 if ((tmpl->target != PIPE_TEXTURE_2D &&
367 tmpl->target != PIPE_TEXTURE_RECT) ||
368 tmpl->last_level != 0 ||
369 tmpl->depth0 != 1 ||
370 tmpl->array_size > 1)
383 mt->base.base = *tmpl;
    [all...]
nv30_texture.c 202 const struct pipe_sampler_view *tmpl)
204 const struct nv30_texfmt *fmt = nv30_texfmt(pipe->screen, tmpl->format);
212 so->pipe = *tmpl;
241 so->swz |= swizzle(fmt, 3, tmpl->swizzle_a);
242 so->swz |= swizzle(fmt, 0, tmpl->swizzle_r) << 2;
243 so->swz |= swizzle(fmt, 1, tmpl->swizzle_g) << 4;
244 so->swz |= swizzle(fmt, 2, tmpl->swizzle_b) << 6;
256 switch (tmpl->format) {
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_video_buffer.c 217 const struct pipe_video_buffer *tmpl,
224 templ->width0 = tmpl->width;
225 templ->height0 = tmpl->height;
232 if (tmpl->chroma_format == PIPE_VIDEO_CHROMA_FORMAT_420) {
235 } else if (tmpl->chroma_format == PIPE_VIDEO_CHROMA_FORMAT_422) {
391 const struct pipe_video_buffer *tmpl)
398 assert(tmpl->width > 0 && tmpl->height > 0);
407 resource_formats = vl_video_buffer_formats(pipe->screen, tmpl->buffer_format);
411 templat = *tmpl;
    [all...]
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_video_buffer.c 217 const struct pipe_video_buffer *tmpl,
224 templ->width0 = tmpl->width;
225 templ->height0 = tmpl->height;
232 if (tmpl->chroma_format == PIPE_VIDEO_CHROMA_FORMAT_420) {
235 } else if (tmpl->chroma_format == PIPE_VIDEO_CHROMA_FORMAT_422) {
391 const struct pipe_video_buffer *tmpl)
398 assert(tmpl->width > 0 && tmpl->height > 0);
407 resource_formats = vl_video_buffer_formats(pipe->screen, tmpl->buffer_format);
411 templat = *tmpl;
    [all...]
  /external/clang/test/CodeGenCXX/
debug-info-template.cpp 43 // CHECK: [[TCARG7]] = {{.*}}metadata !"tmpl", null, metadata !"tmpl_impl", {{.*}} ; [ DW_TAG_GNU_template_template_param ]
78 template<typename T, T, int *x, int foo::*a, void (foo::*b)(), void (*f)(), template<typename> class tmpl, int ...Is>
  /external/clang/test/Misc/
ast-dump-templates.cpp 46 void tmpl() { function in namespace:test2
  /external/clang/test/SemaCXX/
conversion.cpp 107 void tmpl(char c = NULL, // expected-warning 4 {{implicit conversion of NULL constant to 'char'}} function in namespace:test4
118 tmpl<char>(); // expected-note 2 {{in instantiation of default function argument expression for 'tmpl<char>' required here}}
119 tmpl<int>(); // expected-note 2 {{in instantiation of default function argument expression for 'tmpl<int>' required here}}
121 tmpl<int>(); // expected-note 2 {{in instantiation of default function argument expression for 'tmpl<int>' required here}}
  /external/clang/test/SemaTemplate/
member-template-access-expr.cpp 112 template< class X > X tmpl( const X* = 0 ) const;
121 return o.tmpl<X>();
  /external/iproute2/ip/
xfrm_policy.c 63 fprintf(stderr, " [ LIMIT-LIST ] [ TMPL-LIST ]\n");
93 fprintf(stderr, "TMPL-LIST := [ TMPL-LIST ] tmpl TMPL\n");
94 fprintf(stderr, "TMPL := ID [ mode MODE ] [ reqid REQID ] [ level LEVEL ]\n");
181 static int xfrm_tmpl_parse(struct xfrm_user_tmpl *tmpl,
191 xfrm_mode_parse(&tmpl->mode, &argc, &argv);
194 xfrm_reqid_parse(&tmpl->reqid, &argc, &argv);
199 tmpl->optional = 0
334 struct xfrm_user_tmpl *tmpl; local
    [all...]
  /external/clang/test/Parser/
cxx0x-attributes.cpp 176 template<typename T> void tmpl(T) {} function
177 template void tmpl [[]] (int); // expected-FIXME {{an attribute list cannot appear here}}
178 template [[]] void tmpl(char); // expected-error {{an attribute list cannot appear here}}
179 template void [[]] tmpl(short);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_slicing.py 168 tmpl = range(ord("a"), ord("z")+1)
169 self.assertEqual(res[:len(s)-1], tmpl)
170 self.assertEqual(res[:len(s)-1:], tmpl)
171 self.assertEqual(res[len(s)-2:-1:-1], tmpl[::-1])
172 self.assertEqual(res[len(s)-2:5:-7], tmpl[:5:-7])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_slicing.py 168 tmpl = range(ord("a"), ord("z")+1)
169 self.assertEqual(res[:len(s)-1], tmpl)
170 self.assertEqual(res[:len(s)-1:], tmpl)
171 self.assertEqual(res[len(s)-2:-1:-1], tmpl[::-1])
172 self.assertEqual(res[len(s)-2:5:-7], tmpl[:5:-7])
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/
surface.c 158 struct pipe_video_buffer tmpl; local
176 memset(&tmpl, 0, sizeof(tmpl));
177 tmpl.buffer_format = pipe->screen->get_video_param
183 tmpl.chroma_format = context_priv->decoder->chroma_format;
184 tmpl.width = context_priv->decoder->width;
185 tmpl.height = context_priv->decoder->height;
186 tmpl.interlaced = pipe->screen->get_video_param
193 surface_priv->video_buffer = pipe->create_video_buffer(pipe, &tmpl);
  /external/mesa3d/src/gallium/state_trackers/xvmc/
surface.c 158 struct pipe_video_buffer tmpl; local
176 memset(&tmpl, 0, sizeof(tmpl));
177 tmpl.buffer_format = pipe->screen->get_video_param
183 tmpl.chroma_format = context_priv->decoder->chroma_format;
184 tmpl.width = context_priv->decoder->width;
185 tmpl.height = context_priv->decoder->height;
186 tmpl.interlaced = pipe->screen->get_video_param
193 surface_priv->video_buffer = pipe->create_video_buffer(pipe, &tmpl);
  /external/chromium_org/third_party/WebKit/Source/core/
generate_test_support_idls.target.darwin-arm.mk 34 $(gyp_shared_intermediate_dir)/blink/InternalRuntimeFlags.idl: $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/in_file.py $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/in_generator.py $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/license.py $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/name_macros.py $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/template_expander.py $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/templates/macros.tmpl $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/make_internal_runtime_flags.py $(LOCAL_PATH)/third_party/WebKit/Source/core/page/RuntimeEnabledFeatures.in $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/templates/InternalRuntimeFlags.h.tmpl $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/templates/InternalRuntimeFlags.idl.tmpl $(GYP_TARGET_DEPENDENCIES)
generate_test_support_idls.target.darwin-mips.mk 34 $(gyp_shared_intermediate_dir)/blink/InternalRuntimeFlags.idl: $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/in_file.py $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/in_generator.py $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/license.py $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/name_macros.py $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/template_expander.py $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/templates/macros.tmpl $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/make_internal_runtime_flags.py $(LOCAL_PATH)/third_party/WebKit/Source/core/page/RuntimeEnabledFeatures.in $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/templates/InternalRuntimeFlags.h.tmpl $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/templates/InternalRuntimeFlags.idl.tmpl $(GYP_TARGET_DEPENDENCIES)
generate_test_support_idls.target.darwin-x86.mk 34 $(gyp_shared_intermediate_dir)/blink/InternalRuntimeFlags.idl: $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/in_file.py $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/in_generator.py $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/license.py $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/name_macros.py $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/template_expander.py $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/templates/macros.tmpl $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/make_internal_runtime_flags.py $(LOCAL_PATH)/third_party/WebKit/Source/core/page/RuntimeEnabledFeatures.in $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/templates/InternalRuntimeFlags.h.tmpl $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/templates/InternalRuntimeFlags.idl.tmpl $(GYP_TARGET_DEPENDENCIES)
generate_test_support_idls.target.linux-arm.mk 34 $(gyp_shared_intermediate_dir)/blink/InternalRuntimeFlags.idl: $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/in_file.py $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/in_generator.py $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/license.py $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/name_macros.py $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/template_expander.py $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/templates/macros.tmpl $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/make_internal_runtime_flags.py $(LOCAL_PATH)/third_party/WebKit/Source/core/page/RuntimeEnabledFeatures.in $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/templates/InternalRuntimeFlags.h.tmpl $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/templates/InternalRuntimeFlags.idl.tmpl $(GYP_TARGET_DEPENDENCIES)
generate_test_support_idls.target.linux-mips.mk 34 $(gyp_shared_intermediate_dir)/blink/InternalRuntimeFlags.idl: $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/in_file.py $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/in_generator.py $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/license.py $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/name_macros.py $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/template_expander.py $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/templates/macros.tmpl $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/make_internal_runtime_flags.py $(LOCAL_PATH)/third_party/WebKit/Source/core/page/RuntimeEnabledFeatures.in $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/templates/InternalRuntimeFlags.h.tmpl $(LOCAL_PATH)/third_party/WebKit/Source/core/scripts/templates/InternalRuntimeFlags.idl.tmpl $(GYP_TARGET_DEPENDENCIES)

Completed in 582 milliseconds

1 2 3