Searched refs:first_square_bracket (Results 1 - 3 of 3) sorted by relevance

/xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
H A Dlower_xfb_varying.cpp120 const char *first_square_bracket = strchr(name, '['); local in function:get_field_name
123 if (!first_square_bracket && !first_dot)
125 else if ((!first_square_bracket ||
126 (first_dot && first_dot < first_square_bracket)))
129 name_size = first_square_bracket - name;
H A Dlink_uniforms.cpp51 const char *first_square_bracket = strchr(name, '['); local in function:get_top_level_name
66 if (!first_square_bracket && !first_dot)
68 else if ((!first_square_bracket ||
69 (first_dot && first_dot < first_square_bracket)))
72 name_size = first_square_bracket - name;
/xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
H A Dlinker.cpp3744 const char *first_square_bracket = strchr(name, '['); local in function:should_add_buffer_variable
3747 if (!first_square_bracket) {
3750 } else if (struct_first_dot && struct_first_dot < first_square_bracket) {
3756 if (strncmp(first_square_bracket, "[0]", 3) == 0)
4210 const char *first_square_bracket = strchr(name, '['); local in function:get_top_level_name
4225 if (!first_square_bracket && !first_dot)
4227 else if ((!first_square_bracket ||
4228 (first_dot && first_dot < first_square_bracket)))
4231 name_size = first_square_bracket - name;

Completed in 15 milliseconds