Lines Matching refs:CeedInt_FMT
105 printf(" Mesh dimension [-d] : %" CeedInt_FMT "\n", dim); in main()
106 printf(" Mesh degree [-m] : %" CeedInt_FMT "\n", mesh_degree); in main()
107 printf(" Solution degree [-p] : %" CeedInt_FMT "\n", sol_degree); in main()
108 printf(" Num. 1D quadrature pts [-q] : %" CeedInt_FMT "\n", num_qpts); in main()
109 printf(" Approx. # unknowns [-s] : %" CeedInt_FMT "\n", prob_size); in main()
145 printf("Mesh size: nx = %" CeedInt_FMT, num_xyz[0]); in main()
146 if (dim > 1) printf(", ny = %" CeedInt_FMT, num_xyz[1]); in main()
147 if (dim > 2) printf(", nz = %" CeedInt_FMT, num_xyz[2]); in main()
160 printf("Number of mesh nodes : %" CeedInt_FMT "\n", mesh_size / dim); in main()
161 printf("Number of solution nodes : %" CeedInt_FMT "\n", sol_size); in main()
188 snprintf(name, sizeof name, "Mass%" CeedInt_FMT "DBuild", dim); in main()