Searched refs:ret (Results 176 - 200 of 3704) sorted by relevance

1234567891011>>

/freebsd-10-stable/lib/libthread_db/
H A Dlibpthread_db.c125 ret = ps_pglobal_lookup(proc, NULL, sym, addr); \
126 if (ret != 0) { \
128 ret = TD_NOLIBTHREAD; \
133 ret = ps_pglobal_lookup(proc, NULL, sym, &vaddr);\
134 if (ret != 0) { \
136 ret = TD_NOLIBTHREAD; \
139 ret = ps_pread(proc, vaddr, val, sizeof(int)); \
140 if (ret != 0) { \
142 ret = TD_NOLIBTHREAD; \
149 int ret; local
225 int ret; local
298 int ret; local
340 int activated, ret; local
376 int i, ret, allocated; local
445 int attrflags, locklevel, ret; local
563 int ret; local
581 int ret; local
680 int ret; local
724 int ret; local
765 int ret; local
807 int ret; local
857 int ret; local
904 int ret; local
984 int ret; local
1076 int tls_index, ret; local
[all...]
/freebsd-10-stable/crypto/heimdal/kadmin/
H A Dpw_quality.c40 krb5_error_code ret; local
45 ret = krb5_parse_name(context, argv[0], &principal);
46 if(ret){
47 krb5_warn(context, ret, "krb5_parse_name(%s)", argv[0]);
/freebsd-10-stable/crypto/heimdal/lib/gssapi/krb5/
H A Dcanonicalize_name.c45 OM_uint32 ret; local
51 ret = _gsskrb5_canon_name(minor_status, context, 1, NULL, input_name, &name);
52 if (ret)
53 return ret;
/freebsd-10-stable/crypto/heimdal/lib/krb5/
H A Dgenerate_subkey.c55 krb5_error_code ret; local
67 ret = krb5_generate_random_keyblock(context, etype, *subkey);
68 if (ret != 0) {
73 return ret;
H A Dtest_mem.c48 krb5_error_code ret; local
50 ret = krb5_init_context(&context);
51 if (ret)
52 errx (1, "krb5_init_context failed: %d", ret);
/freebsd-10-stable/crypto/heimdal/lib/roken/
H A Dcloexec.c42 int ret; local
44 ret = fcntl(fd, F_GETFD);
45 if (ret == -1)
47 if (fcntl(fd, F_SETFD, ret | FD_CLOEXEC) == -1)
/freebsd-10-stable/crypto/heimdal/lib/wind/
H A DUnicodeData.py43 ret = {}
53 if key in ret:
55 ret[key] = f[1:]
57 return ret
/freebsd-10-stable/lib/csu/amd64/
H A Dcrtn.S31 ret
35 ret
/freebsd-10-stable/lib/csu/i386-elf/
H A Dcrtn.S31 ret
35 ret
/freebsd-10-stable/lib/libc/sys/
H A Dsigwait.c47 int ret; local
51 ret = __sys_sigwait(set, sig);
52 } while (ret == EINTR);
53 return (ret);
/freebsd-10-stable/lib/libkse/thread/
H A Dthr_attr_getstack.c48 int ret; local
53 ret = EINVAL;
58 ret = 0;
60 return(ret);
H A Dthr_attr_init.c45 int ret; local
51 ret = ENOMEM;
61 ret = 0;
63 return(ret);
H A Dthr_attr_setscope.c46 int ret = 0; local
50 ret = EINVAL;
53 ret = EINVAL;
59 return (ret);
H A Dthr_kill.c45 int ret; local
50 ret = EINVAL;
56 else if ((ret = _thr_ref_add(curthread, pthread, /*include dead*/0))
65 return (ret);
/freebsd-10-stable/lib/libstand/
H A Dsbrk.c53 char *ret; local
56 ret = (char *)heapbase + heapsize;
57 bzero(ret, incr);
59 return(ret);
/freebsd-10-stable/lib/libthr/thread/
H A Dthr_kill.c46 int ret; local
63 ret = 0;
64 } else if ((ret = _thr_find_thread(curthread, pthread,
72 return (ret);
/freebsd-10-stable/sys/cddl/compat/opensolaris/sys/
H A Dstat.h45 int ret; local
47 ret = fstat(fd, sb);
48 if (ret == 0) {
52 return (ret);
/freebsd-10-stable/tools/regression/p1003_1b/
H A Dp26.c41 int ret = 0; local
45 ret = -1;
57 ret = -1;
61 return ret;
/freebsd-10-stable/crypto/heimdal/lib/kadm5/
H A Dlog.c56 int ret; local
60 ret = lseek (fd, 0, SEEK_END);
61 if(ret < 0)
63 if(ret == 0) {
95 kadm5_ret_t ret; local
102 ret = errno;
103 krb5_set_error_message(context->context, ret, "kadm5_log_init: open %s",
105 return ret;
108 ret = errno;
109 krb5_set_error_message(context->context, ret, "kadm5_log_ini
196 ssize_t ret; local
242 kadm5_ret_t ret; local
286 krb5_error_code ret; local
319 kadm5_ret_t ret; local
368 krb5_error_code ret; local
393 kadm5_ret_t ret; local
459 krb5_error_code ret; local
512 kadm5_ret_t ret; local
565 krb5_error_code ret; local
758 kadm5_ret_t ret; local
863 krb5_error_code ret; local
956 kadm5_ret_t ret; local
1019 kadm5_ret_t ret = KADM5_FAILURE; local
[all...]
/freebsd-10-stable/contrib/jemalloc/src/
H A Dchunk_mmap.c17 void *ret; local
26 ret = VirtualAlloc(addr, size, MEM_COMMIT | MEM_RESERVE,
33 ret = mmap(addr, size, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANON,
35 assert(ret != NULL);
37 if (ret == MAP_FAILED)
38 ret = NULL;
39 else if (addr != NULL && ret != addr) {
43 if (munmap(ret, size) == -1) {
52 ret = NULL;
55 assert(ret
88 void *ret = (void *)((uintptr_t)addr + leadsize); local
145 void *ret, *pages; local
169 void *ret; local
[all...]
/freebsd-10-stable/lib/libc/locale/
H A Dnl_langinfo.c51 char *ret, *cs; local
57 ret = "";
60 ret = cs + 1;
63 ret = "US-ASCII";
67 ret = (char *) __get_current_time_locale(loc)->c_fmt;
70 ret = (char *) __get_current_time_locale(loc)->x_fmt;
73 ret = (char *) __get_current_time_locale(loc)->X_fmt;
76 ret = (char *) __get_current_time_locale(loc)->ampm_fmt;
79 ret = (char *) __get_current_time_locale(loc)->am;
82 ret
[all...]
/freebsd-10-stable/crypto/openssl/crypto/bio/
H A Dbss_fd.c112 BIO *ret; local
113 ret = BIO_new(BIO_s_fd());
114 if (ret == NULL)
116 BIO_set_fd(ret, fd, close_flag);
117 return (ret);
145 int ret = 0; local
149 ret = UP_read(b->num, out, outl);
151 if (ret <= 0) {
152 if (BIO_fd_should_retry(ret))
156 return (ret);
161 int ret; local
174 long ret = 1; local
225 int n, ret; local
234 int ret = 0; local
[all...]
/freebsd-10-stable/crypto/openssl/crypto/asn1/
H A Da_int.c71 int neg, ret; local
81 ret = ASN1_STRING_cmp(x, y);
84 return -ret;
86 return ret;
116 int pad = 0, ret, i, neg; local
123 ret = 1;
125 ret = a->length;
127 if (ret == 1 && i == 0)
149 ret += pad;
152 return (ret);
189 ASN1_INTEGER *ret = NULL; local
284 ASN1_INTEGER *ret = NULL; local
413 ASN1_INTEGER *ret; local
453 BIGNUM *ret; local
[all...]
/freebsd-10-stable/contrib/llvm/lib/Object/
H A DObject.cpp119 StringRef ret; local
120 if (error_code ec = (*unwrap(SI))->getName(ret))
122 return ret.data();
126 uint64_t ret; local
127 if (error_code ec = (*unwrap(SI))->getSize(ret))
129 return ret;
133 StringRef ret; local
134 if (error_code ec = (*unwrap(SI))->getContents(ret))
136 return ret.data();
140 uint64_t ret; local
148 bool ret; local
179 StringRef ret; local
186 uint64_t ret; local
193 uint64_t ret; local
200 uint64_t ret; local
208 uint64_t ret; local
215 uint64_t ret; local
222 symbol_iterator ret = (*unwrap(RI))->getSymbol(); local
227 uint64_t ret; local
235 SmallVector<char, 0> ret; local
246 SmallVector<char, 0> ret; local
[all...]
/freebsd-10-stable/contrib/openpam/lib/libpam/
H A Dopenpam_asprintf.c49 int ret; local
52 ret = vasprintf(str, fmt, ap);
54 return (ret);

Completed in 215 milliseconds

1234567891011>>