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

References

tools/polly/lib/External/isl/isl_input.c
 1898 	tok = isl_stream_next_token(s);
 1899 	if (!tok || tok->type != ISL_TOKEN_VALUE) {
 1899 	if (!tok || tok->type != ISL_TOKEN_VALUE) {
 1900 		isl_stream_error(s, tok, "expecting coefficient");
 1901 		if (tok)
 1902 			isl_stream_push_token(s, tok);
 1905 	if (!tok->on_new_line) {
 1906 		isl_stream_error(s, tok, "coefficient should appear on new line");
 1907 		isl_stream_push_token(s, tok);
 1911 	type = isl_int_get_si(tok->u.v);
 1912 	isl_token_free(tok);
 1927 		tok = isl_stream_next_token(s);
 1928 		if (!tok || tok->type != ISL_TOKEN_VALUE) {
 1928 		if (!tok || tok->type != ISL_TOKEN_VALUE) {
 1929 			isl_stream_error(s, tok, "expecting coefficient");
 1930 			if (tok)
 1931 				isl_stream_push_token(s, tok);
 1934 		if (tok->on_new_line) {
 1935 			isl_stream_error(s, tok,
 1937 			isl_stream_push_token(s, tok);
 1941 		isl_int_set(c[pos], tok->u.v);
 1942 		isl_token_free(tok);