Searched refs:set (Results 1 - 25 of 257) sorted by relevance

1234567891011

/bionic/libc/kernel/tools/
H A Ddefaults.py29 # this is the set of known macros we want to totally optimize out from the
43 # maps an architecture to a set of default macros that would be provided by
56 # this is the set of known static inline functions that we want to keep
59 kernel_known_arm_statics = set(
64 kernel_known_x86_statics = set(
70 kernel_known_mips_statics = set(
75 kernel_known_generic_statics = set(
84 # this maps an architecture to the set of static inline functions that
96 kernel_ignored_macros = set(
/bionic/libc/include/sys/
H A Dcdefs_elf.h139 #define __link_set_make_entry(set, sym) \
140 static void const * const __link_set_##set##_sym_##sym \
141 __section("link_set_" #set) __used = &sym
142 #define __link_set_make_entry2(set, sym, n) \
143 static void const * const __link_set_##set##_sym_##sym##_##n \
144 __section("link_set_" #set) __used = &sym[n]
146 #define __link_set_make_entry(set, sym) \
147 extern void const * const __link_set_##set##_sym_##sym
148 #define __link_set_make_entry2(set, sym, n) \
149 extern void const * const __link_set_##set##_sym
[all...]
/bionic/libc/bionic/
H A Dsched_cpualloc.c37 void __sched_cpufree(cpu_set_t* set) argument
39 free(set);
H A Dsched_getaffinity.c31 int sched_getaffinity(pid_t pid, size_t setsize, cpu_set_t* set) argument
33 int ret = __sched_getaffinity(pid, setsize, set);
36 memset((char*)set + ret, '\0', setsize - (size_t)ret);
H A Dsched_cpucount.c31 int __sched_cpucount(size_t setsize, cpu_set_t* set) argument
37 count += __builtin_popcount(set->__bits[nn]);
/bionic/libc/include/
H A Dsignal.h50 * architectures except for the 'mips' one which set it to 128.
59 static __inline__ int sigismember(sigset_t *set, int signum) argument
61 unsigned long *local_set = (unsigned long *)set;
67 static __inline__ int sigaddset(sigset_t *set, int signum) argument
69 unsigned long *local_set = (unsigned long *)set;
76 static __inline__ int sigdelset(sigset_t *set, int signum) argument
78 unsigned long *local_set = (unsigned long *)set;
85 static __inline__ int sigemptyset(sigset_t *set) argument
87 memset(set, 0, sizeof *set);
91 sigfillset(sigset_t *set) argument
[all...]
/bionic/libc/wchar/
H A Dwcspbrk.c40 wcspbrk(const wchar_t *s, const wchar_t *set) argument
47 q = set;
/bionic/libc/unistd/
H A Dsigwait.c47 int sigwait(const sigset_t *set, int *sig) argument
56 u.dummy_sigset = *set;
64 u.kernel_sigset[0] = *set;
/bionic/libc/arch-mips/bionic/
H A Datexit.S35 .set noreorder
37 .set reorder
/bionic/libc/arch-mips/syscalls/
H A D__brk.S9 .set noreorder
21 .set reorder
H A D__fcntl.S9 .set noreorder
21 .set reorder
H A D__fcntl64.S9 .set noreorder
21 .set reorder
H A D__fork.S9 .set noreorder
21 .set reorder
H A D__fstatfs64.S9 .set noreorder
21 .set reorder
H A D__getcpu.S9 .set noreorder
21 .set reorder
H A D__getcwd.S9 .set noreorder
21 .set reorder
H A D__getpriority.S9 .set noreorder
21 .set reorder
H A D__ioctl.S9 .set noreorder
21 .set reorder
H A D__llseek.S9 .set noreorder
21 .set reorder
H A D__mmap2.S9 .set noreorder
21 .set reorder
H A D__open.S9 .set noreorder
21 .set reorder
H A D__openat.S9 .set noreorder
21 .set reorder
H A D__ptrace.S9 .set noreorder
21 .set reorder
H A D__reboot.S9 .set noreorder
21 .set reorder
H A D__rt_sigaction.S9 .set noreorder
21 .set reorder

Completed in 167 milliseconds

1234567891011