Searched refs:retval (Results 276 - 300 of 694) sorted by relevance

<<11121314151617181920>>

/freebsd-current/sys/riscv/include/
H A Datomic.h71 int retval; \
73 retval = atomic_cmpset_##WIDTH(p, cmpval, newval); \
75 return (retval); \
91 int retval; \
93 retval = atomic_fcmpset_##WIDTH(p, cmpval, newval); \
95 return (retval); \
/freebsd-current/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_custom.cpp915 void **retval,
919 int ret = pthread_join(thread, retval);
920 if (ret == 0 && retval)
921 dfsan_set_label(0, retval, sizeof(*retval));
927 pthread_t thread, void **retval, dfsan_label thread_label,
931 return __dfsw_pthread_join(thread, retval, thread_label, retval_label,
2170 int retval =
2174 return retval;
2179 int retval;
914 __dfsw_pthread_join(pthread_t thread, void **retval, dfsan_label thread_label, dfsan_label retval_label, dfsan_label *ret_label) argument
926 __dfso_pthread_join( pthread_t thread, void **retval, dfsan_label thread_label, dfsan_label retval_label, dfsan_label *ret_label, dfsan_origin thread_origin, dfsan_origin retval_origin, dfsan_origin *ret_origin) argument
[all...]
/freebsd-current/usr.sbin/bsdconfig/startup/
H A Drcdelete229 local retval=$?
234 [ $retval -eq $DIALOG_OK ] && f_dialog_default_store "$menu_choice"
236 return $retval
345 retval=$?
353 elif [ $retval -eq $DIALOG_HELP ]; then
359 [ $retval -eq $DIALOG_OK ] || f_die
/freebsd-current/usr.sbin/mtest/
H A Dmtest.c160 int retval; local
164 retval = -1;
166 return (retval);
168 return (retval);
174 retval = 1;
180 retval = 0;
187 if (retval != 0)
191 return (retval);
/freebsd-current/sys/compat/linuxkpi/common/include/linux/
H A Dktime.h113 ktime_t retval = {(s64) secs * NSEC_PER_SEC + (s64) nsecs}; local
115 return (retval);
H A Dbitmap.h209 unsigned int retval = 0; local
213 retval += hweight_long(addr[i]);
218 retval += hweight_long(addr[end] & mask);
220 return (retval);
/freebsd-current/usr.sbin/arp/
H A Darp.c219 int i, retval; local
229 retval = 0;
240 retval = 1;
244 retval = 1;
247 return (retval);
830 int retval = 0; local
885 retval = dla->sdl_alen;
889 return (retval);
/freebsd-current/sys/arm64/vmm/
H A Darm64.h147 DEFINE_VMMOPS_IFUNC(int, getreg, (void *vcpui, int num, uint64_t *retval))
149 DEFINE_VMMOPS_IFUNC(int, getcap, (void *vcpui, int num, int *retval))
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_syscall_linux_aarch64.inc130 bool internal_iserror(uptr retval, int *rverrno) {
131 if (retval >= (uptr)-4095) {
133 *rverrno = -retval;
H A Dsanitizer_syscall_linux_arm.inc130 bool internal_iserror(uptr retval, int *rverrno) {
131 if (retval >= (uptr)-4095) {
133 *rverrno = -retval;
H A Dsanitizer_syscall_linux_riscv64.inc167 bool internal_iserror(uptr retval, int *rverrno) {
168 if (retval >= (uptr)-4095) {
170 *rverrno = -retval;
H A Dsanitizer_syscall_linux_loongarch64.inc164 bool internal_iserror(uptr retval, int *internal_errno) {
165 if (retval >= (uptr)-4095) {
167 *internal_errno = -retval;
H A Dsanitizer_thread_arg_retval.h24 // Primary goal of the class is to keep alive arg and retval pointer for leak
28 // joined to retrive retval. ThreadRegistry/ThreadList can discard exited
34 void* arg_retval; // Either arg or retval.
54 // Mark thread as done and stores retval or remove if detached. Should be
56 void Finish(uptr thread, void* retval);
79 // Returns all arg and retval which are considered alive.
89 // erase all but the current threads, so we can detect leaked arg or retval in
/freebsd-current/sys/crypto/aesni/
H A Daesni_ccm.c63 __m128i retval = _mm_xor_si128(a, b); local
65 retval = AESNI_ENC(retval, k, nr);
66 return (retval);
/freebsd-current/usr.sbin/bsdconfig/mouse/
H A Dtype101 local retval=$?
103 return $retval
/freebsd-current/contrib/file/src/
H A Dvasprintf.c622 int retval; local
641 retval = core(&s);
643 if (retval == EOF) {
649 return retval;
/freebsd-current/sys/riscv/riscv/
H A Dnexus.c183 int retval = 0; local
185 retval += bus_print_child_header(bus, child);
186 retval += printf("\n");
188 return (retval);
/freebsd-current/sys/powerpc/powermac/
H A Dmacgpio.c221 int retval = 0; local
225 retval += bus_print_child_header(dev, child);
236 retval += bus_print_child_footer(dev, child);
238 return (retval);
/freebsd-current/sys/arm/arm/
H A Dnexus.c196 int retval = 0; local
198 retval += bus_print_child_header(bus, child);
199 retval += printf("\n");
201 return (retval);
/freebsd-current/usr.sbin/bsdinstall/scripts/
H A Ddocsinstall131 local retval=$?
133 return $retval
/freebsd-current/sys/contrib/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/
H A Dcrypto_scrypt-common.c246 int retval; local
257 retval = escrypt_kdf(&local, passwd, passwdlen, salt, saltlen, N, r, p, buf,
262 return retval;
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_import/
H A Dimport_rewind_config_changed.ksh64 typeset retval=1
137 verify_data_md5sums $MD5FILE && retval=0
154 return $retval
/freebsd-current/contrib/libpcap/
H A Dfmtutils.c402 DWORD retval; local
441 retval = FormatMessageW(FORMAT_MESSAGE_FROM_SYSTEM|FORMAT_MESSAGE_IGNORE_INSERTS|FORMAT_MESSAGE_MAX_WIDTH_MASK,
444 if (retval == 0) {
H A Dpcap-sita.c507 int retval; local
525 retval = strcmp(str1, str2);
526 if (retval != 0) return retval; /* if they are not identical, then we can quit now and return the indication */
739 int retval; local
757 retval = select(max_fs + 1, &working_set, NULL, NULL, &tv);
758 if (retval == -1) { /* an error occurred !!!!! */
760 } else if (retval == 0) { /* timeout occurred, so process what we've got sofar and return */
921 int retval, fd; local
937 retval
[all...]
/freebsd-current/sys/ddb/
H A Ddb_output.c324 int retval; local
337 retval = kvprintf (fmt, db_putchar, &dca, db_radix, listp);
344 return (retval);

Completed in 280 milliseconds

<<11121314151617181920>>