Home
last modified time | relevance | path

Searched refs:result (Results 1 – 25 of 49) sorted by relevance

12

/stdlib/
A Dtst-strtod6.c13 int result = 0; \
19 result = 1; \
24 result = 1; \
29 result = 1; \
31 return result; \
39 int result = 0; in do_test() local
41 result |= STRTOD_TEST_FOREACH (test_strto, "NaN(blabla)something"); in do_test()
42 result |= STRTOD_TEST_FOREACH (test_strto, "NaN(1234)something"); in do_test()
46 result |= STRTOD_TEST_FOREACH (test_strto, in do_test()
51 result |= STRTOD_TEST_FOREACH (test_strto, "NaN(0)something"); in do_test()
[all …]
A Dtst-environ.c31 int result = 0; in do_test() local
41 result = 1; in do_test()
48 result = 1; in do_test()
56 result = 1; in do_test()
63 result = 1; in do_test()
71 result = 1; in do_test()
78 result = 1; in do_test()
86 result = 1; in do_test()
98 result = 1; in do_test()
108 result = 1; in do_test()
[all …]
A Dtst-fmtmsg.c13 int result = 0; in do_test() local
21 result = 1; in do_test()
28 result = 1; in do_test()
33 result = 1; in do_test()
38 result = 1; in do_test()
43 result = 1; in do_test()
48 result = 1; in do_test()
53 result = 1; in do_test()
58 result = 1; in do_test()
64 result = 1; in do_test()
[all …]
A Drand_r.c28 int result; in rand_r() local
32 result = (unsigned int) (next / 65536) % 2048; in rand_r()
36 result <<= 10; in rand_r()
37 result ^= (unsigned int) (next / 65536) % 1024; in rand_r()
41 result <<= 10; in rand_r()
42 result ^= (unsigned int) (next / 65536) % 1024; in rand_r()
46 return result; in rand_r()
A Dtst-rand48.c17 int result = 0; in do_test() local
31 result = 1; in do_test()
43 result = 1; in do_test()
51 result = 1; in do_test()
59 result = 1; in do_test()
67 result = 1; in do_test()
81 result = 1; in do_test()
91 result = 1; in do_test()
99 result = 1; in do_test()
107 result = 1; in do_test()
[all …]
A Dtst-system.c84 struct support_capture_subprocess result; in do_test() local
85 result = support_capture_subprocess (call_system, in do_test()
103 struct support_capture_subprocess result; in do_test() local
104 result = support_capture_subprocess (call_system, in do_test()
118 struct support_capture_subprocess result; in do_test() local
119 result = support_capture_subprocess (call_system, in do_test()
127 struct support_capture_subprocess result; in do_test() local
128 result = support_capture_subprocess (call_system, in do_test()
131 TEST_COMPARE_STRING (result.out.buffer, "...\n"); in do_test()
135 struct support_capture_subprocess result; in do_test() local
[all …]
A Dmblen.c35 int result; in mblen() local
50 result = fcts->towc->__stateful; in mblen()
54 result = 0; in mblen()
59 result = __mbrtowc (NULL, s, n, &state); in mblen()
63 if (result < 0) in mblen()
64 result = -1; in mblen()
67 return result; in mblen()
A Dmbtowc.c36 int result; in mbtowc() local
53 result = fcts->towc->__stateful; in mbtowc()
59 result = 0; in mbtowc()
63 result = __mbrtowc (pwc, s, n, &state); in mbtowc()
67 if (result < 0) in mbtowc()
68 result = -1; in mbtowc()
71 return result; in mbtowc()
A Dtst-bsearch.c61 int result = 0; in do_test() local
74 result = 1; in do_test()
79 result = 1; in do_test()
89 result = 1; in do_test()
97 result = 1; in do_test()
105 result = 1; in do_test()
119 result = 1; in do_test()
130 result = 1; in do_test()
137 result = 1; in do_test()
142 result = 1; in do_test()
[all …]
A Dldiv.c25 ldiv_t result; in ldiv() local
27 result.quot = numer / denom; in ldiv()
28 result.rem = numer % denom; in ldiv()
30 return result; in ldiv()
A Dlldiv.c26 lldiv_t result; in lldiv() local
28 result.quot = numer / denom; in lldiv()
29 result.rem = numer % denom; in lldiv()
31 return result; in lldiv()
A Ddiv.c56 div_t result; in div() local
58 result.quot = numer / denom; in div()
59 result.rem = numer % denom; in div()
61 return result; in div()
A Ddrand48-iter.c32 uint64_t result; in __drand48_iterate() local
48 result = X * buffer->__a + buffer->__c; in __drand48_iterate()
50 xsubi[0] = result & 0xffff; in __drand48_iterate()
51 xsubi[1] = (result >> 16) & 0xffff; in __drand48_iterate()
52 xsubi[2] = (result >> 32) & 0xffff; in __drand48_iterate()
A Dl64a.c37 static char result[7]; in l64a() local
49 result[cnt] = conv_table[m & 0x3f]; in l64a()
52 result[cnt] = '\0'; in l64a()
54 return result; in l64a()
A Dlrand48.c24 long int result; in lrand48() local
26 (void) __nrand48_r (__libc_drand48_data.__x, &__libc_drand48_data, &result); in lrand48()
28 return result; in lrand48()
A Dmrand48.c24 long int result; in mrand48() local
26 (void) __jrand48_r (__libc_drand48_data.__x, &__libc_drand48_data, &result); in mrand48()
28 return result; in mrand48()
A Dnrand48.c24 long int result; in nrand48() local
26 (void) __nrand48_r (xsubi, &__libc_drand48_data, &result); in nrand48()
28 return result; in nrand48()
A Ddrand48.c24 double result; in drand48() local
26 (void) __erand48_r (__libc_drand48_data.__x, &__libc_drand48_data, &result); in drand48()
28 return result; in drand48()
A Derand48.c24 double result; in erand48() local
26 (void) __erand48_r (xsubi, &__libc_drand48_data, &result); in erand48()
28 return result; in erand48()
A Djrand48.c24 long int result; in jrand48() local
26 (void) __jrand48_r (xsubi, &__libc_drand48_data, &result); in jrand48()
28 return result; in jrand48()
A Dtst-strtod-nan-locale-main.c60 int result = 0; in GEN_TEST_STRTOD_FOREACH() local
71 result |= STRTOD_TEST_FOREACH (test_strto, loc, s); in GEN_TEST_STRTOD_FOREACH()
73 result |= STRTOD_TEST_FOREACH (test_strto, loc, s); in GEN_TEST_STRTOD_FOREACH()
75 return result; in GEN_TEST_STRTOD_FOREACH()
81 int result = 0; in do_test() local
82 result |= test_one_locale ("C"); in do_test()
83 result |= test_one_locale ("tr_TR.UTF-8"); in do_test()
84 result |= test_one_locale ("tr_TR.ISO-8859-9"); in do_test()
85 return result; in do_test()
A Disomac.c198 int result = 0; in main() local
226 return result; in main()
306 result = realloc (result, result_max * sizeof (char **)); in get_null_defines()
307 if (result == NULL) in get_null_defines()
332 result = realloc (result, result_max * sizeof (char **)); in get_null_defines()
351 int result = 0; in check_header() local
368 result = 1; in check_header()
389 result = 1; in check_header()
418 result = 1; in check_header()
445 result = 2; in check_header()
[all …]
A Dtst-strtod.h113 int result = 0; \
114 result |= mfunc ## f (__VA_ARGS__); \
115 result |= mfunc ## d (__VA_ARGS__); \
116 result |= mfunc ## ld (__VA_ARGS__); \
117 IF_FLOAT16 (result |= mfunc ## f16 (__VA_ARGS__)); \
118 IF_FLOAT32 (result |= mfunc ## f32 (__VA_ARGS__)); \
119 IF_FLOAT64 (result |= mfunc ## f64 (__VA_ARGS__)); \
120 IF_FLOAT128 (result |= mfunc ## f128 (__VA_ARGS__)); \
121 IF_FLOAT32X (result |= mfunc ## f32x (__VA_ARGS__)); \
122 IF_FLOAT64X (result |= mfunc ## f64x (__VA_ARGS__)); \
[all …]
A Dtst-strtod1i.c47 int result = 0; in do_test() local
59 result = 1; in do_test()
68 result = 1; in do_test()
74 result = 1; in do_test()
78 if (result == 0) in do_test()
81 return result ? EXIT_FAILURE : EXIT_SUCCESS; in do_test()
A Dtst-tininess.c33 int result = 0; in do_test() local
50 result = 1; in do_test()
59 result = 1; in do_test()
65 return result; in do_test()

Completed in 41 milliseconds

12