Home | History | Annotate | Download | only in rs

Lines Matching refs:currType

16    VarType *currType = 0;
24 VarType *baseType = currType;
27 currType = &apis[apiCount].params[apis[apiCount].paramCount];
28 currType->type = 4;
29 currType->ptrLevel = curPtrLevel;
30 if (currType->ptrLevel > 0) {
31 currType->isConst = 1;
33 sprintf(currType->typeName, "%s", "size_t");
36 sprintf(currType->name, "%s_length", baseType->name);
39 sprintf(currType->name, "%s_length_length", baseType->name);
88 currType = &apis[apiCount].ret;
94 currType = &apis[apiCount].params[apis[apiCount].paramCount];
101 currType->isConst = 1;
105 currType->type = 1;
106 currType->bits = 8;
111 currType->type = 1;
112 currType->bits = 16;
117 currType->type = 1;
118 currType->bits = 32;
123 currType->type = 1;
124 currType->bits = 64;
129 currType->type = 2;
130 currType->bits = 8;
135 currType->type = 2;
136 currType->bits = 16;
141 currType->type = 2;
142 currType->bits = 32;
147 currType->type = 2;
148 currType->bits = 64;
153 currType->type = 3;
154 currType->bits = 32;
159 currType->type = 3;
160 currType->bits = 64;
165 currType->type = 4;
166 currType->bits = 32;
167 memcpy(currType->typeName, yytext, yyleng);
172 currType->ptrLevel ++;
176 memcpy(currType->name, yytext, yyleng);
182 currType->ptrLevel ++;