Searched refs:ret (Results 251 - 275 of 1164) sorted by relevance

<<11121314151617181920>>

/barrelfish-master/lib/libc/stdio/
H A Dvsprintf.c53 int ret; local
60 ret = __vfprintf(&f, locale, fmt, ap);
62 return (ret);
H A Dsnprintf.c56 int ret; local
72 ret = __vfprintf(&f, __get_locale(), fmt, ap);
76 return (ret);
83 int ret; local
100 ret = __vfprintf(&f, locale, fmt, ap);
104 return (ret);
/barrelfish-master/lib/msun/i387/
H A De_exp.S80 ret
93 ret
97 ret
/barrelfish-master/lib/openssl-1.0.0d/crypto/asn1/
H A Dp5_pbe.c135 X509_ALGOR *ret;
136 ret = X509_ALGOR_new();
137 if (!ret)
143 if (PKCS5_pbe_set0_algor(ret, alg, iter, salt, saltlen))
144 return ret;
146 X509_ALGOR_free(ret);
/barrelfish-master/lib/openssl-1.0.0d/crypto/
H A Do_str.c109 int ret=0; local
111 while(n && (ret=*c1-*c2)==0) n--,c1++,c2++;
113 return ret;
/barrelfish-master/lib/openssl-1.0.0d/crypto/pem/
H A Dpem_sign.c82 int i,ret=0; local
96 ret=1;
100 return(ret);
/barrelfish-master/lib/openssl-1.0.0d/crypto/ui/
H A Dui_util.c62 int ret; local
64 ret=UI_UTIL_read_pw(buf,buff,(length>BUFSIZ)?BUFSIZ:length,prompt,verify);
66 return(ret);
/barrelfish-master/lib/devif/backends/net/mlx4/drivers/infiniband/core/
H A Dmad_rmpp.c136 int ret, hdr_len;
147 ret = ib_post_send_mad(msg, NULL);
148 if (ret)
183 int ret;
197 ret = ib_post_send_mad(msg, NULL);
198 if (ret) {
216 int ret;
233 ret = ib_post_send_mad(msg, NULL);
234 if (ret) {
646 int seg_num, newwin, ret;
895 int ret; local
[all...]
/barrelfish-master/lib/compiler-rt/test/
H A Dfixtfdi_test.c26 int ret = (x != expected); local
28 if (ret)
33 return ret;
H A Dfixtfsi_test.c25 int ret = (x != expected); local
27 if (ret){
31 return ret;
H A Dfloatsitf_test.c26 int ret = compareResultLD(x, expectedHi, expectedLo); local
28 if (ret)
33 return ret;
H A Dfixunstfsi_test.c25 int ret = (x != expected); local
27 if (ret)
32 return ret;
H A Dsubtf3_test.c28 int ret = compareResultLD(x, expectedHi, expectedLo); local
30 if (ret){
35 return ret;
H A Dtrunctfdf2_test.c26 int ret = compareResultD(x, expected); local
28 if (ret)
33 return ret;
H A Dtrunctfsf2_test.c26 int ret = compareResultF(x, expected); local
28 if (ret){
32 return ret;
H A Dunordtf2_test.c25 int ret = compareResultCMP(x, expected); local
27 if (ret){
31 return ret;
/barrelfish-master/lib/compiler-rt/builtins/i386/
H A Dashldi3.S34 ret
50 ret
55 ret
H A Dlshrdi3.S34 ret
51 ret
56 ret
/barrelfish-master/include/arch/x86_64/barrelfish_kpi/
H A Dasm_inlines_arch.h54 uint8_t ret; local
59 : "=a"(ret), "=m"(*dest)//, "=d"(old_top), "=a"(old_bot)
63 return ret;
/barrelfish-master/lib/barrelfish/
H A Dsyscalls.c42 struct sysret ret= syscall1(SYSCALL_GETCHAR); local
43 *c= ret.value;
44 return ret.error;
/barrelfish-master/lib/compiler-rt/test/arm/
H A Daeabi_idivmod_test.c27 du_int ret = __aeabi_idivmod(a, b); local
28 rem = ret >> 32;
29 si_int result = ret & 0xFFFFFFFF;
/barrelfish-master/lib/openssl-1.0.0d/crypto/ts/
H A Dts_conf.c176 int ret = 0; local
185 ret = 1;
187 return ret;
195 int ret = 0; local
206 ret = 1;
208 return ret;
214 int ret = 0; local
225 ret = 1;
227 if (!ret)
234 return ret;
242 int ret = 0; local
265 int ret = 0; local
284 int ret = 0; local
305 int ret = 0; local
332 int ret = 0; local
367 int ret = 0; local
408 int ret = 0; local
452 int ret = 0; local
[all...]
/barrelfish-master/lib/libc/gen/
H A D_pthread_stubs.c142 #define STUB_FUNC(name, idx, ret) \
143 static ret FUNC_EXP(name)(void) __used; \
144 static ret FUNC_INT(name)(void) __used; \
147 typedef ret (*FUNC_TYPE(name))(void); \
148 static ret FUNC_EXP(name)(void) \
154 static ret FUNC_INT(name)(void) \
161 #define STUB_FUNC1(name, idx, ret, p0_type) \
162 static ret FUNC_EXP(name)(p0_type) __used; \
163 static ret FUNC_INT(name)(p0_type) __used; \
166 typedef ret (*FUNC_TYP
[all...]
/barrelfish-master/lib/openssl-1.0.0d/crypto/rsa/
H A Drsa_saos.c71 int i,j,ret=1; local
95 ret=0;
101 return(ret);
109 int i,ret=0; local
140 ret=1;
148 return(ret);
/barrelfish-master/lib/openssl-1.0.0d/util/
H A Dsrc-dep.pl46 local(@a,%seen,@ret,$r);
48 @ret="";
57 push(@ret,$f);
60 push(@ret,&walk($r));
63 $done{$f}=join(" ",@ret);
64 return(@ret);

Completed in 201 milliseconds

<<11121314151617181920>>