Home
last modified time | relevance | path

Searched refs:kind (Results 1 – 25 of 64) sorted by relevance

123

/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl/
A Dpthread_mutexattr_settype.c26 int kind) in __pthread_mutexattr_settype() argument
30 if (kind < PTHREAD_MUTEX_NORMAL || kind > PTHREAD_MUTEX_ADAPTIVE_NP) in __pthread_mutexattr_settype()
35 iattr->mutexkind = (iattr->mutexkind & PTHREAD_MUTEXATTR_FLAG_BITS) | kind; in __pthread_mutexattr_settype()
A Dpthread_mutex_timedlock.c158 int kind = PTHREAD_MUTEX_TYPE (mutex); in pthread_mutex_timedlock() local
159 if (kind == PTHREAD_MUTEX_ROBUST_ERRORCHECK_NP) in pthread_mutex_timedlock()
166 if (kind == PTHREAD_MUTEX_ROBUST_RECURSIVE_NP) in pthread_mutex_timedlock()
217 int kind = mutex->__data.__kind & PTHREAD_MUTEX_KIND_MASK_NP; in pthread_mutex_timedlock() local
231 if (kind == PTHREAD_MUTEX_ERRORCHECK_NP) in pthread_mutex_timedlock()
237 if (kind == PTHREAD_MUTEX_RECURSIVE_NP) in pthread_mutex_timedlock()
278 || (kind != PTHREAD_MUTEX_ERRORCHECK_NP in pthread_mutex_timedlock()
279 && kind != PTHREAD_MUTEX_RECURSIVE_NP)); in pthread_mutex_timedlock()
364 int kind = mutex->__data.__kind & PTHREAD_MUTEX_KIND_MASK_NP; in pthread_mutex_timedlock() local
371 if (kind == PTHREAD_MUTEX_ERRORCHECK_NP) in pthread_mutex_timedlock()
[all …]
A Dpthread_mutex_trylock.c117 int kind = PTHREAD_MUTEX_TYPE (mutex); in __pthread_mutex_trylock() local
118 if (kind == PTHREAD_MUTEX_ROBUST_ERRORCHECK_NP) in __pthread_mutex_trylock()
125 if (kind == PTHREAD_MUTEX_ROBUST_RECURSIVE_NP) in __pthread_mutex_trylock()
181 int kind = mutex->__data.__kind & PTHREAD_MUTEX_KIND_MASK_NP; in __pthread_mutex_trylock() local
195 if (kind == PTHREAD_MUTEX_ERRORCHECK_NP) in __pthread_mutex_trylock()
201 if (kind == PTHREAD_MUTEX_RECURSIVE_NP) in __pthread_mutex_trylock()
306 int kind = mutex->__data.__kind & PTHREAD_MUTEX_KIND_MASK_NP; in __pthread_mutex_trylock() local
313 if (kind == PTHREAD_MUTEX_ERRORCHECK_NP) in __pthread_mutex_trylock()
316 if (kind == PTHREAD_MUTEX_RECURSIVE_NP) in __pthread_mutex_trylock()
A Dpthread_mutex_lock.c200 int kind = PTHREAD_MUTEX_TYPE (mutex); in __pthread_mutex_lock_full() local
201 if (kind == PTHREAD_MUTEX_ROBUST_ERRORCHECK_NP) in __pthread_mutex_lock_full()
208 if (kind == PTHREAD_MUTEX_ROBUST_RECURSIVE_NP) in __pthread_mutex_lock_full()
253 int kind = mutex->__data.__kind & PTHREAD_MUTEX_KIND_MASK_NP; in __pthread_mutex_lock_full() local
267 if (kind == PTHREAD_MUTEX_ERRORCHECK_NP) in __pthread_mutex_lock_full()
273 if (kind == PTHREAD_MUTEX_RECURSIVE_NP) in __pthread_mutex_lock_full()
312 || (kind != PTHREAD_MUTEX_ERRORCHECK_NP in __pthread_mutex_lock_full()
313 && kind != PTHREAD_MUTEX_RECURSIVE_NP)); in __pthread_mutex_lock_full()
383 int kind = mutex->__data.__kind & PTHREAD_MUTEX_KIND_MASK_NP; in __pthread_mutex_lock_full() local
390 if (kind == PTHREAD_MUTEX_ERRORCHECK_NP) in __pthread_mutex_lock_full()
[all …]
A Dpthread_mutex_setprioceiling.c49 int kind = PTHREAD_MUTEX_TYPE (mutex); local
52 if (kind == PTHREAD_MUTEX_PP_ERRORCHECK_NP)
55 if (kind == PTHREAD_MUTEX_PP_RECURSIVE_NP)
A Dpthread_mutexattr_gettype.c25 int *kind) in pthread_mutexattr_gettype() argument
31 *kind = iattr->mutexkind & ~PTHREAD_MUTEXATTR_FLAG_BITS; in pthread_mutexattr_gettype()
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads.old/
A Dmutex.c214 int attribute_hidden __pthread_mutexattr_settype(pthread_mutexattr_t *attr, int kind) in strong_alias()
216 if (kind != PTHREAD_MUTEX_ADAPTIVE_NP in strong_alias()
217 && kind != PTHREAD_MUTEX_RECURSIVE_NP in strong_alias()
218 && kind != PTHREAD_MUTEX_ERRORCHECK_NP in strong_alias()
219 && kind != PTHREAD_MUTEX_TIMED_NP) in strong_alias()
221 attr->__mutexkind = kind; in strong_alias()
228 int __pthread_mutexattr_gettype(const pthread_mutexattr_t *attr, int *kind) attribute_hidden;
229 int __pthread_mutexattr_gettype(const pthread_mutexattr_t *attr, int *kind) in __pthread_mutexattr_gettype() argument
231 *kind = attr->__mutexkind; in __pthread_mutexattr_gettype()
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads/
A Dmutex.c216 int __pthread_mutexattr_settype(pthread_mutexattr_t *attr, int kind) in strong_alias()
218 if (kind != PTHREAD_MUTEX_ADAPTIVE_NP in strong_alias()
219 && kind != PTHREAD_MUTEX_RECURSIVE_NP in strong_alias()
220 && kind != PTHREAD_MUTEX_ERRORCHECK_NP in strong_alias()
221 && kind != PTHREAD_MUTEX_TIMED_NP) in strong_alias()
223 attr->__mutexkind = kind; in strong_alias()
230 int __pthread_mutexattr_gettype(const pthread_mutexattr_t *attr, int *kind) in weak_alias()
232 *kind = attr->__mutexkind; in weak_alias()
/l4re-core-master/uclibc/lib/libpthread/src/
A Dmutex.c238 __pthread_mutexattr_settype(pthread_mutexattr_t *attr, int kind) in strong_alias()
240 if (kind != PTHREAD_MUTEX_ADAPTIVE_NP in strong_alias()
241 && kind != PTHREAD_MUTEX_RECURSIVE_NP in strong_alias()
242 && kind != PTHREAD_MUTEX_ERRORCHECK_NP in strong_alias()
243 && kind != PTHREAD_MUTEX_TIMED_NP) in strong_alias()
245 attr->__mutexkind = kind; in strong_alias()
254 __pthread_mutexattr_gettype(const pthread_mutexattr_t *attr, int *kind) in weak_alias()
256 *kind = attr->__mutexkind; in weak_alias()
/l4re-core-master/uclibc/lib/contrib/uclibc/test/nptl/
A Dtst-rwlock7.c27 static int kind[] = variable
104 for (cnt = 0; cnt < sizeof (kind) / sizeof (kind[0]); ++cnt) in do_test()
115 if (pthread_rwlockattr_setkind_np (&a, kind[cnt]) != 0) in do_test()
A Dtst-rwlock6.c27 static int kind[] = variable
110 for (cnt = 0; cnt < sizeof (kind) / sizeof (kind[0]); ++cnt) in do_test()
121 if (pthread_rwlockattr_setkind_np (&a, kind[cnt]) != 0) in do_test()
/l4re-core-master/lua/lib/contrib/src/
A Dlparser.c203 var->vd.kind = VDKREG; /* default */ in new_localvar()
232 if (vd->vd.kind != RDKCTC) /* is in a register? */ in reglevel()
253 if (vd->vd.kind == RDKCTC) in localdebuginfo()
293 if (up->kind != VDKREG) in check_readonly()
370 up->kind = getlocalvardesc(prev, v->u.var.vidx)->vd.kind; in newupvalue()
376 up->kind = prev->f->upvalues[v->u.info].kind; in newupvalue()
1721 int vidx, kind; /* index and kind of last variable */ in localstat() local
1727 kind = getlocalattribute(ls); in localstat()
1728 getlocalvardesc(fs, vidx)->vd.kind = kind; in localstat()
1729 if (kind == RDKTOCLOSE) { /* to-be-closed? */ in localstat()
[all …]
A Dldebug.c681 const char *kind = NULL; in varinfo() local
683 kind = getupvalname(ci, o, &name); /* check whether 'o' is an upvalue */ in varinfo()
684 if (!kind && isinstack(ci, o)) /* no? try a register */ in varinfo()
685 kind = getobjname(ci_func(ci)->p, currentpc(ci), in varinfo()
688 return (kind) ? luaO_pushfstring(L, " (%s '%s')", kind, name) : ""; in varinfo()
A Dlparser.h99 lu_byte kind; member
A Dldump.c149 dumpByte(D, f->upvalues[i].kind); in dumpUpvalues()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/internals/
A Dtempname.c180 int attribute_hidden __gen_tempname (char *tmpl, int kind, mode_t mode) in __gen_tempname() argument
207 switch (kind) { in __gen_tempname()
/l4re-core-master/uclibc/lib/contrib/uclibc/test/math/
A Dgen-libm-test.pl487 my ($test, $type, $float, $eps, $kind);
511 $kind = 'test';
525 $kind = 'fct';
546 $results{$test}{'kind'} = $kind;
/l4re-core-master/sigma0/doc/
A Dsigma0.dox21 * interface. This is the only kind of object that can be created by the factory
/l4re-core-master/l4re/util/include/
A Dcap_alloc141 * This kind of automatic capability implements a counted reference to a
176 * This kind of automatic capability implements a counted reference to a
/l4re-core-master/uclibc/lib/contrib/uclibc/extra/Configs/
A DConfig.in.arch177 j0, j1, jn - Bessel functions of the first kind
178 y0, y1, yn - Bessel functions of the second kind
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-5/include/tr1/
A Dcmath1180 /// 5.2.1.4 Complete elliptic integrals of the first kind.
1197 /// 5.2.1.5 Complete elliptic integrals of the second kind.
1214 /// 5.2.1.6 Complete elliptic integrals of the third kind.
1265 /// 5.2.1.9 Cylindrical Bessel functions (of the first kind).
1316 /// 5.2.1.12 Incomplete elliptic integrals of the first kind.
1333 /// 5.2.1.13 Incomplete elliptic integrals of the second kind.
1350 /// 5.2.1.14 Incomplete elliptic integrals of the third kind.
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-4.9/include/tr1/
A Dcmath1108 /// 5.2.1.4 Complete elliptic integrals of the first kind.
1125 /// 5.2.1.5 Complete elliptic integrals of the second kind.
1142 /// 5.2.1.6 Complete elliptic integrals of the third kind.
1193 /// 5.2.1.9 Cylindrical Bessel functions (of the first kind).
1244 /// 5.2.1.12 Incomplete elliptic integrals of the first kind.
1261 /// 5.2.1.13 Incomplete elliptic integrals of the second kind.
1278 /// 5.2.1.14 Incomplete elliptic integrals of the third kind.
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-6/include/tr1/
A Dcmath1350 /// 5.2.1.4 Complete elliptic integrals of the first kind.
1367 /// 5.2.1.5 Complete elliptic integrals of the second kind.
1384 /// 5.2.1.6 Complete elliptic integrals of the third kind.
1435 /// 5.2.1.9 Cylindrical Bessel functions (of the first kind).
1486 /// 5.2.1.12 Incomplete elliptic integrals of the first kind.
1503 /// 5.2.1.13 Incomplete elliptic integrals of the second kind.
1520 /// 5.2.1.14 Incomplete elliptic integrals of the third kind.
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-7/include/tr1/
A Dcmath1350 /// 5.2.1.4 Complete elliptic integrals of the first kind.
1367 /// 5.2.1.5 Complete elliptic integrals of the second kind.
1384 /// 5.2.1.6 Complete elliptic integrals of the third kind.
1435 /// 5.2.1.9 Cylindrical Bessel functions (of the first kind).
1486 /// 5.2.1.12 Incomplete elliptic integrals of the first kind.
1503 /// 5.2.1.13 Incomplete elliptic integrals of the second kind.
1520 /// 5.2.1.14 Incomplete elliptic integrals of the third kind.
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/include/tr1/
A Dcmath1323 /// 5.2.1.4 Complete elliptic integrals of the first kind.
1340 /// 5.2.1.5 Complete elliptic integrals of the second kind.
1357 /// 5.2.1.6 Complete elliptic integrals of the third kind.
1391 /// 5.2.1.9 Cylindrical Bessel functions (of the first kind).
1442 /// 5.2.1.12 Incomplete elliptic integrals of the first kind.
1459 /// 5.2.1.13 Incomplete elliptic integrals of the second kind.
1476 /// 5.2.1.14 Incomplete elliptic integrals of the third kind.

Completed in 50 milliseconds

123