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

1234567891011>>

/openbsd-current/regress/lib/libm/fpaccuracy/
H A Dfpaccuracy.c16 int retval = 0; local
23 retval |= fpaccuracy_Gamma(out);
24 retval |= fpaccuracy_INV(out);
25 retval |= fpaccuracy_Pix(out);
26 retval |= fpaccuracy_acos(out);
27 retval |= fpaccuracy_acosh(out);
28 retval |= fpaccuracy_asin(out);
29 retval |= fpaccuracy_asinh(out);
30 retval |= fpaccuracy_atan(out);
31 retval |
[all...]
/openbsd-current/gnu/llvm/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.inc31 bool internal_iserror(uptr retval, int *rverrno) {
32 if (retval == (uptr)-1) {
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D990829-1.c9 double retval; local
11 retval = test(1.0,2.0);
12 if (retval < 0.24 || retval > 0.26)
/openbsd-current/regress/lib/libm/cephes/
H A Dcephes.c15 int retval = 0; local
18 retval |= monot();
23 retval |= monotl();
29 retval |= monotll();
34 retval |= testvect();
39 retval |= testvectl();
45 retval |= testvectll();
49 return (retval);
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A Duninit-3.c12 int nchars, retval; local
15 retval = 0;
22 retval += c;
23 retval <<= 8;
32 return retval;
/openbsd-current/libexec/ld.so/
H A Dpath.c29 char **retval; local
45 retval = _dl_reallocarray(NULL, count, sizeof(*retval));
46 if (retval == NULL)
56 retval[pos] = _dl_malloc(pp - p_begin + 1);
57 if (retval[pos] == NULL)
60 _dl_bcopy(p_begin, retval[pos], pp - p_begin);
61 retval[pos++][pp - p_begin] = '\0';
70 retval[pos] = NULL;
71 return (retval);
[all...]
/openbsd-current/gnu/usr.bin/binutils/gdb/testsuite/gdb.base/
H A Dbranches.c12 { int retval ; local
14 retval = noscramble(1) ;
15 else retval = noscramble(0) ;
16 return retval ;
20 { int retval ; local
22 retval = echo(1) ;
23 else retval = echo(2) ;
24 return retval ;
27 { int retval ; local
30 retval
44 int retval ; local
[all...]
/openbsd-current/usr.sbin/radiusd/
H A Dimsg_subr.c39 int retval; local
43 retval = poll(fds, 1, millisec);
44 if (retval == 0) {
48 if (retval > 0 && (fds[0].revents & POLLIN) != 0)
62 int retval; local
69 retval = poll(fds, 1, millisec);
70 if (retval == 0) {
74 if (retval > 0 && (fds[0].revents & POLLOUT) != 0)
/openbsd-current/gnu/gcc/intl/
H A Dfinddomain.c56 struct loaded_l10nfile *retval; local
91 retval = _nl_make_l10nflist (&_nl_loaded_domains, dirname,
94 if (retval != NULL)
99 if (retval->decided == 0)
100 _nl_load_domain (retval, domainbinding);
102 if (retval->data != NULL)
103 return retval;
105 for (cnt = 0; retval->successor[cnt] != NULL; ++cnt)
107 if (retval->successor[cnt]->decided == 0)
108 _nl_load_domain (retval
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/intl/
H A Dfinddomain.c56 struct loaded_l10nfile *retval; local
91 retval = _nl_make_l10nflist (&_nl_loaded_domains, dirname,
94 if (retval != NULL)
99 if (retval->decided == 0)
100 _nl_load_domain (retval, domainbinding);
102 if (retval->data != NULL)
103 return retval;
105 for (cnt = 0; retval->successor[cnt] != NULL; ++cnt)
107 if (retval->successor[cnt]->decided == 0)
108 _nl_load_domain (retval
[all...]
/openbsd-current/gnu/usr.bin/texinfo/intl/
H A Dfinddomain.c53 struct loaded_l10nfile *retval; local
88 retval = _nl_make_l10nflist (&_nl_loaded_domains, dirname,
91 if (retval != NULL)
96 if (retval->decided == 0)
97 _nl_load_domain (retval, domainbinding);
99 if (retval->data != NULL)
100 return retval;
102 for (cnt = 0; retval->successor[cnt] != NULL; ++cnt)
104 if (retval->successor[cnt]->decided == 0)
105 _nl_load_domain (retval
[all...]
H A Dprintf.c88 int retval = -1; local
92 retval = length;
95 return retval;
104 int retval; local
107 retval = libintl_vfprintf (stream, format, args);
109 return retval;
124 int retval; local
127 retval = libintl_vprintf (format, args);
129 return retval;
157 int retval; local
207 int retval; local
236 int retval; local
281 int retval = -1; local
301 int retval; local
321 int retval; local
361 int retval; local
[all...]
/openbsd-current/games/robots/
H A Dquery.c42 int c, retval; local
50 retval = ((c = getchar()) == 'y' || c == 'Y');
54 return retval;
/openbsd-current/regress/lib/libpthread/signals/pthread_join/
H A Dpthread_join.c28 void *retval; local
30 CHECKr(pthread_join(tid, &retval));
31 return (retval);
39 void *retval; local
53 CHECKr(pthread_join(tid[1], &retval));
54 ASSERT(retval == (void *)0);
/openbsd-current/gnu/usr.bin/binutils/intl/
H A Dfinddomain.c79 struct loaded_l10nfile *retval; local
114 retval = _nl_make_l10nflist (&_nl_loaded_domains, dirname,
117 if (retval != NULL)
122 if (retval->decided == 0)
123 _nl_load_domain (retval);
125 if (retval->data != NULL)
126 return retval;
128 for (cnt = 0; retval->successor[cnt] != NULL; ++cnt)
130 if (retval->successor[cnt]->decided == 0)
131 _nl_load_domain (retval
[all...]
H A Ddcgettext.c237 char *retval; local
361 retval = find_msg (domain, msgid);
363 if (retval == NULL)
369 retval = find_msg (domain->successor[cnt], msgid);
371 if (retval != NULL)
376 if (retval != NULL)
380 return retval;
487 const char *retval; local
493 retval = "LC_COLLATE";
498 retval
548 const char *retval; local
[all...]
/openbsd-current/gnu/usr.bin/binutils-2.17/intl/
H A Dfinddomain.c79 struct loaded_l10nfile *retval; local
114 retval = _nl_make_l10nflist (&_nl_loaded_domains, dirname,
117 if (retval != NULL)
122 if (retval->decided == 0)
123 _nl_load_domain (retval);
125 if (retval->data != NULL)
126 return retval;
128 for (cnt = 0; retval->successor[cnt] != NULL; ++cnt)
130 if (retval->successor[cnt]->decided == 0)
131 _nl_load_domain (retval
[all...]
H A Ddcgettext.c237 char *retval; local
361 retval = find_msg (domain, msgid);
363 if (retval == NULL)
369 retval = find_msg (domain->successor[cnt], msgid);
371 if (retval != NULL)
376 if (retval != NULL)
380 return retval;
487 const char *retval; local
493 retval = "LC_COLLATE";
498 retval
548 const char *retval; local
[all...]
/openbsd-current/sys/arch/hppa/hppa/
H A Dsys_machdep.c41 sys_sysarch(p, v, retval)
44 register_t *retval;
/openbsd-current/usr.bin/tic/
H A Dclear_cmd.c52 int retval = tputs(clear_screen, lines > 0 ? lines : 1, putch); local
59 return retval;
/openbsd-current/sbin/isakmpd/
H A Dconstants.c74 char *retval = constant_lookup(map, value); local
76 if (!retval) {
80 return retval;
87 char *retval; local
91 retval = constant_lookup(*map, value);
92 if (retval)
93 return retval;
/openbsd-current/sys/dev/pci/drm/amd/amdkfd/
H A Dkfd_packet_manager.c93 int retval; local
102 retval = kfd_gtt_sa_allocate(pm->dqm->dev, *rl_buffer_size,
105 if (retval) {
118 return retval;
128 int retval, processes_mapped; local
135 rl_wptr = retval = processes_mapped = 0;
137 retval = pm_allocate_runlist_ib(pm, &rl_buffer, rl_gpu_addr,
139 if (retval)
140 return retval;
158 retval
276 int retval = 0; local
306 int retval; local
347 int retval = 0; local
375 int retval = 0; local
410 int retval = 0; local
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.misc-tests/
H A Dgcov-7.c70 int retval; local
73 if ((retval = setjmp (env))) {
75 val += retval; /* count(2) */
/openbsd-current/usr.bin/passwd/
H A Dpasswd.c39 void usage(int retval);
78 usage(int retval) argument
81 exit(retval);

Completed in 210 milliseconds

1234567891011>>