Home | History | Annotate | Download | only in llvmpipe

Lines Matching defs:fp

47 dump_type(FILE *fp,
50 fprintf(fp, "%s%s%u%sx%u",
284 dump_vec(FILE *fp, struct lp_type type, const void *src)
289 fprintf(fp, " ");
303 fprintf(fp, "%f", value);
331 fprintf(fp, format, value);
358 fprintf(fp, format, value);
368 FILE *fp = NULL;
380 fp = fopen(argv[++i], "wt");
396 if(fp) {
400 write_tsv_header(fp);
404 success = test_single(verbose, fp);
406 success = test_some(verbose, fp, n);
408 success = test_all(verbose, fp);
410 if(fp)
411 fclose(fp);