Searched refs:type (Results 1 - 25 of 933) sorted by relevance

1234567891011>>

/seL4-refos-master/libs/libmuslc/src/thread/
H A Dpthread_mutexattr_settype.c3 int pthread_mutexattr_settype(pthread_mutexattr_t *a, int type) argument
5 if ((unsigned)type > 2) return EINVAL;
6 a->__attr = (a->__attr & ~3) | type;
H A Dmtx_init.c4 int mtx_init(mtx_t *m, int type) argument
7 ._m_type = ((type&mtx_recursive) ? PTHREAD_MUTEX_RECURSIVE : PTHREAD_MUTEX_NORMAL),
/seL4-refos-master/libs/libmuslc/src/linux/
H A Dreboot.c4 int reboot(int type) argument
6 return syscall(SYS_reboot, 0xfee1dead, 672274793, type);
H A Dklogctl.c4 int klogctl (int type, char *buf, int len) argument
6 return syscall(SYS_syslog, type, buf, len);
/seL4-refos-master/libs/libmuslc/src/signal/riscv/
H A Dsigsetjmp.s3 .type sigsetjmp,@function
4 .type __sigsetjmp,@function
/seL4-refos-master/libs/libmuslc/include/
H A Dstddef.h20 #define offsetof(type, member) __builtin_offsetof(type, member)
22 #define offsetof(type, member) ((size_t)( (char *)&(((type *)0)->member) - (char *)0 ))
/seL4-refos-master/libs/libmuslc/src/ldso/riscv/
H A Ddlsym.s2 .type dlsym,@function
/seL4-refos-master/libs/libmuslc/src/thread/riscv/
H A D__unmapself.s2 .type __unmapself,@function
H A Dclone.s6 .type __clone,@function
/seL4-refos-master/libs/libutils/include/utils/
H A Dsglib.h46 #define SGLIB_ARRAY_SINGLE_HEAP_SORT(type, a, max, comparator) {\
47 SGLIB_ARRAY_HEAP_SORT(type, a, max, comparator, SGLIB_ARRAY_ELEMENTS_EXCHANGER);\
50 #define SGLIB_ARRAY_HEAP_SORT(type, a, max, comparator, elem_exchanger) {\
53 SGLIB___ARRAY_HEAP_DOWN(type, a, _k_, max, comparator, elem_exchanger);\
56 elem_exchanger(type, a, 0, _k_);\
57 SGLIB___ARRAY_HEAP_DOWN(type, a, 0, _k_, comparator, elem_exchanger);\
61 #define SGLIB___ARRAY_HEAP_DOWN(type, a, ind, max, comparator, elem_exchanger) {\
76 elem_exchanger(type, a, _i_, _m_);\
84 #define SGLIB_ARRAY_SINGLE_QUICK_SORT(type, a, max, comparator) {\
85 SGLIB_ARRAY_QUICK_SORT(type,
[all...]
/seL4-refos-master/projects/util_libs/libutils/include/utils/
H A Dsglib.h46 #define SGLIB_ARRAY_SINGLE_HEAP_SORT(type, a, max, comparator) {\
47 SGLIB_ARRAY_HEAP_SORT(type, a, max, comparator, SGLIB_ARRAY_ELEMENTS_EXCHANGER);\
50 #define SGLIB_ARRAY_HEAP_SORT(type, a, max, comparator, elem_exchanger) {\
53 SGLIB___ARRAY_HEAP_DOWN(type, a, _k_, max, comparator, elem_exchanger);\
56 elem_exchanger(type, a, 0, _k_);\
57 SGLIB___ARRAY_HEAP_DOWN(type, a, 0, _k_, comparator, elem_exchanger);\
61 #define SGLIB___ARRAY_HEAP_DOWN(type, a, ind, max, comparator, elem_exchanger) {\
76 elem_exchanger(type, a, _i_, _m_);\
84 #define SGLIB_ARRAY_SINGLE_QUICK_SORT(type, a, max, comparator) {\
85 SGLIB_ARRAY_QUICK_SORT(type,
[all...]
/seL4-refos-master/libs/libmuslc/src/network/
H A Dsocket.c6 int socket(int domain, int type, int protocol) argument
8 int s = socketcall(socket, domain, type, protocol, 0, 0, 0);
10 && (type&(SOCK_CLOEXEC|SOCK_NONBLOCK))) {
12 type & ~(SOCK_CLOEXEC|SOCK_NONBLOCK),
15 if (type & SOCK_CLOEXEC)
17 if (type & SOCK_NONBLOCK)
/seL4-refos-master/libs/libmuslc/src/process/s390x/
H A Dvfork.s3 .type __vfork,%function
4 .type vfork,%function
/seL4-refos-master/libs/libmuslc/src/process/
H A Dwaitid.c5 int waitid(idtype_t type, id_t id, siginfo_t *info, int options) argument
7 return syscall_cp(SYS_waitid, type, id, info, options, 0);
/seL4-refos-master/libs/libmuslc/src/signal/aarch64/
H A Drestore.s2 .type __restore,%function
5 .type __restore_rt,%function
/seL4-refos-master/libs/libmuslc/src/signal/i386/
H A Drestore.s2 .type __restore,@function
9 .type __restore_rt,@function
/seL4-refos-master/libs/libmuslc/src/signal/mips/
H A Drestore.s4 .type __restore_rt,@function
10 .type __restore,@function
/seL4-refos-master/libs/libmuslc/src/signal/mips64/
H A Drestore.s4 .type __restore_rt,@function
5 .type __restore,@function
/seL4-refos-master/libs/libmuslc/src/signal/mipsn32/
H A Drestore.s4 .type __restore_rt,@function
5 .type __restore,@function
/seL4-refos-master/libs/libmuslc/src/signal/powerpc/
H A Drestore.s2 .type __restore,%function
8 .type __restore_rt,%function
/seL4-refos-master/libs/libmuslc/src/signal/powerpc64/
H A Drestore.s2 .type __restore,%function
8 .type __restore_rt,%function
/seL4-refos-master/libs/libmuslc/src/signal/s390x/
H A Drestore.s2 .type __restore,%function
7 .type __restore_rt,%function
/seL4-refos-master/libs/libmuslc/src/math/i386/
H A Dfabs.s2 .type fabs,@function
H A Dfabsf.s2 .type fabsf,@function
H A Dfabsl.s2 .type fabsl,@function

Completed in 118 milliseconds

1234567891011>>