Searched defs:sh (Results 101 - 125 of 154) sorted by last modified time

1234567

/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_program.c1117 struct gl_shader *sh; local
1121 sh = (i != 0) ? NULL : shProg[j]->Shaders[i];
1124 sh = (i != 1) ? NULL : shProg[j]->Shaders[i];
1127 sh = (i != 2) ? NULL : shProg[j]->Shaders[i];
1131 sh = NULL;
1135 if (sh != NULL) {
1137 printf("%s\n", sh->Source);
/external/chromium_org/third_party/opus/src/celt/
H A Dpitch.c443 int sh, t; local
445 sh = celt_ilog2(x2y2)>>1;
446 t = VSHR32(x2y2, 2*(sh-7));
447 g = g0 = VSHR32(MULT16_32_Q15(celt_rsqrt_norm(t), xy),sh+1);
479 int sh, t; local
481 sh = celt_ilog2(x2y2)>>1;
482 t = VSHR32(x2y2, 2*(sh-7));
483 g1 = VSHR32(MULT16_32_Q15(celt_rsqrt_norm(t), xy),sh+1);
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
H A Dbuiltin_function.cpp43 gl_shader *sh = _mesa_new_shader(NULL, 0, target); local
45 new(sh) _mesa_glsl_parse_state(&fakeCtx, target, sh);
55 sh->ir = new(sh) exec_list;
56 sh->symbols = st->symbols;
59 _mesa_glsl_read_ir(st, sh->ir, protos, true);
66 _mesa_glsl_read_ir(st, sh->ir, functions[i], false);
71 ralloc_free(sh);
76 reparent_ir(sh
14450 gl_shader *sh = builtin_profiles[profile_index]; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/rbug/
H A Drbug_context.c65 unsigned sh; local
74 for (sh = 0; sh < PIPE_SHADER_TYPES; sh++) {
75 if (rb_pipe->draw_rule.shader[sh] &&
76 rb_pipe->draw_rule.shader[sh] == rb_pipe->curr.shader[sh])
88 for (sh = 0; sh < Elements(rb_pipe->curr.num_views); sh
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_context.c92 uint i, sh; local
125 for (sh = 0; sh < Elements(softpipe->tex_cache); sh++) {
127 sp_destroy_tex_tile_cache(softpipe->tex_cache[sh][i]);
128 pipe_sampler_view_reference(&softpipe->sampler_views[sh][i], NULL);
132 for (sh = 0; sh < Elements(softpipe->constants); sh++) {
134 if (softpipe->constants[sh][
164 unsigned i, sh; local
217 uint i, sh; local
[all...]
H A Dsp_flush.c55 unsigned sh; local
57 for (sh = 0; sh < Elements(softpipe->tex_cache); sh++) {
58 for (i = 0; i < softpipe->num_sampler_views[sh]; i++) {
59 sp_flush_tex_tile_cache(softpipe->tex_cache[sh][i]);
H A Dsp_state_derived.c210 unsigned i, sh; local
214 for (sh = 0; sh < Elements(softpipe->tex_cache); sh++) {
216 struct softpipe_tex_tile_cache *tc = softpipe->tex_cache[sh][i];
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dmatrix.h50 int sh = 23 - exp; local
65 if (sh <= 0)
66 return sign * (mant << -sh);
71 mant += (1 << sh) - 1;
75 return sign * (mant >> sh);
H A Drenderer.c619 * sampled from within the rectangle given by (sx, sy, sw, sh).
625 VGint sx, VGint sy, VGint sw, VGint sh)
631 renderer_quad_texcoord(renderer, sx, sy, sx + sw, sy + sh,
692 * sampled from within the rectangle given by (sx, sy, sw, sh).
698 VGint sx, VGint sy, VGint sw, VGint sh)
704 renderer_quad_texcoord(renderer, sx, sy, sx + sw, sy + sh,
931 VGint sx, VGint sy, VGint sw, VGint sh)
937 renderer_quad_texcoord(renderer, sx, sy, sx + sw, sy + sh,
623 renderer_copy(struct renderer *renderer, VGint x, VGint y, VGint w, VGint h, VGint sx, VGint sy, VGint sw, VGint sh) argument
696 renderer_drawtex(struct renderer *renderer, VGint x, VGint y, VGint w, VGint h, VGint sx, VGint sy, VGint sw, VGint sh) argument
929 renderer_filter(struct renderer *renderer, VGint x, VGint y, VGint w, VGint h, VGint sx, VGint sy, VGint sw, VGint sh) argument
H A Dshaders_cache.c256 int idx = 0, sh; local
260 sh = SHADERS_GET_PAINT_SHADER(id);
261 switch (sh << SHADERS_PAINT_SHIFT) {
267 shaders[idx] = &shaders_paint_asm[(sh >> SHADERS_PAINT_SHIFT) - 1];
268 assert(shaders[idx]->id == sh);
276 sh = SHADERS_GET_IMAGE_SHADER(id);
277 switch (sh) {
281 shaders[idx] = &shaders_image_asm[(sh >> SHADERS_IMAGE_SHIFT) - 1];
282 assert(shaders[idx]->id == sh);
290 assert(idx == ((!sh || s
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/
H A Dglcpp.c35 struct gl_shader *sh)
38 *ptr = sh;
34 _mesa_reference_shader(struct gl_context *ctx, struct gl_shader **ptr, struct gl_shader *sh) argument
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dlinker.cpp203 link_invalidate_variable_locations(gl_shader *sh, enum ir_variable_mode mode, argument
206 foreach_list(node, sh->ir) {
598 struct gl_shader *sh = prog->_LinkedShaders[i]; local
605 if (sh == NULL)
608 for (unsigned int j = 0; j < sh->NumUniformBlocks; j++) {
612 &sh->UniformBlocks[j]);
616 sh->UniformBlocks[j].Name);
752 populate_symbol_table(gl_shader *sh) argument
754 sh->symbols = new(sh) glsl_symbol_tabl
913 get_main_function_signature(gl_shader *sh) argument
980 struct gl_shader *sh = shader_list[i]; local
1279 gl_shader *const sh = prog->_LinkedShaders[target_index]; local
1483 demote_shader_inputs_and_outputs(gl_shader *sh, enum ir_variable_mode mode) argument
2335 struct gl_shader *sh = prog->_LinkedShaders[i]; local
2470 gl_shader *const sh = local
2485 gl_shader *const sh = local
2534 struct gl_shader *sh = prog->_LinkedShaders[MESA_SHADER_FRAGMENT]; local
2643 gl_shader *const sh = prog->_LinkedShaders[MESA_SHADER_GEOMETRY]; local
2657 gl_shader *const sh = prog->_LinkedShaders[MESA_SHADER_FRAGMENT]; local
[all...]
H A Dstandalone_scaffolding.cpp38 struct gl_shader *sh)
41 *ptr = sh;
37 _mesa_reference_shader(struct gl_context *ctx, struct gl_shader **ptr, struct gl_shader *sh) argument
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/chromium_org/third_party/angle/include/GLSLANG/
H A DShaderLang.h35 namespace sh namespace
313 sh::GLenum type,
437 sh::GLenum* type,
467 COMPILER_EXPORT const std::vector<sh::Uniform> *ShGetUniforms(const ShHandle handle);
468 COMPILER_EXPORT const std::vector<sh::Varying> *ShGetVaryings(const ShHandle handle);
469 COMPILER_EXPORT const std::vector<sh::Attribute> *ShGetAttributes(const ShHandle handle);
470 COMPILER_EXPORT const std::vector<sh::Attribute> *ShGetOutputVariables(const ShHandle handle);
471 COMPILER_EXPORT const std::vector<sh::InterfaceBlock> *ShGetInterfaceBlocks(const ShHandle handle);
475 sh::GLenum type;
H A DShaderVars.h17 // Assume ShaderLang.h is included before ShaderVars.h, for sh::GLenum
20 namespace sh namespace
/external/chromium_org/third_party/angle/src/common/
H A Dblocklayout.cpp14 namespace sh namespace
H A Dblocklayout.h19 namespace sh namespace
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DDetectDiscontinuity.cpp15 namespace sh namespace
H A DDetectDiscontinuity.h16 namespace sh namespace
H A DFlagStd140Structs.cpp9 namespace sh namespace
H A DFlagStd140Structs.h12 namespace sh namespace
H A DNodeSearch.h14 namespace sh namespace
H A DOutputHLSL.cpp30 namespace sh namespace
1497 sh::SearchSymbol searchSymbol(symbolNode->getSymbol());
H A DOutputHLSL.h19 namespace sh namespace

Completed in 256 milliseconds

1234567