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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/expr/expr.unary/expr.new/
p17-crash.cpp 3 // this used to crash due to templ<int>'s dtor not being marked as used by the
9 template < typename T > class templ { class
13 new templ<int>[1][1];
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_pipe_rasterizer.c 65 const struct pipe_rasterizer_state *templ)
71 rast->templ = *templ;
85 rast->shademode = svga_translate_flatshade( templ->flatshade );
86 rast->cullmode = svga_translate_cullmode( templ->cull_face,
87 templ->front_ccw );
88 rast->scissortestenable = templ->scissor;
89 rast->multisampleantialias = templ->multisample;
90 rast->antialiasedlineenable = templ->line_smooth;
91 rast->lastpixel = templ->line_last_pixel
    [all...]
svga_pipe_depthstencil.c 74 const struct pipe_depth_stencil_alpha_state *templ)
82 ds->stencil[0].enabled = templ->stencil[0].enabled;
84 ds->stencil[0].func = svga_translate_compare_func(templ->stencil[0].func);
85 ds->stencil[0].fail = svga_translate_stencil_op(templ->stencil[0].fail_op);
86 ds->stencil[0].zfail = svga_translate_stencil_op(templ->stencil[0].zfail_op);
87 ds->stencil[0].pass = svga_translate_stencil_op(templ->stencil[0].zpass_op);
92 ds->stencil_mask = templ->stencil[0].valuemask & 0xff;
93 ds->stencil_writemask = templ->stencil[0].writemask & 0xff;
97 ds->stencil[1].enabled = templ->stencil[1].enabled;
98 if (templ->stencil[1].enabled)
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_pipe_rasterizer.c 65 const struct pipe_rasterizer_state *templ)
71 rast->templ = *templ;
85 rast->shademode = svga_translate_flatshade( templ->flatshade );
86 rast->cullmode = svga_translate_cullmode( templ->cull_face,
87 templ->front_ccw );
88 rast->scissortestenable = templ->scissor;
89 rast->multisampleantialias = templ->multisample;
90 rast->antialiasedlineenable = templ->line_smooth;
91 rast->lastpixel = templ->line_last_pixel
    [all...]
svga_pipe_depthstencil.c 74 const struct pipe_depth_stencil_alpha_state *templ)
82 ds->stencil[0].enabled = templ->stencil[0].enabled;
84 ds->stencil[0].func = svga_translate_compare_func(templ->stencil[0].func);
85 ds->stencil[0].fail = svga_translate_stencil_op(templ->stencil[0].fail_op);
86 ds->stencil[0].zfail = svga_translate_stencil_op(templ->stencil[0].zfail_op);
87 ds->stencil[0].pass = svga_translate_stencil_op(templ->stencil[0].zpass_op);
92 ds->stencil_mask = templ->stencil[0].valuemask & 0xff;
93 ds->stencil_writemask = templ->stencil[0].writemask & 0xff;
97 ds->stencil[1].enabled = templ->stencil[1].enabled;
98 if (templ->stencil[1].enabled)
    [all...]
  /external/chromium_org/gin/test/
