Home
last modified time | relevance | path

Searched refs:currentGoomSL (Results 1 – 2 of 2) sorted by relevance

/third_party/gstreamer/gstplugins_good/gst/goom/
Dgoomsl_yacc.y19 extern GoomSL *currentGoomSL;
64 currentGoomSL->instr = gsl_instr_init(currentGoomSL, "label", INSTR_LABEL, 1, line_number); in GSL_PUT_LABEL()
65 gsl_instr_add_param(currentGoomSL->instr, name, TYPE_LABEL); in GSL_PUT_LABEL()
72 currentGoomSL->instr = gsl_instr_init(currentGoomSL, "jump", INSTR_JUMP, 1, line_number); in GSL_PUT_JUMP()
73 gsl_instr_add_param(currentGoomSL->instr, name, TYPE_LABEL); in GSL_PUT_JUMP()
81 currentGoomSL->instr = gsl_instr_init(currentGoomSL, iname, instr_id, 1, line_number); in GSL_PUT_JXXX()
82 gsl_instr_add_param(currentGoomSL->instr, name, TYPE_LABEL); in GSL_PUT_JXXX()
119 GSL_Struct *substruct = currentGoomSL->gsl_struct[s->fields[i]->type]; in gsl_prepare_struct()
196 HashValue *ret = goom_hash_get(currentGoomSL->structIDS, name); in gsl_get_struct_id()
211 int id = currentGoomSL->nbStructID++; in gsl_add_struct()
[all …]
Dgoomsl_lex.l12 GoomSL *currentGoomSL; variable
27 <LINE_COMMENT,C_COMMENT,INITIAL>^[ \t]*\n { ++currentGoomSL->num_lines; /* Ignore empty l…
28 <LINE_COMMENT,C_COMMENT,INITIAL>^[ \t]*"//"[^\n]*\n { ++currentGoomSL->num_lines; /* Ignore empty l…
30 <LINE_COMMENT>\n { ++currentGoomSL->num_lines; yylval.charValue=*yytext; BEGIN INITIAL; return '…
31 <INITIAL>\n { ++currentGoomSL->num_lines; yylval.charValue=*yytext; return '\n'; }
34 <C_COMMENT>\n { ++currentGoomSL->num_lines; }
37 <INITIAL>"#RST_LINE#" { currentGoomSL->num_lines = 0; }
38 <INITIAL>"#FILE ".*"#" { currentGoomSL->num_lines = 0; /* printf("%s\n", yytext); */ }
51 tmp = gsl_malloc(currentGoomSL, string_size+1);
52 strcpy((char*)currentGoomSL->ptrArray[tmp],string);