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

References

tools/polly/lib/External/isl/isl_input.c
 3028 	tok = isl_stream_next_token(s);
 3029 	if (!tok || tok->type != ISL_TOKEN_VALUE) {
 3029 	if (!tok || tok->type != ISL_TOKEN_VALUE) {
 3030 		isl_stream_error(s, tok, "expecting vector length");
 3034 	size = isl_int_get_si(tok->u.v);
 3035 	isl_token_free(tok);
 3040 		tok = isl_stream_next_token(s);
 3041 		if (!tok || tok->type != ISL_TOKEN_VALUE) {
 3041 		if (!tok || tok->type != ISL_TOKEN_VALUE) {
 3042 			isl_stream_error(s, tok, "expecting constant value");
 3045 		isl_int_set(vec->el[j], tok->u.v);
 3046 		isl_token_free(tok);
 3051 	isl_token_free(tok);