gc.cc 28 v8::Local<v8::ObjectTemplate> templ = local
30 if (templ.IsEmpty()) {
31 templ = ObjectTemplateBuilder(isolate)
36 data->SetObjectTemplate(&g_wrapper_info, templ);
38 return templ->NewInstance();
  /external/chromium_org/mojo/apps/js/bindings/
monotonic_clock.cc 30 v8::Local<v8::ObjectTemplate> templ = local
32 if (templ.IsEmpty()) {
33 templ = gin::ObjectTemplateBuilder(isolate)
36 data->SetObjectTemplate(&g_wrapper_info, templ);
38 return templ->NewInstance();
threading.cc 29 v8::Local<v8::ObjectTemplate> templ = data->GetObjectTemplate( local
32 if (templ.IsEmpty()) {
33 templ = gin::ObjectTemplateBuilder(isolate)
37 data->SetObjectTemplate(&g_wrapper_info, templ);
40 return templ->NewInstance();
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
r600_resource.c 27 const struct pipe_resource *templ)
29 if (templ->target == PIPE_BUFFER) {
30 return si_buffer_create(screen, templ);
32 return si_texture_create(screen, templ);
37 const struct pipe_resource *templ,
40 if (templ->target == PIPE_BUFFER) {
43 return si_texture_from_handle(screen, templ, whandle);
  /external/mesa3d/src/gallium/drivers/radeonsi/
r600_resource.c 27 const struct pipe_resource *templ)
29 if (templ->target == PIPE_BUFFER) {
30 return si_buffer_create(screen, templ);
32 return si_texture_create(screen, templ);
37 const struct pipe_resource *templ,
40 if (templ->target == PIPE_BUFFER) {
43 return si_texture_from_handle(screen, templ, whandle);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
nv50_resource.c 12 const struct pipe_resource *templ)
14 switch (templ->target) {
16 return nouveau_buffer_create(screen, templ);
18 return nv50_miptree_create(screen, templ);
24 const struct pipe_resource *templ,
27 if (templ->target == PIPE_BUFFER)
30 return nv50_miptree_from_handle(screen, templ, whandle);
36 const struct pipe_surface *templ)
45 sf->base.format = templ->format;
46 sf->base.usage = templ->usage
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_suppressions.cc 26 bool TemplateMatch(char *templ, const char *str) {
30 if (templ && templ[0] == '^') {
32 templ++;
35 while (templ && templ[0]) {
36 if (templ[0] == '*') {
37 templ++;
42 if (templ[0] == '$')
46 char *tpos = (char*)internal_strchr(templ, '*');
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_resource.c 12 const struct pipe_resource *templ)
14 switch (templ->target) {
16 return nouveau_buffer_create(screen, templ);
18 return nv50_miptree_create(screen, templ);
24 const struct pipe_resource *templ,
27 if (templ->target == PIPE_BUFFER)
30 return nv50_miptree_from_handle(screen, templ, whandle);
36 const struct pipe_surface *templ)
45 sf->base.format = templ->format;
46 sf->base.usage = templ->usage
    [all...]
  /external/chromium_org/third_party/boringssl/src/tool/
args.cc 31 const struct argument *templ = nullptr; local
34 templ = &templates[j];
39 if (templ == nullptr) {
58 const struct argument *templ = &templates[j]; local
59 if (templ->required && out_args->find(templ->name) == out_args->end()) {
60 fprintf(stderr, "Missing value for required argument: %s\n", templ->name);
70 const struct argument *templ = &templates[i]; local
71 fprintf(stderr, "%s\t%s\n", templ->name, templ->description)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
nvc0_resource.c 9 const struct pipe_resource *templ)
11 switch (templ->target) {
13 return nouveau_buffer_create(screen, templ);
15 return nvc0_miptree_create(screen, templ);
21 const struct pipe_resource *templ,
24 if (templ->target == PIPE_BUFFER) {
28 templ, whandle);
37 const struct pipe_surface *templ)
40 return nv50_surface_from_buffer(pipe, pres, templ);
41 return nvc0_miptree_surface_new(pipe, pres, templ);
    [all...]
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_resource.c 9 const struct pipe_resource *templ)
11 switch (templ->target) {
13 return nouveau_buffer_create(screen, templ);
15 return nvc0_miptree_create(screen, templ);
21 const struct pipe_resource *templ,
24 if (templ->target == PIPE_BUFFER) {
28 templ, whandle);
37 const struct pipe_surface *templ)
40 return nv50_surface_from_buffer(pipe, pres, templ);
41 return nvc0_miptree_surface_new(pipe, pres, templ);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r600_resource.c 27 const struct pipe_resource *templ)
29 if (templ->target == PIPE_BUFFER) {
30 if (templ->bind & PIPE_BIND_GLOBAL) {
31 return r600_compute_global_buffer_create(screen, templ);
34 return r600_buffer_create(screen, templ, 4096);
37 return r600_texture_create(screen, templ);
42 const struct pipe_resource *templ,
45 if (templ->target == PIPE_BUFFER) {
48 return r600_texture_from_handle(screen, templ, whandle);
  /external/mesa3d/src/gallium/drivers/r600/
r600_resource.c 27 const struct pipe_resource *templ)
29 if (templ->target == PIPE_BUFFER) {
30 if (templ->bind & PIPE_BIND_GLOBAL) {
31 return r600_compute_global_buffer_create(screen, templ);
34 return r600_buffer_create(screen, templ, 4096);
37 return r600_texture_create(screen, templ);
42 const struct pipe_resource *templ,
45 if (templ->target == PIPE_BUFFER) {
48 return r600_texture_from_handle(screen, templ, whandle);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/common/
native_wayland_drm_bufmgr_helper.c 20 struct pipe_resource templ; local
39 memset(&templ, 0, sizeof(templ));
40 templ.target = PIPE_TEXTURE_2D;
41 templ.format = pf;
42 templ.bind = PIPE_BIND_RENDER_TARGET | PIPE_BIND_SAMPLER_VIEW;
43 templ.width0 = buffer->buffer.width;
44 templ.height0 = buffer->buffer.height;
45 templ.depth0 = 1;
46 templ.array_size = 1
    [all...]
  /external/mesa3d/src/gallium/state_trackers/egl/common/
native_wayland_drm_bufmgr_helper.c 20 struct pipe_resource templ; local
39 memset(&templ, 0, sizeof(templ));
40 templ.target = PIPE_TEXTURE_2D;
41 templ.format = pf;
42 templ.bind = PIPE_BIND_RENDER_TARGET | PIPE_BIND_SAMPLER_VIEW;
43 templ.width0 = buffer->buffer.width;
44 templ.height0 = buffer->buffer.height;
45 templ.depth0 = 1;
46 templ.array_size = 1
    [all...]
  /external/chromium_org/gin/modules/
console.cc 39 v8::Local<ObjectTemplate> templ = data->GetObjectTemplate(&g_wrapper_info); local
40 if (templ.IsEmpty()) {
41 templ = ObjectTemplateBuilder(isolate)
44 data->SetObjectTemplate(&g_wrapper_info, templ);
46 return templ->NewInstance();
  /external/chromium_org/mojo/apps/js/bindings/gl/
module.cc 36 v8::Local<v8::ObjectTemplate> templ = data->GetObjectTemplate(&kWrapperInfo); local
38 if (templ.IsEmpty()) {
39 templ = gin::ObjectTemplateBuilder(isolate)
42 data->SetObjectTemplate(&kWrapperInfo, templ);
45 return templ->NewInstance();
  /external/chromium_org/mojo/apps/js/
mojo_module.cc 29 v8::Local<v8::ObjectTemplate> templ = local
32 if (templ.IsEmpty()) {
33 templ = gin::ObjectTemplateBuilder(isolate)
40 data->SetObjectTemplate(&g_wrapper_info, templ);
43 return templ->NewInstance();
  /external/chromium_org/mojo/bindings/js/
support.cc 44 v8::Local<v8::ObjectTemplate> templ = data->GetObjectTemplate( local
47 if (templ.IsEmpty()) {
48 templ = gin::ObjectTemplateBuilder(isolate)
53 data->SetObjectTemplate(&g_wrapper_info, templ);
56 return templ->NewInstance();
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_resource.c 32 const struct pipe_resource *templ)
34 if (templ->target == PIPE_BUFFER)
35 return r300_buffer_create(screen, templ);
37 return r300_texture_create(screen, templ);

Completed in 6710 milliseconds

1 2 3 4 5 6 7 8 91011>>