Searched refs:ret (Results 1 - 25 of 790) sorted by relevance

1234567891011>>

/bionic/libc/upstream-openbsd/lib/libc/stdio/
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 Dfwalk.c43 int n, ret; local
46 ret = 0;
50 ret |= (*function)(fp);
52 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 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/libm/arm64/
H A Dceil.S21 ret
26 ret
H A Dfloor.S21 ret
26 ret
H A Drint.S21 ret
26 ret
H A Dsqrt.S21 ret
26 ret
H A Dtrunc.S21 ret
26 ret
H A Dlrint.S22 ret
28 ret
/bionic/libm/upstream-freebsd/lib/msun/src/
H A Ds_nearbyint.c41 * that rint won't raise any floating-point exceptions. Declaring ret volatile
48 volatile type ret; \
52 ret = rint(x); \
54 return (ret); \
/bionic/libc/bionic/
H A Dpututline.c47 goto ret;
49 goto ret;
51 goto ret;
62 ret:
H A Dinitgroups.c39 int ret = -1; local
51 ret = setgroups(numgroups, groups);
57 return ret;
/bionic/libm/x86_64/
H A Dlrint.S36 ret
H A Dlrintf.S36 ret
/bionic/libc/upstream-freebsd/lib/libc/string/
H A Dwcpncpy.c38 wchar_t *ret = dst; local
41 return (ret);
/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/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/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/libm/x86/
H A Dlrint.S37 ret
H A Dlrintf.S37 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/arch-mips/string/
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/include/bits/
H A Dwait.h46 #define W_EXITCODE(ret, sig) ((ret) << 8 | (sig))

Completed in 322 milliseconds

1234567891011>>