Searched refs:res (Results 276 - 300 of 3996) sorted by relevance

<<11121314151617181920>>

/netbsd-current/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
H A Dbn_mp_read_signed_bin.c23 int res; local
26 if ((res = mp_read_unsigned_bin (a, b + 1, c - 1)) != MP_OKAY) {
27 return res;
H A Dbn_mp_set_int.c23 int x, res; local
30 if ((res = mp_mul_2d (a, 4, a)) != MP_OKAY) {
31 return res;
H A Dbn_mp_reduce_setup.c25 int res; local
27 if ((res = mp_2expt (a, b->used * 2 * DIGIT_BIT)) != MP_OKAY) {
28 return res;
/netbsd-current/tests/fs/common/
H A Dfstest_rumpfs.c52 int res; local
55 res = setenv("RUMP_MEMLIMIT", tmp, 0);
56 if (res == -1)
57 return res;
72 int res; local
74 res = rump_sys_mkdir(path, 0777);
75 if (res == -1)
76 return res;
84 int res; local
86 res
[all...]
/netbsd-current/lib/librefuse/refuse/
H A Dlegacy.c44 int res = fuse_invalidate_path(fuse, path); local
46 switch (res) {
52 return res;
/netbsd-current/external/gpl3/gcc.old/dist/libgcc/config/lm32/
H A D_udivmodsi4.c33 USItype res = 0; local
45 res |= bit;
52 return res;
/netbsd-current/external/gpl3/gcc.old/dist/libgcc/config/libbid/
H A D_div_td.c30 union decimal128 ux, uy, res; local
34 res.i = __bid128_div (ux.i, uy.i);
35 return (res.d);
H A D_div_dd.c30 union decimal64 ux, uy, res; local
34 res.i = __bid64_div (ux.i, uy.i);
35 return (res.d);
H A D_sd_to_di.c30 DItype res = 0xbaddbaddbaddbaddull; local
36 res = __bid64_to_int64_xint (x64);
38 return (res);
H A D_sd_to_si.c30 SItype res = 0xbaddbadd; local
36 res = __bid64_to_int32_xint (x64);
38 return (res);
H A D_ne_td.c30 CMPtype res; local
35 res = __bid128_quiet_not_equal (ux.i, uy.i);
36 return (res);
H A D_ne_dd.c30 CMPtype res; local
35 res = __bid64_quiet_not_equal (ux.i, uy.i);
36 return (res);
H A D_lt_td.c30 CMPtype res; local
35 res = -__bid128_quiet_less (ux.i, uy.i);
36 return (res);
H A D_lt_dd.c30 CMPtype res; local
35 res = -__bid64_quiet_less (ux.i, uy.i);
36 return (res);
H A D_mul_td.c30 union decimal128 ux, uy, res; local
34 res.i = __bid128_mul (ux.i, uy.i);
35 return (res.d);
H A D_mul_dd.c30 union decimal64 ux, uy, res; local
34 res.i = __bid64_mul (ux.i, uy.i);
35 return (res.d);
H A D_gt_td.c30 CMPtype res; local
35 res = __bid128_quiet_greater (ux.i, uy.i);
36 return (res);
H A D_gt_dd.c30 CMPtype res; local
35 res = __bid64_quiet_greater (ux.i, uy.i);
36 return (res);
H A D_unord_td.c30 CMPtype res; local
35 res = __bid128_quiet_unordered (ux.i, uy.i);
36 return (res);
H A D_unord_dd.c30 CMPtype res; local
35 res = __bid64_quiet_unordered (ux.i, uy.i);
36 return (res);
/netbsd-current/external/gpl3/gcc.old/dist/libgcc/
H A Dudivmodsi4.c28 unsigned long res = 0; local
40 res |= bit;
46 return res;
H A Dudivmodhi4.c28 unsigned short res = 0; local
40 res |= bit;
46 return res;
/netbsd-current/external/lgpl3/mpfr/dist/tests/
H A Dcmp_str.c29 int res; local
35 res = mpfr_cmp (x, y);
37 return res;
/netbsd-current/external/lgpl3/mpfr/dist/src/
H A Dset_str_raw.c33 int res; local
53 res = mpfr_strtofr (x, str, 0, 2, MPFR_RNDZ);
54 MPFR_ASSERTN (res == 0);
/netbsd-current/external/gpl3/gdb.old/dist/gdbsupport/
H A Dsignals-state-save-restore.cc39 int res; local
41 res = gdb_sigmask (0, NULL, &original_signal_mask);
42 if (res == -1)
51 res = sigaction (i, NULL, oldact);
52 if (res == -1 && errno == EINVAL)
57 else if (res == -1)
96 int res; local
100 res = sigaction (i, &original_signal_actions[i], NULL);
101 if (res == -1 && errno == EINVAL)
106 else if (res
[all...]

Completed in 291 milliseconds

<<11121314151617181920>>