Home | History | Annotate | Download | only in rs

Lines Matching defs:vt

24 void printVarType(FILE *f, const VarType *vt)
27 if (vt->isConst) {
31 switch(vt->type) {
36 fprintf(f, "int%i_t", vt->bits);
39 fprintf(f, "uint%i_t", vt->bits);
42 if (vt->bits == 32)
48 fprintf(f, "%s", vt->typeName);
52 if(vt->ptrLevel) {
54 for(ct=0; ct < vt->ptrLevel; ct++) {
59 if(vt->name[0]) {
60 fprintf(f, " %s", vt->name);
156 const VarType *vt = &api->params[ct2];
157 fprintf(f, ", %s", vt->name);
167 const VarType *vt = &api->params[ct2];
168 needFlush += vt->ptrLevel;
169 fprintf(f, " cmd->%s = %s;\n", vt->name, vt->name);
223 const VarType *vt = &api->params[ct2];
224 fprintf(f, ",\n cmd->%s", vt->name);