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