Searched refs:res (Results 1 - 25 of 3996) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
H A Dinfo_sources_2-test.c24 int res = foo (); local
25 return compare_values (res, 1);
H A Dstatistics.exp22 set res [remote_spawn host "$GDB $INTERNAL_GDBFLAGS $GDBFLAGS [host_info gdb_opts] -statistics"]
23 if { $res < 0 || $res == "" } {
27 set gdb_spawn_id $res
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.dwarf2/
H A Ddw2-unspecified-type.c23 int res = foo (); local
24 return res;
/netbsd-current/external/mit/xorg/lib/libxcb/res/
H A DMakefile3 XCBEXT= res
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-ifunc/
H A Dprog.c10 int res = -1; local
12 res += library_func1 ();
13 res += library_func2 ();
15 switch (res)
23 res = -1;
33 res = 0;
42 printf ("ifunc function not evaluated at run-time, res = %x\n", res);
45 return res;
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
H A Dstatistics.exp22 set res [remote_spawn host "$GDB $INTERNAL_GDBFLAGS $GDBFLAGS [host_info gdb_opts] -statistics"]
23 if { $res < 0 || $res == "" } {
27 set gdb_spawn_id $res
/netbsd-current/external/gpl3/gcc.old/dist/libgcc/config/libbid/
H A D_dd_to_udi.c30 UDItype res = 0xbaddbaddbaddbaddull; local
34 res = __bid64_to_uint64_xint (ux.i);
36 if (res == 0x8000000000000000ull) res = 0; // for NaNs too
37 return (res);
H A D_dd_to_usi.c30 USItype res = 0xbaddbadd; local
34 res = __bid64_to_uint32_xint (ux.i);
36 if (res == 0x80000000) res = 0; // for NaNs too
37 return (res);
H A D_td_to_udi.c30 UDItype res = 0xbaddbaddbaddbaddull; local
35 res = __bid128_to_uint64_xint (ux.i);
37 if (res == 0x8000000000000000ull) res = 0; // for NaNs too
38 return (res);
H A D_td_to_usi.c30 USItype res = 0xbaddbadd; local
34 res = __bid128_to_uint32_xint (ux.i);
36 if (res == 0x80000000) res = 0; // for NaNs too
37 return (res);
H A D_usi_to_td.c30 union decimal128 res; local
32 res.i = __bid128_from_uint32 (x);
33 return (res.d);
H A D_xf_to_td.c30 union decimal128 res; local
31 res.i = __binary80_to_bid128 (x);
32 return (res.d);
H A D_xf_to_sd.c30 union decimal32 res; local
31 res.i = __binary80_to_bid32 (x);
32 return (res.d);
H A D_xf_to_dd.c30 union decimal64 res; local
31 res.i = __binary80_to_bid64 (x);
32 return (res.d);
H A D_sf_to_td.c30 union decimal128 res; local
31 res.i = __binary32_to_bid128 (x);
32 return (res.d);
H A D_si_to_td.c30 union decimal128 res; local
32 res.i = __bid128_from_int32 (x);
33 return (res.d);
/netbsd-current/external/gpl3/gcc/dist/libgcc/config/libbid/
H A D_dd_to_udi.c30 UDItype res = 0xbaddbaddbaddbaddull; local
34 res = __bid64_to_uint64_xint (ux.i);
36 if (res == 0x8000000000000000ull) res = 0; // for NaNs too
37 return (res);
H A D_td_to_udi.c30 UDItype res = 0xbaddbaddbaddbaddull; local
35 res = __bid128_to_uint64_xint (ux.i);
37 if (res == 0x8000000000000000ull) res = 0; // for NaNs too
38 return (res);
H A D_td_to_usi.c30 USItype res = 0xbaddbadd; local
34 res = __bid128_to_uint32_xint (ux.i);
36 if (res == 0x80000000) res = 0; // for NaNs too
37 return (res);
H A D_dd_to_usi.c30 USItype res = 0xbaddbadd; local
34 res = __bid64_to_uint32_xint (ux.i);
36 if (res == 0x80000000) res = 0; // for NaNs too
37 return (res);
/netbsd-current/external/gpl3/gdb.old/dist/gdb/unittests/basic_string_view/operations/compare/char/
H A D70483.cc28 size_t res = 0; local
29 for (; val[res] != '\0'; ++res)
31 return res;
51 string_view res = "x::"; local
53 res = res.substr(res.find(start_pattern) + start_pattern.size());
54 res = res
66 u16string_view res = u"x::"; local
81 u32string_view res = U"x::"; local
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/unittests/basic_string_view/operations/compare/char/
H A D70483.cc28 size_t res = 0; local
29 for (; val[res] != '\0'; ++res)
31 return res;
51 string_view res = "x::"; local
53 res = res.substr(res.find(start_pattern) + start_pattern.size());
54 res = res
66 u16string_view res = u"x::"; local
81 u32string_view res = U"x::"; local
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdbsupport/
H A Dsafe-strerror.cc31 select_strerror_r (int res, char *buf) argument
33 return res == 0 ? buf : nullptr;
38 select_strerror_r (char *res, char *) argument
40 return res;
50 char *res = select_strerror_r (strerror_r (errnum, buf, sizeof (buf)), buf); local
51 if (res != nullptr)
52 return res;
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/ec/
H A Decp_ppc.c14 void ecp_nistz256_mul_mont(unsigned long res[4], const unsigned long a[4],
17 void ecp_nistz256_to_mont(unsigned long res[4], const unsigned long in[4]);
18 void ecp_nistz256_to_mont(unsigned long res[4], const unsigned long in[4]) argument
25 ecp_nistz256_mul_mont(res, in, RR);
28 void ecp_nistz256_from_mont(unsigned long res[4], const unsigned long in[4]);
29 void ecp_nistz256_from_mont(unsigned long res[4], const unsigned long in[4]) argument
33 ecp_nistz256_mul_mont(res, in, one);
/netbsd-current/external/gpl3/gdb/dist/gdbsupport/
H A Dsafe-strerror.cc31 select_strerror_r (int res, char *buf) argument
33 return res == 0 ? buf : nullptr;
38 select_strerror_r (char *res, char *) argument
40 return res;
50 char *res = select_strerror_r (strerror_r (errnum, buf, sizeof (buf)), buf); local
51 if (res != nullptr)
52 return res;

Completed in 198 milliseconds

1234567891011>>