Searched defs:templ (Results 1 - 25 of 236) sorted by relevance

12345678910

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
H A Dr300_resource.c32 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);
31 r300_resource_create(struct pipe_screen *screen, const struct pipe_resource *templ) argument
/external/clang/test/CXX/expr/expr.unary/expr.new/
H A Dp17-crash.cpp3 // 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/mesa3d/src/gallium/drivers/r300/
H A Dr300_resource.c32 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);
31 r300_resource_create(struct pipe_screen *screen, const struct pipe_resource *templ) argument
/external/chromium_org/mojo/apps/js/bindings/
H A Dthreading.cc29 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;
H A Dsupport.cc53 v8::Local<v8::ObjectTemplate> templ = data->GetObjectTemplate( local
56 if (templ.IsEmpty()) {
59 templ = gin::ObjectTemplateBuilder(isolate)
64 data->SetObjectTemplate(&g_wrapper_info, templ);
67 return templ;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_state_gs.c43 const struct pipe_shader_state *templ)
54 tgsi_dump(templ->tokens, 0);
58 state->shader.tokens = tgsi_dup_tokens(templ->tokens);
62 state->draw_data = draw_create_geometry_shader(llvmpipe->draw, templ);
42 llvmpipe_create_gs_state(struct pipe_context *pipe, const struct pipe_shader_state *templ) argument
H A Dlp_state_vs.c43 const struct pipe_shader_state *templ)
54 state->shader.tokens = tgsi_dup_tokens(templ->tokens);
58 state->draw_data = draw_create_vertex_shader(llvmpipe->draw, templ);
64 tgsi_dump(templ->tokens, 0);
42 llvmpipe_create_vs_state(struct pipe_context *pipe, const struct pipe_shader_state *templ) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dr600_resource.c27 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);
26 r600_resource_create(struct pipe_screen *screen, const struct pipe_resource *templ) argument
41 r600_resource_from_handle(struct pipe_screen * screen, const struct pipe_resource *templ, struct winsys_handle *whandle) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
H A Dr600_resource.c27 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);
26 r600_resource_create(struct pipe_screen *screen, const struct pipe_resource *templ) argument
36 r600_resource_from_handle(struct pipe_screen * screen, const struct pipe_resource *templ, struct winsys_handle *whandle) argument
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_state_gs.c43 const struct pipe_shader_state *templ)
54 tgsi_dump(templ->tokens, 0);
58 state->shader.tokens = tgsi_dup_tokens(templ->tokens);
62 state->draw_data = draw_create_geometry_shader(llvmpipe->draw, templ);
42 llvmpipe_create_gs_state(struct pipe_context *pipe, const struct pipe_shader_state *templ) argument
H A Dlp_state_vs.c43 const struct pipe_shader_state *templ)
54 state->shader.tokens = tgsi_dup_tokens(templ->tokens);
58 state->draw_data = draw_create_vertex_shader(llvmpipe->draw, templ);
64 tgsi_dump(templ->tokens, 0);
42 llvmpipe_create_vs_state(struct pipe_context *pipe, const struct pipe_shader_state *templ) argument
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_resource.c27 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);
26 r600_resource_create(struct pipe_screen *screen, const struct pipe_resource *templ) argument
41 r600_resource_from_handle(struct pipe_screen * screen, const struct pipe_resource *templ, struct winsys_handle *whandle) argument
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dr600_resource.c27 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);
26 r600_resource_create(struct pipe_screen *screen, const struct pipe_resource *templ) argument
36 r600_resource_from_handle(struct pipe_screen * screen, const struct pipe_resource *templ, struct winsys_handle *whandle) argument
/external/chromium_org/content/renderer/
H A Dgin_browsertest.cc43 v8::Handle<v8::ObjectTemplate> templ = v8::ObjectTemplate::New(isolate); local
44 templ->SetInternalFieldCount(gin::kNumberOfInternalFields);
45 data->SetObjectTemplate(&TestGinObject::kWrapperInfo, templ);
/external/chromium_org/gin/modules/
H A Dconsole.cc39 v8::Local<ObjectTemplate> templ = data->GetObjectTemplate(&g_wrapper_info); local
40 if (templ.IsEmpty()) {
41 templ = ObjectTemplate::New();
42 templ->Set(StringToSymbol(isolate, "log"),
44 data->SetObjectTemplate(&g_wrapper_info, templ);
46 return templ;
H A Dmodule_runner_delegate.cc20 ModuleTemplateGetter templ) {
21 builtin_modules_[id] = templ;
33 v8::Handle<v8::ObjectTemplate> templ = v8::ObjectTemplate::New(); local
34 ModuleRegistry::RegisterGlobals(runner->isolate(), templ);
35 return templ;
19 AddBuiltinModule(const std::string& id, ModuleTemplateGetter templ) argument
/external/chromium_org/gin/
H A Dper_isolate_data.cc31 Local<ObjectTemplate> templ) {
32 object_templates_[info] = Eternal<ObjectTemplate>(isolate_, templ);
36 Local<FunctionTemplate> templ) {
37 function_templates_[info] = Eternal<FunctionTemplate>(isolate_, templ);
30 SetObjectTemplate(WrapperInfo* info, Local<ObjectTemplate> templ) argument
35 SetFunctionTemplate(WrapperInfo* info, Local<FunctionTemplate> templ) argument
/external/chromium_org/gin/test/
H A Dgtest.cc48 v8::Local<v8::ObjectTemplate> templ = local
50 if (templ.IsEmpty()) {
51 templ = ObjectTemplateBuilder(isolate)
57 data->SetObjectTemplate(&g_wrapper_info, templ);
59 return templ;
/external/chromium_org/mojo/apps/js/bindings/gl/
H A Dmodule.cc36 v8::Local<v8::ObjectTemplate> templ = data->GetObjectTemplate(&kWrapperInfo); local
38 if (templ.IsEmpty()) {
39 templ = gin::ObjectTemplateBuilder(isolate)
42 templ->SetInternalFieldCount(gin::kNumberOfInternalFields);
43 data->SetObjectTemplate(&kWrapperInfo, templ);
49 return templ;
H A Dopaque.cc22 v8::Local<v8::ObjectTemplate> templ = data->GetObjectTemplate(&kWrapperInfo); local
23 if (templ.IsEmpty()) {
24 templ = gin::ObjectTemplateBuilder(isolate)
26 templ->SetInternalFieldCount(gin::kNumberOfInternalFields);
27 data->SetObjectTemplate(&kWrapperInfo, templ);
29 return templ;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
H A Dnvc0_resource.c9 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);
8 nvc0_resource_create(struct pipe_screen *screen, const struct pipe_resource *templ) argument
20 nvc0_resource_from_handle(struct pipe_screen * screen, const struct pipe_resource *templ, struct winsys_handle *whandle) argument
35 nvc0_surface_create(struct pipe_context *pipe, struct pipe_resource *pres, const struct pipe_surface *templ) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_pipe_blend.c79 const struct pipe_blend_state *templ)
92 if (templ->logicop_enable) {
93 switch (templ->logicop_func) {
179 blend->rt[i].blend_enable = templ->rt[0].blend_enable;
181 if (templ->rt[0].blend_enable) {
182 blend->rt[i].srcblend = svga_translate_blend_factor(templ->rt[0].rgb_src_factor);
183 blend->rt[i].dstblend = svga_translate_blend_factor(templ->rt[0].rgb_dst_factor);
184 blend->rt[i].blendeq = svga_translate_blend_func(templ->rt[0].rgb_func);
185 blend->rt[i].srcblend_alpha = svga_translate_blend_factor(templ->rt[0].alpha_src_factor);
186 blend->rt[i].dstblend_alpha = svga_translate_blend_factor(templ
78 svga_create_blend_state(struct pipe_context *pipe, const struct pipe_blend_state *templ) argument
[all...]
H A Dsvga_pipe_depthstencil.c74 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
73 svga_create_depth_stencil_state(struct pipe_context *pipe, const struct pipe_depth_stencil_alpha_state *templ) argument
[all...]
H A Dsvga_pipe_fs.c46 const struct pipe_shader_state *templ)
55 fs->base.tokens = tgsi_dup_tokens(templ->tokens);
67 fs->draw_shader = draw_create_fragment_shader(svga->swtnl.draw, templ);
45 svga_create_fs_state(struct pipe_context *pipe, const struct pipe_shader_state *templ) argument
H A Dsvga_pipe_vs.c100 const struct pipe_shader_state *templ)
110 templ->tokens));
121 struct pipe_shader_state tmp2 = *templ;
99 svga_create_vs_state(struct pipe_context *pipe, const struct pipe_shader_state *templ) argument

Completed in 561 milliseconds

12345678910