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

1 2 3 4 5 6 7 8 91011>>

  /src/lib/libc/gen/
Lint_fpgetmask.c 13 fp_except rv = { 0 }; local
15 return rv;
Lint_fpgetround.c 13 fp_rnd rv = { 0 }; local
15 return rv;
Lint_fpgetsticky.c 13 fp_except rv = { 0 }; local
15 return rv;
Lint_fpsetmask.c 14 fp_except rv = { 0 }; local
16 return rv;
Lint_fpsetround.c 14 fp_rnd rv = { 0 }; local
16 return rv;
Lint_fpsetsticky.c 14 fp_except rv = { 0 }; local
16 return rv;
getgrouplist.c 60 int rv, groupc; local
67 rv = getgroupmembership(uname, agroup, groups, *grpcnt, &groupc);
69 return rv;
shquotev.c 54 size_t rv, callrv; local
57 rv = 0;
62 return rv;
69 rv += callrv;
74 rv++;
82 return rv;
  /src/lib/libc/stdlib/
Lint_div.c 14 div_t rv = { 0 }; local
16 return rv;
Lint_ldiv.c 14 ldiv_t rv = { 0 }; local
16 return rv;
putenv.c 55 int rv; local
65 rv = -1;
75 rv = 0;
81 return rv;
  /src/lib/libc/compat/sys/
compat___sigaction14_sigtramp.c 68 int rv = __sigaction_sigtramp(sig, act, oact, local
70 if (rv >= 0 || errno != EINVAL)
71 return rv;
compat_getrusage.c 57 int rv; local
59 if ((rv = __getrusage50(who, &ru)) == -1)
60 return rv;
62 return rv;
compat_gettimeofday.c 56 int rv; local
58 if ((rv = __gettimeofday50(&tv, tzp)) == -1)
59 return rv;
61 return rv;
  /src/lib/libc/ssp/
snprintf_chk.c 49 int rv; local
55 rv = vsnprintf(buf, len, fmt, ap);
58 return rv;
vsprintf_chk.c 50 int rv; local
53 rv = vsprintf(buf, fmt, ap);
55 if ((rv = vsnprintf(buf, slen, fmt, ap)) >= 0 && (size_t)rv >= slen)
59 return rv;
  /src/lib/libc/sys/
adjtime.c 60 int rv; local
67 rv = ____adjtime50(delta, olddelta);
72 if (rv != -1 || errno != EPERM)
73 return rv;
clock_settime.c 62 int rv; local
69 rv = ____clock_settime50(clock_id, tp);
74 if (rv != -1 || errno != EPERM)
75 return rv;
ntp_adjtime.c 67 int rv; local
76 rv = __ntp_adjtime(tp);
81 if (rv != -1 || errno != EPERM)
82 return rv;
109 rv = (int)args.retval;
110 return rv;
settimeofday.c 62 int rv; local
69 rv = ____settimeofday50(tv, tzp);
77 if (rv != -1 || errno != EPERM)
78 return rv;
  /src/lib/libpci/
pci_bus.c 62 int rv; local
69 rv = ioctl(fd, PCI_IOC_BDF_CFGREAD, &bdfr);
70 if (rv == -1) {
pci_device.c 61 int rv; local
65 rv = ioctl(fd, PCI_IOC_CFGREAD, &r);
66 if (rv == -1) {
pci_drvname.c 49 int rv; local
54 rv = ioctl(fd, PCI_IOC_DRVNAME, &drvname);
55 if (rv == -1)
72 int rv; local
78 rv = ioctl(fd, PCI_IOC_DRVNAMEONBUS, &drvname);
79 if (rv == -1)
  /src/lib/librumpuser/
rumpfiber_bio.c 48 ssize_t rv; local
52 if ((rv = pread(fd, data, dlen, doff)) == -1)
55 if ((rv = pwrite(fd, data, dlen, doff)) == -1)
65 if (rv == -1)
66 rv = 0;
67 biodone(bioarg, (size_t)rv, error);
  /src/sys/lib/libsa/
stat.c 39 int fd, rv; local
44 rv = fstat(fd, sb);
46 return rv;

Completed in 22 milliseconds

1 2 3 4 5 6 7 8 91011>>