reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/polly/lib/External/isl/isl_input.c
 1963 	tok = isl_stream_next_token(s);
 1964 	if (!tok) {
 1970 		isl_token_free(tok);
 1974 	if (tok->type != ISL_TOKEN_VALUE || tok2->type != ISL_TOKEN_VALUE) {
 1976 		isl_stream_push_token(s, tok);
 1981 	n_row = isl_int_get_si(tok->u.v);
 1985 	isl_token_free(tok);
 1989 	tok = isl_stream_next_token_on_same_line(s);
 1990 	if (tok) {
 1991 		if (tok->type != ISL_TOKEN_VALUE) {
 1992 			isl_stream_error(s, tok,
 1994 			isl_stream_push_token(s, tok);
 1997 		out = isl_int_get_si(tok->u.v);
 1998 		isl_token_free(tok);
 2000 		tok = isl_stream_next_token_on_same_line(s);
 2001 		if (!tok || tok->type != ISL_TOKEN_VALUE) {
 2001 		if (!tok || tok->type != ISL_TOKEN_VALUE) {
 2002 			isl_stream_error(s, tok,
 2004 			if (tok)
 2005 				isl_stream_push_token(s, tok);
 2008 		in = isl_int_get_si(tok->u.v);
 2009 		isl_token_free(tok);
 2011 		tok = isl_stream_next_token_on_same_line(s);
 2012 		if (!tok || tok->type != ISL_TOKEN_VALUE) {
 2012 		if (!tok || tok->type != ISL_TOKEN_VALUE) {
 2013 			isl_stream_error(s, tok,
 2015 			if (tok)
 2016 				isl_stream_push_token(s, tok);
 2019 		local = isl_int_get_si(tok->u.v);
 2020 		isl_token_free(tok);
 2022 		tok = isl_stream_next_token_on_same_line(s);
 2023 		if (!tok || tok->type != ISL_TOKEN_VALUE) {
 2023 		if (!tok || tok->type != ISL_TOKEN_VALUE) {
 2024 			isl_stream_error(s, tok,
 2026 			if (tok)
 2027 				isl_stream_push_token(s, tok);
 2030 		nparam = isl_int_get_si(tok->u.v);
 2031 		isl_token_free(tok);
 2053 	tok = isl_stream_next_token_on_same_line(s);
 2054 	if (tok) {
 2055 		isl_stream_error(s, tok, "unexpected extra token on line");
 2056 		isl_stream_push_token(s, tok);