/src/bin/ed/ |
re.c | 63 char *exps; local in function:get_compiled_pattern 73 } else if ((exps = extract_pattern(delimiter)) == NULL) 84 if ((n = regcomp(expr, exps, ere)) != 0) {
|
/src/tests/lib/libm/ |
t_scalbn.c | 42 static const int exps[] = { 0, 1, -1, 100, -100 }; variable in typeref:typename:const int[] 123 for (i = 0; i < __arraycount(exps); i++) { 124 y = scalbn(x, exps[i]); 140 for (i = 0; i < __arraycount(exps); i++) 141 ATF_CHECK(scalbn(x, exps[i]) == x); 155 for (i = 0; i < __arraycount(exps); i++) 156 ATF_CHECK(scalbn(x, exps[i]) == x); 172 for (i = 0; i < __arraycount(exps); i++) { 173 y = scalbn(x, exps[i]); 174 ATF_CHECK_MSG(y == ldexp(x, exps[i]), "test %zu: exponent=%d, [all...] |
t_ldexp.c | 47 static const int exps[] = { 0, 1, -1, 100, -100 }; variable in typeref:typename:const int[] 228 for (i = 0; i < __arraycount(exps); i++) { 229 y = ldexp(x, exps[i]); 245 for (i = 0; i < __arraycount(exps); i++) 246 ATF_CHECK(ldexp(x, exps[i]) == x); 260 for (i = 0; i < __arraycount(exps); i++) 261 ATF_CHECK(ldexp(x, exps[i]) == x); 278 for (i = 0; i < __arraycount(exps); i++) { 279 y = ldexp(x, exps[i]); 299 for (i = 0; i < __arraycount(exps); i++) [all...] |