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

12

/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
55 # this is the set of known static inline functions that we want to keep
58 kernel_known_arm_statics = set(
63 kernel_known_x86_statics = set(
69 kernel_known_mips_statics = set(
74 kernel_known_generic_statics = set(
83 # this maps an architecture to the set of static inline functions that
95 kernel_ignored_macros = set(
H A Dkernel.py24 used by a given set of input source files"""
32 # # get the set of Linux headers included by your files
35 # # get the set of of input files that do include Linux headers
38 # note that the result of getHeaders() is a set of strings, each one
41 # set("linux/types","asm/types.h")
73 self.files = set() # set of files being parsed for headers
74 self.headers = {} # maps headers to set of users
99 self.headers[header] = set()
148 """return the set o
[all...]
/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...]
H A Dcdefs.h322 * __link_set_add_text(set, sym)
323 * Add a reference to the .text symbol `sym' to `set'.
325 * __link_set_add_rodata(set, sym)
326 * Add a reference to the .rodata symbol `sym' to `set'.
328 * __link_set_add_data(set, sym)
329 * Add a reference to the .data symbol `sym' to `set'.
331 * __link_set_add_bss(set, sym)
332 * Add a reference to the .bss symbol `sym' to `set'.
334 * __link_set_decl(set, ptype)
335 * Provide an extern declaration of the set `se
[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...]
H A Dsched.h101 extern int sched_setaffinity(pid_t pid, size_t setsize, const cpu_set_t* set);
103 extern int sched_getaffinity(pid_t pid, size_t setsize, cpu_set_t* set);
168 #define CPU_FREE(set) __sched_cpufree((set))
171 extern void __sched_cpufree(cpu_set_t* set);
228 extern int __sched_cpucount(size_t setsize, cpu_set_t* set);
/bionic/libc/wchar/
H A Dwcspbrk.c40 wcspbrk(const wchar_t *s, const wchar_t *set) argument
47 q = set;
H A Dwcscspn.c40 wcscspn(const wchar_t *s, const wchar_t *set) argument
47 q = set;
H A Dwcsspn.c40 wcsspn(const wchar_t *s, const wchar_t *set) argument
47 q = set;
/bionic/libc/stdio/
H A Dtmpfile.c47 sigset_t set, oset; local
56 sigfillset(&set);
57 (void)sigprocmask(SIG_BLOCK, &set, &oset);
/bionic/libc/unistd/
H A Dsigwait.c47 int sigwait(const sigset_t *set, int *sig) argument
56 u.kernel_sigset[0] = *set;
/bionic/libm/amd64/
H A Ds_scalbnf.S42 .set CNAME(ldexpf),CNAME(scalbnf)
H A Ds_scalbnl.S19 .set CNAME(ldexpl),CNAME(scalbnl)
/bionic/libm/i387/
H A Ds_scalbnf.S19 .set CNAME(ldexpf),CNAME(scalbnf)
H A Ds_scalbnl.S19 .set CNAME(ldexpl),CNAME(scalbnl)
/bionic/libc/kernel/arch-mips/asm/
H A Dasm.h51 #define PANIC(msg) .set push; .set reorder; PTR_LA a0, 8f; jal panic; 9: b 9b; .set pop; TEXT(msg)
60 #define MOVN(rd, rs, rt) .set push; .set reorder; beqz rt, 9f; move rd, rs; .set pop; 9:
61 #define MOVZ(rd, rs, rt) .set push; .set reorder; bnez rt, 9f; move rd, rs; .set pop; 9:
65 #define MOVN(rd, rs, rt) .set pus
[all...]
/bionic/libthread_db/include/
H A Dthread_db.h108 #define td_event_emptyset(set) \
109 (set)->events = 0
111 #define td_event_fillset(set) \
112 (set)->events = 0xffffffff
114 #define td_event_addset(set, n) \
115 (set)->events |= (1 << n)
/bionic/libc/kernel/common/linux/
H A Dmoduleparam.h49 param_set_fn set; member in struct:kernel_param
64 param_set_fn set; member in struct:kparam_array
70 #define __module_param_call(prefix, name, set, get, arg, perm) static char __param_str_##name[] = prefix #name; static struct kernel_param const __param_##name __attribute_used__ __attribute__ ((unused,__section__ ("__param"),aligned(sizeof(void *)))) = { __param_str_##name, perm, set, get, arg }
71 #define module_param_call(name, set, get, arg, perm) __module_param_call(MODULE_PARAM_PREFIX, name, set, get, arg, perm)
H A Dxattr.h44 int (*set)(struct inode *inode, const char *name, const void *buffer, member in struct:xattr_handler
/bionic/libc/netbsd/resolv/
H A Dres_init.c148 * there will have precedence. Otherwise, the server address is set to
293 * to still have a search list, and anyone to set the
417 /* set search list */
811 res_setservers(res_state statp, const union res_sockaddr_union *set, int cnt) { argument
823 switch (set->sin.sin_family) {
825 size = sizeof(set->sin);
828 &set->sin, size);
831 &set->sin, size);
841 size = sizeof(set->sin6);
844 &set
864 res_getservers(res_state statp, union res_sockaddr_union *set, int cnt) argument
[all...]
/bionic/libc/arch-x86/bionic/
H A Dclone.S36 # an error occured, set errno and return -1
/bionic/libc/arch-x86/string/
H A Dswab.S22 cld # set direction forward

Completed in 832 milliseconds

12