Searched defs:ret (Results 1 - 25 of 45) sorted by relevance

12

/bionic/libc/upstream-freebsd/lib/libc/string/
H A Dwcpncpy.c38 wchar_t *ret = dst; local
41 return (ret);
/bionic/libc/upstream-openbsd/lib/libc/stdio/
H A Dfwalk.c43 int n, ret; local
46 ret = 0;
50 ret |= (*function)(fp);
52 return (ret);
H A Dflags.c48 int ret, m, o; local
53 ret = __SRD;
59 ret = __SWR;
65 ret = __SWR;
80 ret = __SRW;
104 return (ret);
H A Dsetvbuf.c45 int ret, flags; local
65 ret = 0;
98 ret = EOF;
112 return (ret);
158 return (ret);
H A Dvasprintf.c28 int ret; local
40 ret = __vfprintf(&f, fmt, ap);
41 if (ret == -1)
44 _base = realloc(f._bf._base, ret + 1);
48 return (ret);
H A Dfgetln.c67 char *ret; local
86 ret = (char *)fp->_p;
92 return (ret);
136 ret = (char *)fp->_lb._base;
138 return (ret);
H A Dvdprintf.c56 int ret; local
69 if ((ret = __vfprintf(&f, fmt, ap)) < 0)
70 return ret;
72 return fflush(&f) ? EOF : ret;
H A Dvswprintf.c46 int ret, sverrno; local
64 ret = __vfwprintf(&f, fmt, ap);
65 if (ret < 0) {
71 if (ret == 0) {
95 return (ret);
/bionic/libc/bionic/
H A Dinitgroups.c39 int ret = -1; local
51 ret = setgroups(numgroups, groups);
57 return ret;
H A Ddirent.cpp179 off_t ret = lseek(d->fd_, offset, SEEK_SET); local
180 if (ret != -1L) {
182 d->current_pos_ = ret;
/bionic/libc/upstream-netbsd/lib/libc/resolv/
H A Dmtctxres.c64 int ret; local
79 if ((ret = pthread_setspecific(key, mt)) != 0) {
81 errno = ret;
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/
H A Dldtoa.c62 char *ret; local
102 ret = gdtoa(&fpi, be, vbits, &kind, mode, ndigits, decpt, rve);
105 return ret;
115 char *ret; local
117 ret = dtoa((double)*ld, mode, ndigits, decpt, sign, rve);
120 return ret;
/bionic/libc/stdlib/
H A Datexit.c85 int ret = -1; local
123 ret = 0;
126 return (ret);
/bionic/libc/arch-mips/string/
H A Dstrcpy.c85 return ret; \
141 return ret; \
172 char *ret = to; local
203 return ret;
H A Dmemcpy.c84 if(!len) return ret; \
90 do_bytes (void *a, const void *b, unsigned long len, void *ret) argument
103 return ret;
108 do_bytes_remaining (void *a, const void *b, unsigned long len, void *ret) argument
133 return ret;
148 unsigned long words, unsigned long bytes, void *ret)
195 return do_bytes_remaining (a, b, bytes, ret);
201 unsigned long words, unsigned long bytes, void *ret)
230 return do_bytes_remaining (a, b, bytes, ret);
238 unsigned long words, unsigned long bytes, void *ret)
147 unaligned_words(struct ulw *a, const reg_t * b, unsigned long words, unsigned long bytes, void *ret) argument
200 unaligned_words(reg_t * a, const reg_t * b, unsigned long words, unsigned long bytes, void *ret) argument
237 aligned_words(reg_t * a, const reg_t * b, unsigned long words, unsigned long bytes, void *ret) argument
292 void *ret = a; local
[all...]
H A Dmemmove.c84 if(!len) return ret; \
90 do_bytes (void *a, const void *b, unsigned long len, void *ret) argument
104 return ret;
108 do_bytes_backward (void *a, const void *b, unsigned long len, void *ret) argument
119 return ret;
123 do_bytes_aligned (void *a, const void *b, unsigned long len, void *ret) argument
148 return ret;
186 unsigned long words, unsigned long bytes, void *ret)
220 return do_bytes_aligned (a, b, bytes, ret);
225 unsigned long words, unsigned long bytes, void *ret)
185 unaligned_words_forward(struct ulw *a, const reg_t * b, unsigned long words, unsigned long bytes, void *ret) argument
224 unaligned_words_backward(struct ulw *a, const reg_t * b, unsigned long words, unsigned long bytes, void *ret) argument
265 unaligned_words_forward(reg_t * a, const reg_t * b, unsigned long words, unsigned long bytes, void *ret) argument
272 unaligned_words_backward(reg_t * a, const reg_t * b, unsigned long words, unsigned long bytes, void *ret) argument
307 aligned_words_forward(reg_t * a, const reg_t * b, unsigned long words, unsigned long bytes, void *ret) argument
347 aligned_words_backward(reg_t * a, const reg_t * b, unsigned long words, unsigned long bytes, void *ret) argument
389 void *ret = dst0; local
[all...]
/bionic/libc/arch-mips64/bionic/
H A Dstat.cpp77 int ret = syscall(__NR_fstat, fp, &s); local
79 return ret;
85 int ret = syscall(__NR_newfstatat, dirfd, pathname, &s, flags); local
87 return ret;
/bionic/libc/dns/resolv/
H A Dres_query.c232 int trailing_dot, ret, saved_herrno; local
258 ret = res_nquerydomain(statp, name, NULL, class, type,
260 if (ret > 0 || trailing_dot)
261 return (ret);
294 ret = res_nquerydomain(statp, name, *domain,
297 if (ret > 0)
298 return (ret);
351 ret = res_nquerydomain(statp, name, NULL, class, type,
353 if (ret > 0)
354 return (ret);
[all...]
/bionic/libc/kernel/uapi/linux/
H A Dfsl_hypervisor.h23 __u32 ret; member in struct:fsl_hv_ioctl_restart
27 __u32 ret; member in struct:fsl_hv_ioctl_status
32 __u32 ret; member in struct:fsl_hv_ioctl_start
38 __u32 ret; member in struct:fsl_hv_ioctl_stop
42 __u32 ret; member in struct:fsl_hv_ioctl_memcpy
51 __u32 ret; member in struct:fsl_hv_ioctl_doorbell
55 __u32 ret; member in struct:fsl_hv_ioctl_prop
/bionic/libc/upstream-netbsd/lib/libc/isc/
H A Dev_streams.c57 struct iovec ret; local
59 memset(&ret, 0xf5, sizeof ret);
60 ret.iov_base = buf;
61 ret.iov_len = cnt;
62 return (ret);
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/
H A Dfsl_hypervisor.h23 __u32 ret; member in struct:fsl_hv_ioctl_restart
27 __u32 ret; member in struct:fsl_hv_ioctl_status
32 __u32 ret; member in struct:fsl_hv_ioctl_start
38 __u32 ret; member in struct:fsl_hv_ioctl_stop
42 __u32 ret; member in struct:fsl_hv_ioctl_memcpy
51 __u32 ret; member in struct:fsl_hv_ioctl_doorbell
55 __u32 ret; member in struct:fsl_hv_ioctl_prop
/bionic/libm/upstream-freebsd/lib/msun/src/
H A Ds_fmal.c54 struct dd ret; local
57 ret.hi = a + b;
58 s = ret.hi - a;
59 ret.lo = (a - (ret.hi - s)) + (b - s);
60 return (ret);
135 struct dd ret; local
151 ret.hi = p + q;
152 ret.lo = p - ret
[all...]
/bionic/tools/versioner/dependencies/common/kernel_uapi/linux/
H A Dfsl_hypervisor.h23 __u32 ret; member in struct:fsl_hv_ioctl_restart
27 __u32 ret; member in struct:fsl_hv_ioctl_status
32 __u32 ret; member in struct:fsl_hv_ioctl_start
38 __u32 ret; member in struct:fsl_hv_ioctl_stop
42 __u32 ret; member in struct:fsl_hv_ioctl_memcpy
51 __u32 ret; member in struct:fsl_hv_ioctl_doorbell
55 __u32 ret; member in struct:fsl_hv_ioctl_prop
/bionic/libc/stdio/
H A Dvfprintf.cpp50 int ret; /* return value accumulator */ local
155 ret = 0;
166 if (m < 0 || m > INT_MAX - ret) goto overflow;
168 ret += m;
232 ret = -1;
267 ret = -1;
317 ret = -1;
455 *GETARG(long long*) = ret;
457 *GETARG(long*) = ret;
459 *GETARG(short*) = ret;
[all...]
H A Dvfwprintf.cpp50 int ret; /* return value accumulator */ local
144 ret = 0;
155 if (m < 0 || m > INT_MAX - ret) goto overflow;
157 ret += m;
221 ret = -1;
256 ret = -1;
440 *GETARG(long long*) = ret;
442 *GETARG(long*) = ret;
444 *GETARG(short*) = ret;
446 *GETARG(signed char*) = ret;
[all...]

Completed in 600 milliseconds

12