Searched refs:res (Results 51 - 75 of 2094) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/tests/fs/common/
H A Dfstest_sysvbfs.c59 int res; local
66 res = system(cmd);
67 if (res != 0)
68 return res;
70 res = rump_init();
71 if (res != 0)
72 return res;
82 res = rump_pub_etfs_register(args->ta_devpath, image, RUMP_ETFS_BLK);
83 if (res != 0) {
85 return res;
97 int res; local
116 int res; local
131 int res; local
[all...]
H A Dfstest_v7fs.c59 int res; local
66 res = system(cmd);
67 if (res != 0)
68 return res;
70 res = rump_init();
71 if (res != 0)
72 return res;
83 res = rump_pub_etfs_register(args->ta_devpath, image, RUMP_ETFS_BLK);
84 if (res != 0) {
86 return res;
98 int res; local
117 int res; local
132 int res; local
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
H A Dbn_mp_addmod.c24 int res; local
27 if ((res = mp_init (&t)) != MP_OKAY) {
28 return res;
31 if ((res = mp_add (a, b, &t)) != MP_OKAY) {
33 return res;
35 res = mp_mod (&t, c, d);
37 return res;
H A Dbn_mp_mulmod.c23 int res; local
26 if ((res = mp_init (&t)) != MP_OKAY) {
27 return res;
30 if ((res = mp_mul (a, b, &t)) != MP_OKAY) {
32 return res;
34 res = mp_mod (&t, c, d);
36 return res;
H A Dbn_mp_sqrmod.c24 int res; local
27 if ((res = mp_init (&t)) != MP_OKAY) {
28 return res;
31 if ((res = mp_sqr (a, &t)) != MP_OKAY) {
33 return res;
35 res = mp_mod (&t, b, c);
37 return res;
H A Dbn_mp_submod.c24 int res; local
28 if ((res = mp_init (&t)) != MP_OKAY) {
29 return res;
32 if ((res = mp_sub (a, b, &t)) != MP_OKAY) {
34 return res;
36 res = mp_mod (&t, c, d);
38 return res;
H A Dbn_mp_get_int.c24 unsigned long res; local
34 res = DIGIT(a,i);
37 res = (res << DIGIT_BIT) | DIGIT(a,i);
41 return res & 0xFFFFFFFFUL;
H A Dbn_mp_init_copy.c23 int res; local
25 if ((res = mp_init (a)) != MP_OKAY) {
26 return res;
H A Dbn_mp_to_signed_bin.c23 int res; local
25 if ((res = mp_to_unsigned_bin (a, b + 1)) != MP_OKAY) {
26 return res;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/vect/
H A Dpr42709.c9 int *res[N]; variable
18 res[i] = a + 16;
19 res[i+1] = b + 16;
20 res[i+2] = c + 16;
21 res[i+3] = d + 16;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libgcc/config/libbid/
H A D_ge_dd.c30 CMPtype res; local
35 res = __bid64_quiet_greater_equal (ux.i, uy.i);
36 if (res == 0) res = -1;
38 return (res);
H A D_ge_td.c30 CMPtype res; local
35 res = __bid128_quiet_greater_equal (ux.i, uy.i);
36 if (res == 0) res = -1;
38 return (res);
H A D_sd_to_udi.c30 UDItype res = 0xbaddbaddbaddbaddull; local
36 res = __bid64_to_uint64_xint (x64);
38 if (res == 0x8000000000000000ull) res = 0; // for NaNs too
39 return (res);
H A D_sd_to_usi.c30 USItype res = 0xbaddbadd; local
36 res = __bid64_to_uint32_xint (x64);
38 if (res == 0x80000000) res = 0; // for NaNs too
39 return (res);
H A D_dd_to_df.c30 DFtype res; local
34 res = __bid64_to_binary64 (ux.i);
35 return (res);
H A D_dd_to_di.c30 DItype res = 0xbaddbaddbaddbaddull; local
34 res = __bid64_to_int64_xint (ux.i);
36 return (res);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libgomp/testsuite/libgomp.c/
H A Dpr32468.c10 int res[2] = { -1, -1 }; local
18 res[0] = omp_get_num_threads () != 4;
20 res[1] = omp_get_num_threads () != 4;
23 if (res[0] != 0 || res[1] != 0)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/28_regex/
H A Dinit-list.cc32 cmatch res; local
33 VERIFY(regex_match ("abc", res, r));
34 VERIFY(!regex_match ("ab", res, r));
37 VERIFY(regex_match ("def", res, r));
38 VERIFY(!regex_match ("abc", res, r));
/netbsd-6-1-5-RELEASE/external/lgpl3/mpfr/dist/
H A Dcmp_d.c29 int res; local
32 res = mpfr_set_d (tmp, d, MPFR_RNDN);
33 MPFR_ASSERTD (res == 0);
34 res = mpfr_cmp (b, tmp);
37 return res;
H A Dcmp_ld.c29 int res; local
32 res = mpfr_set_ld (tmp, d, MPFR_RNDN);
33 MPFR_ASSERTD (res == 0);
34 res = mpfr_cmp (b, tmp);
37 return res;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/
H A Dpr23135.c20 } res; variable in typeref:union:__anon5614
37 res.v = k0;
39 verify (res.i[0], res.i[1], 160, 113, big);
42 res.v = k1;
44 verify (res.i[0], res.i[1], 1500, 1300, big);
94 res.v = k2;
96 verify (res.i[0], res
[all...]
H A Dpr17133.c9 void *res; local
13 res = (void *) ((((unsigned int) (foo + bar))) & ~1);
16 return res;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/execute/
H A Dpr23135.c20 } res; variable in typeref:union:__anon3865
37 res.v = k0;
39 verify (res.i[0], res.i[1], 160, 113, big);
42 res.v = k1;
44 verify (res.i[0], res.i[1], 1500, 1300, big);
94 res.v = k2;
96 verify (res.i[0], res
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/uuid/
H A Duuid_compare.c53 int res; local
67 res = (int)((int64_t)a->time_low - (int64_t)b->time_low);
68 if (res)
69 return ((res < 0) ? -1 : 1);
70 res = (int)a->time_mid - (int)b->time_mid;
71 if (res)
72 return ((res < 0) ? -1 : 1);
73 res = (int)a->time_hi_and_version - (int)b->time_hi_and_version;
74 if (res)
75 return ((res <
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.target/ia64/
H A Dfptr-1.c26 int res = 0; local
29 res += check (((struct ia64_fdesc *) os_boot_rendez)->gp);
30 return res;

Completed in 104 milliseconds

1234567891011>>