tests             214 ext/ereg/regex/split.c } tests[] = {
tests             287 ext/ereg/regex/split.c 	for (n = 0; tests[n].str != NULL; n++) {
tests             288 ext/ereg/regex/split.c 		(void) strcpy(buf, tests[n].str);
tests             290 ext/ereg/regex/split.c 		nf = split(buf, fields, RNF, tests[n].seps);
tests             292 ext/ereg/regex/split.c 		if (nf != tests[n].nf) {
tests             294 ext/ereg/regex/split.c 				tests[n].str, tests[n].seps, nf, tests[n].nf);
tests             304 ext/ereg/regex/split.c 				if (strcmp(f, tests[n].fi[i]) != 0) {
tests             306 ext/ereg/regex/split.c 						tests[n].str, tests[n].seps,
tests             307 ext/ereg/regex/split.c 						i, fields[i], tests[n].fi[i]);
tests             749 ext/standard/crypt_freesec.c } tests[] = {
tests             794 ext/standard/crypt_freesec.c 	for (i = 0; tests[i].hash; i++) {
tests             795 ext/standard/crypt_freesec.c 		char *hash = crypt(tests[i].pw, tests[i].hash);
tests             796 ext/standard/crypt_freesec.c 		if (!hash && strlen(tests[i].hash) < 13)
tests             798 ext/standard/crypt_freesec.c 		if (!strcmp(hash, tests[i].hash))
tests             625 ext/standard/crypt_sha256.c } tests[] =
tests             659 ext/standard/crypt_sha256.c #define ntests (sizeof (tests) / sizeof (tests[0]))
tests             707 ext/standard/crypt_sha256.c 		sha256_process_bytes(tests[cnt].input, strlen(tests[cnt].input), &ctx);
tests             709 ext/standard/crypt_sha256.c 		if (memcmp(tests[cnt].result, sum, 32) != 0) {
tests             715 ext/standard/crypt_sha256.c 		for (i = 0; tests[cnt].input[i] != '\0'; ++i) {
tests             716 ext/standard/crypt_sha256.c 			sha256_process_bytes(&tests[cnt].input[i], 1, &ctx);
tests             719 ext/standard/crypt_sha256.c 		if (memcmp(tests[cnt].result, sum, 32) != 0) {
tests             669 ext/standard/crypt_sha512.c } tests[] =
tests             722 ext/standard/crypt_sha512.c #define ntests (sizeof (tests) / sizeof (tests[0]))
tests             774 ext/standard/crypt_sha512.c 		sha512_process_bytes (tests[cnt].input, strlen (tests[cnt].input), &ctx);
tests             776 ext/standard/crypt_sha512.c 		if (memcmp (tests[cnt].result, sum, 64) != 0) {
tests             782 ext/standard/crypt_sha512.c 		for (i = 0; tests[cnt].input[i] != '\0'; ++i) {
tests             783 ext/standard/crypt_sha512.c 			sha512_process_bytes (&tests[cnt].input[i], 1, &ctx);
tests             786 ext/standard/crypt_sha512.c 		if (memcmp (tests[cnt].result, sum, 64) != 0) {