Lines Matching refs:vals
46 } vals[MAXSIZE]; member
240 for (j = 0; tests[i].vals[j].format != NULL; ++j) { in main()
246 len = strftime (buf, sizeof(buf), tests[i].vals[j].format, tm); in main()
249 tests[i].vals[j].format, (unsigned long)len, in main()
254 if (strcmp (buf, tests[i].vals[j].result) != 0) { in main()
256 tests[i].vals[j].format, buf, in main()
257 tests[i].vals[j].result); in main()
262 ptr = strptime (tests[i].vals[j].result, in main()
263 tests[i].vals[j].format, in main()
268 tests[i].vals[j].result, in main()
269 tests[i].vals[j].format); in main()
272 strftime (buf, sizeof(buf), tests[i].vals[j].format, &tm2); in main()
273 if (strcmp (buf, tests[i].vals[j].result) != 0) { in main()
275 tests[i].vals[j].format, in main()
276 buf, tests[i].vals[j].result); in main()