HomeSort by: relevance | last modified time | path
    Searched defs:ret (Results 1 - 25 of 1776) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/lib/libc/inet/
inet_ntoa.c 59 static char ret[18]; local in function:__weak_alias
61 strlcpy(ret, "[inet_ntoa error]", sizeof(ret));
62 (void) inet_ntop(AF_INET, &in, ret, (socklen_t)sizeof ret);
63 return ret;
inet_makeaddr.c 58 struct in_addr ret; local in function:__weak_alias
68 ret.s_addr = htonl(addr);
69 return ret;
  /src/lib/libc/string/
stpncpy.c 47 char *ret = dst; local in function:stpncpy
50 return (ret);
  /src/sys/arch/mvme68k/stand/libbug/
diskrd.c 16 int ret; local in function:mvmeprom_diskrd
20 MVMEPROM_STATRET(ret);
diskwr.c 16 int ret; local in function:mvmeprom_diskwr
20 MVMEPROM_STATRET(ret);
inchr.c 17 int ret; local in function:getchar
21 MVMEPROM_RETURN_BYTE(ret);
instat.c 16 int ret; local in function:peekchar
20 MVMEPROM_STATRET(ret);
  /src/sys/rump/librump/rumpkern/
rump_atomic_cas_up.c 43 uint32_t ret; local in function:rump_cas_32_up
45 ret = *ptr;
46 if (__predict_true(ret == old)) {
50 return ret;
  /src/distrib/utils/libhack/
localeconv.c 26 static struct lconv ret = { local in function:localeconv
47 return (&ret);
  /src/lib/libc/stdio/
dprintf.c 55 int ret; local in function:__weak_alias
58 ret = vdprintf(fd, fmt, ap);
60 return ret;
67 int ret; local in function:dprintf_l
70 ret = vdprintf_l(fd, loc, fmt, ap);
72 return ret;
flags.c 60 int ret, m, o; local in function:__sflags
67 ret = __SRD;
73 ret = __SWR;
79 ret = __SWR;
99 ret = __SRW;
121 return ret;
fprintf.c 53 int ret; local in function:fprintf
57 ret = vfprintf(fp, fmt, ap);
59 return ret;
67 int ret; local in function:__weak_alias
71 ret = vfprintf_l(fp, loc, fmt, ap);
73 return ret;
fscanf.c 59 int ret; local in function:__weak_alias
63 ret = __svfscanf(fp, fmt, ap);
65 return ret;
71 int ret; local in function:fscanf_l
75 ret = __svfscanf_l(fp, loc, fmt, ap);
77 return ret;
fwprintf.c 48 int ret; local in function:__weak_alias
52 ret = vfwprintf(fp, fmt, ap);
55 return ret;
61 int ret; local in function:fwprintf_l
65 ret = vfwprintf_l(fp, loc, fmt, ap);
68 return ret;
printf.c 55 int ret; local in function:__weak_alias
59 ret = vfprintf(stdout, fmt, ap);
61 return ret;
67 int ret; local in function:printf_l
71 ret = vfprintf_l(stdout, loc, fmt, ap);
73 return ret;
scanf.c 59 int ret; local in function:__weak_alias
63 ret = __svfscanf(stdin, fmt, ap);
65 return ret;
71 int ret; local in function:scanf_l
75 ret = __svfscanf_l(stdin, loc, fmt, ap);
77 return ret;
snprintf_ss.c 63 int ret; local in function:__weak_alias
66 ret = vsnprintf_ss(str, n, fmt, ap);
68 return ret;
sscanf.c 60 int ret; local in function:__weak_alias
64 ret = vsscanf(str, fmt, ap);
66 return ret;
72 int ret; local in function:sscanf_l
76 ret = vsscanf_l(str, loc, fmt, ap);
78 return ret;
swprintf.c 48 int ret; local in function:__weak_alias
52 ret = vswprintf(s, n, fmt, ap);
55 return ret;
62 int ret; local in function:swprintf_l
66 ret = vswprintf_l(s, n, loc, fmt, ap);
69 return ret;
wprintf.c 48 int ret; local in function:__weak_alias
52 ret = vfwprintf(stdout, fmt, ap);
55 return ret;
61 int ret; local in function:wprintf_l
65 ret = vfwprintf_l(stdout, loc, fmt, ap);
68 return ret;
  /src/lib/libpthread/arch/mips/
pthread_md.h 38 unsigned long ret; local in function:pthread__sp
40 __asm("move %0, $sp" : "=r" (ret));
42 return ret;
  /src/lib/libpthread/arch/or1k/
pthread_md.h 38 unsigned long ret; local in function:pthread__sp
40 __asm("l.ori %0, r0, 0" : "=r" (ret));
42 return ret;
  /src/lib/libpthread/arch/sparc64/
pthread_md.h 38 unsigned long ret; local in function:pthread__sp
40 __asm("mov %%sp, %0" : "=r" (ret));
42 return ret;
  /src/sys/arch/acorn32/stand/nbfs/
rmalloc.c 9 void *ret; local in function:alloc
11 if (xosmodule_alloc(size, &ret) != NULL)
13 return ret;
  /src/sys/arch/hpc/stand/hpcboot/
file.cpp 72 int ret = WideCharToMultiByte(CP_ACP, 0, w, len, m, len, 0, 0); local in function:File::_to_ascii
73 if (ret == 0) {

Completed in 119 milliseconds

1 2 3 4 5 6 7 8 91011>>