Lines Matching refs:t_dt
1188 tp->t_dt = DD_NONE; in type_Construct()
1210 switch (tp->t_dt) { in type_Destroy()
1241 assert(tp->t_dt == DD_NONE); in type_SetPtr()
1243 tp->t_dt = DD_PTR; in type_SetPtr()
1258 assert(tp->t_dt == DD_NONE); in type_SetAry()
1261 tp->t_dt = DD_ARY; in type_SetAry()
1281 assert(tp->t_dt == DD_NONE); in type_SetFun()
1283 tp->t_dt = DD_FUN; in type_SetFun()
1326 switch (tp->t_dt) { in type_PrintType()
1401 nt = (nextp = tp->t_next)? nextp->t_dt : DD_NONE; in type_Verify()
1403 if ((p = dttbl[tp->t_dt][nt]) != NULL) in type_Verify()
1432 return (tp && (tp->t_dt == DD_ARY)); in type_IsArray()
1437 assert(tp->t_dt == DD_ARY); in type_GetArraySize()
1444 return (tp && (tp->t_dt == DD_PTR)); in type_IsPtrTo()
1449 assert(tp->t_dt == DD_PTR); in type_GetPtrToTypeQual()
1456 return (tp && (tp->t_dt == DD_FUN)); in type_IsFunction()
1461 assert(tp->t_dt == DD_FUN); in type_GetArgLength()
1468 while (tp && tp->t_dt == DD_PTR) in type_IsVarargs()
1471 assert(tp->t_dt == DD_FUN); in type_IsVarargs()
1478 assert(tp->t_dt == DD_FUN); in type_GetArg()
1496 if (! (tp && (tp->t_dt == DD_PTR))) in type_IsPtrFun()
1501 while (tp && (tp->t_dt == DD_PTR)) in type_IsPtrFun()
1504 return (tp && (tp->t_dt == DD_FUN)); in type_IsPtrFun()
1875 switch (tp->t_dt) { in decl_ToString()
1878 ((tp->t_next->t_dt == DD_ARY) || in decl_ToString()
1879 (tp->t_next->t_dt == DD_FUN))) { in decl_ToString()
2107 if (tp->t_dt == DD_PTR || tp->t_dt == DD_ARY) { in decl_PrintTraceInfo()
2154 if (tp->t_dt == DD_PTR) { in decl_GetTraceInfo()
2165 while (tp->t_dt != DD_FUN) in decl_GetTraceInfo()
2186 switch (tp->t_dt) { in decl_ToFormal()