Searched refs:retval (Results 1 - 25 of 869) sorted by relevance

1234567891011>>

/freebsd-11-stable/bin/date/
H A Dextern.h33 extern int retval;
/freebsd-11-stable/lib/libc/stdlib/
H A Dlldiv.c36 lldiv_t retval; local
38 retval.quot = numer / denom;
39 retval.rem = numer % denom;
41 if (numer >= 0 && retval.rem < 0) {
42 retval.quot++;
43 retval.rem -= denom;
46 return (retval);
H A Dimaxdiv.c36 imaxdiv_t retval; local
38 retval.quot = numer / denom;
39 retval.rem = numer % denom;
41 if (numer >= 0 && retval.rem < 0) {
42 retval.quot++;
43 retval.rem -= denom;
46 return (retval);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_syscall_linux_x86_64.inc16 u64 retval;
17 asm volatile("syscall" : "=a"(retval) : "a"(nr) : "rcx", "r11",
19 return retval;
24 u64 retval;
25 asm volatile("syscall" : "=a"(retval) : "a"(nr), "D"((u64)arg1) :
27 return retval;
32 u64 retval;
33 asm volatile("syscall" : "=a"(retval) : "a"(nr), "D"((u64)arg1),
35 return retval;
40 u64 retval;
[all...]
H A Dsanitizer_syscall_generic.inc30 bool internal_iserror(uptr retval, int *rverrno) {
31 if (retval == (uptr)-1) {
/freebsd-11-stable/contrib/ntp/libparse/
H A Dbinio.c44 long retval; local
46 retval = *((*bufpp)++);
47 retval |= *((*bufpp)++) << 8;
49 return (retval & 0x8000) ? (~0xFFFF | retval) : retval;
67 long retval; local
69 retval = *((*bufpp)++);
70 retval |= *((*bufpp)++) << 8;
71 retval |
94 long retval; local
117 long retval; local
[all...]
/freebsd-11-stable/lib/libc/stdio/
H A Dfgetc.c48 int retval; local
52 retval = __sgetc(fp);
54 return (retval);
/freebsd-11-stable/contrib/file/src/
H A Dasprintf.c38 int retval; local
41 retval = vasprintf(ptr, fmt, vargs);
44 return retval;
/freebsd-11-stable/contrib/dialog/samples/
H A Dpause-both11 retval=$?
12 echo return $retval
H A Dpause-extra10 retval=$?
11 echo return $retval
H A Dcalendar8 retval=$?
H A Dcalendar-stdout7 retval=$?
H A Dcalendar28 retval=$?
H A Dcalendar2-stdout7 retval=$?
H A Dfselect8 retval=$?
H A Dfselect08 retval=$?
H A Dfselect28 retval=$?
H A Dinputbox417 retval=$?
H A Dmsgbox11 retval=$?
H A Dpause8 retval=$?
H A Dpause-help10 retval=$?
/freebsd-11-stable/crypto/openssh/
H A Dmdoc2man.awk43 retval=""
45 if(length(retval))
46 retval=retval OFS
47 retval=retval words[++w]
49 return retval
/freebsd-11-stable/lib/libc/gen/
H A Dtime.c43 time_t retval; local
46 retval = -1;
48 retval = tt.tv_sec;
50 *t = retval;
51 return (retval);
/freebsd-11-stable/usr.sbin/bsdinstall/scripts/
H A Dhostname47 retval=$?
50 retval=$?
52 exit $retval
/freebsd-11-stable/contrib/telnet/libtelnet/
H A Dgetent.c52 int retval; local
56 retval = cgetent(&area, dba, tempnam) == 0 ? 1 : 0;
58 return(retval);
65 int retval; local
69 retval = cgetstr(area, tempid, &answer);
71 return((retval > 0) ? answer : NULL);

Completed in 221 milliseconds

1234567891011>>