Lines Matching refs:n
545 int n; in tokenise()
546 for (n = 0; n < nr_tokens; n++) in tokenise()
547 debug("Token %3u: '%s'\n", n, token_list[n].content); in tokenise()
749 unsigned nr, t, n; in build_type_list() local
752 for (n = 0; n < nr_tokens - 1; n++) in build_type_list()
753 if (token_list[n + 0].token_type == TOKEN_TYPE_NAME && in build_type_list()
754 token_list[n + 1].token_type == TOKEN_ASSIGNMENT) in build_type_list()
776 for (n = 0; n < nr_tokens - 1; n++) { in build_type_list()
777 if (token_list[n + 0].token_type == TOKEN_TYPE_NAME && in build_type_list()
778 token_list[n + 1].token_type == TOKEN_ASSIGNMENT) { in build_type_list()
779 types[t].name = &token_list[n]; in build_type_list()
784 types[t].name = &token_list[n + 1]; in build_type_list()
791 for (n = 0; n < nr_types; n++) { in build_type_list()
792 struct type *type = type_index[n]; in build_type_list()