reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
242 if (!p) 244 p->ctx = ctx; 245 isl_ctx_ref(p->ctx); 246 p->ops = &str_ops; 247 p->file = NULL; 248 p->buf = isl_alloc_array(ctx, char, 256); 249 if (!p->buf) 251 p->buf_n = 0; 252 p->buf[0] = '\0'; 253 p->buf_size = 256; 254 p->indent = 0; 255 p->output_format = ISL_FORMAT_ISL; 256 p->indent_prefix = NULL; 257 p->prefix = NULL; 258 p->suffix = NULL; 259 p->width = 0; 260 p->yaml_style = ISL_YAML_STYLE_FLOW; 262 return p; 264 isl_printer_free(p);