HomeSort by: relevance | last modified time | path
    Searched refs:_ret (Results 1 - 21 of 21) sorted by relevancy

  /src/tests/lib/libpthread/
h_common.h 8 int _ret = (x); \
9 ATF_REQUIRE_MSG(_ret == 0, "%s: %s", #x, strerror(_ret)); \
14 int _ret = (x); \
15 ATF_REQUIRE_MSG(_ret == (v), "%s: %s", #x, strerror(_ret)); \
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvif/
unpack.h 8 void **_data = (d); __u32 *_size = (s); int _ret = (r); \
9 if (_ret == -ENOSYS && *_size == sizeof(m)) { \
11 *_size = _ret = 0; \
13 _ret; \
18 int _ret = (r), _vl = (vl), _vh = (vh); \
19 if (_ret == -ENOSYS && *_size >= sizeof(m) && \
23 if (_ret = 0, !(x)) { \
24 _ret = *_size ? -E2BIG : 0; \
29 _ret; \
  /src/external/mpl/bind/dist/lib/isc/include/isc/
once.h 30 int _ret = pthread_once((op), (f)); \
31 PTHREADS_RUNTIME_CHECK(pthread_once, _ret); \
mutex.h 70 int _ret = pthread_mutex_init(mp, &isc__mutex_init_attr); \
71 PTHREADS_RUNTIME_CHECK(pthread_mutex_init, _ret); \
76 int _ret = pthread_mutex_lock(mp); \
77 PTHREADS_RUNTIME_CHECK(pthread_mutex_lock, _ret); \
82 int _ret = pthread_mutex_unlock(mp); \
83 PTHREADS_RUNTIME_CHECK(pthread_mutex_unlock, _ret); \
91 int _ret = pthread_mutex_destroy(mp); \
92 PTHREADS_RUNTIME_CHECK(pthread_mutex_destroy, _ret); \
spinlock.h 69 int _ret = pthread_spin_init(sp, PTHREAD_PROCESS_PRIVATE); \
70 PTHREADS_RUNTIME_CHECK(pthread_spin_init, _ret); \
75 int _ret = pthread_spin_lock(sp); \
76 PTHREADS_RUNTIME_CHECK(pthread_spin_lock, _ret); \
81 int _ret = pthread_spin_unlock(sp); \
82 PTHREADS_RUNTIME_CHECK(pthread_spin_unlock, _ret); \
87 int _ret = pthread_spin_destroy(sp); \
88 PTHREADS_RUNTIME_CHECK(pthread_spin_destroy, _ret); \
condition.h 73 int _ret = pthread_cond_init(cond, NULL); \
74 PTHREADS_RUNTIME_CHECK(pthread_cond_init, _ret); \
79 int _ret = pthread_cond_wait(cp, mp); \
80 PTHREADS_RUNTIME_CHECK(pthread_cond_wait, _ret); \
85 int _ret = pthread_cond_signal(cp); \
86 PTHREADS_RUNTIME_CHECK(pthread_cond_signal, _ret); \
91 int _ret = pthread_cond_broadcast(cp); \
92 PTHREADS_RUNTIME_CHECK(pthread_cond_broadcast, _ret); \
97 int _ret = pthread_cond_destroy(cp); \
98 PTHREADS_RUNTIME_CHECK(pthread_cond_destroy, _ret); \
    [all...]
rwlock.h 80 int _ret = pthread_rwlock_init(rwl, NULL); \
81 PTHREADS_RUNTIME_CHECK(pthread_rwlock_init, _ret); \
86 int _ret; \
89 _ret = pthread_rwlock_rdlock(rwl); \
90 PTHREADS_RUNTIME_CHECK(pthread_rwlock_rdlock, _ret); \
93 _ret = pthread_rwlock_wrlock(rwl); \
94 PTHREADS_RUNTIME_CHECK(pthread_rwlock_rwlock, _ret); \
103 int _ret = 0; \
108 _ret = pthread_rwlock_tryrdlock(rwl); \
111 _ret = pthread_rwlock_trywrlock(rwl);
    [all...]
barrier.h 32 int _ret = pthread_barrier_init(bp, NULL, count); \
33 PTHREADS_RUNTIME_CHECK(pthread_barrier_init, _ret); \
40 int _ret = pthread_barrier_destroy(bp); \
41 PTHREADS_RUNTIME_CHECK(pthread_barrier_destroy, _ret); \
56 int _ret = uv_barrier_init(bp, count); \
57 UV_RUNTIME_CHECK(uv_barrier_init, _ret); \
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core/
firmware.h 24 int _ver, _fwv, _ret = 0; \
33 _ret = _fwif ? 0 : -EINVAL; \
36 if (_ret == 0) { \
42 _ret = _next->load(p, _fwv, _next); \
43 if (_ret == 0 || _ver >= 0) { \
50 if (_ret) { \
52 _fwif = ERR_PTR(_ret); \
  /src/external/bsd/elftoolchain/dist/libelf/
_libelf_ar.h 57 unsigned int _base, size_t *_ret);
  /src/sys/kern/
subr_msan.c 935 int _ret; local
938 _ret = _ucas_32(uaddr, old, new, ret);
939 if (_ret == 0)
942 return _ret;
952 int _ret; local
955 _ret = _ucas_32_mp(uaddr, old, new, ret);
956 if (_ret == 0)
959 return _ret;
970 int _ret; local
973 _ret = _ucas_64(uaddr, old, new, ret)
987 int _ret; local
1004 int _ret; local
1018 int _ret; local
1032 int _ret; local
1047 int _ret; local
    [all...]
  /src/sys/external/bsd/drm/dist/shared-core/
mach64_drv.h 787 int _ret; \
800 if ((_ret = mach64_find_pending_buf_entry(dev_priv, &_entry, _buf))) { \
802 return _ret; \
821 if ((_ret = mach64_add_buf_to_ring( dev_priv, _entry ))) \
822 return _ret; \
828 int _ret; \
829 if ((_ret = mach64_find_pending_buf_entry(dev_priv, &_entry, _buf))) { \
832 return _ret; \
841 int _ret; \
863 if ((_ret = mach64_add_hostdata_buf_to_ring( dev_priv, _entry )))
    [all...]
  /src/external/ibm-public/postfix/dist/src/util/
vbuf_print.c 112 ssize_t _ret; \
115 _ret = snprintf((char *) (bp)->ptr, (bp)->cnt, (fmt), (arg)); \
116 if (_ret < 0) \
118 if (_ret >= (bp)->cnt) \
  /src/external/mpl/bind/dist/bin/tests/system/enginepkcs11/
tests.sh 32 _ret=0
36 test "$_count" -eq "$_expect" || _ret=1
37 test "$_ret" -eq 0 || echo_i "failed (expected $_expect keys, got $_count)"
38 _status=$((_status + _ret))
40 _ret=0
42 test "$_count" -eq "$_expect" || _ret=1
43 test "$_ret" -eq 0 || echo_i "failed (expected Label metadata in key files)"
44 _status=$((_status + _ret))
  /src/sys/external/mit/xen-include-public/dist/xen/include/public/arch-x86/
xen-mca.h 311 #define x86_mcinfo_lookup(_ret, _mi, _type) \
317 (_ret) = NULL; \
327 (_ret) = found ? _mic : NULL; \
  /src/external/mpl/bind/dist/bin/tests/system/pending/
tests.sh 30 _ret=0
31 $NSUPDATE -d <<END >>nsupdate.out.test 2>&1 || _ret=1
38 if [ $_ret != 0 ]; then
  /src/external/mpl/bind/dist/bin/tests/system/legacy/
tests.sh 23 _ret=0
24 $DIG $DIGOPTS +tcp +tries=3 +time=5 @10.53.0.1 ${1} SOA >dig.out.test$n || _ret=1
25 grep "status: NOERROR" dig.out.test$n >/dev/null || _ret=1
26 return $_ret
  /src/external/ibm-public/postfix/dist/conf/
postfix-tls-script 446 _ret=$?
449 if [ "${_ret}" -ne 0 ]; then
477 _ret=$?
480 if [ "${_ret}" -ne 0 ]; then
  /src/external/mpl/bind/dist/bin/tests/system/autosign/
tests.sh 49 _ret=0
52 echo $x | grep "(complete)" >/dev/null || _ret=2
53 echo $x | grep "(incomplete)" >/dev/null && _ret=1
55 if [ $_ret = $expected ]; then
82 _ret=0
129 _ret=1
133 _ret=1
137 return $_ret
  /src/external/gpl3/gcc/dist/gcc/config/nios2/
nios2-ldstwm.sml 130 (conds wb "_wb") ^ (conds pc "_ret");
  /src/external/gpl3/gcc.old/dist/gcc/config/nios2/
nios2-ldstwm.sml 130 (conds wb "_wb") ^ (conds pc "_ret");

Completed in 43 milliseconds