/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/common/bits/ |
A D | uClibc_ctype.h | 46 #define __C_isspace(c) \ argument 51 #define __C_isdigit(c) \ argument 55 #define __C_isxdigit(c) \ argument 60 #define __C_iscntrl(c) \ argument 64 #define __C_isalpha(c) \ argument 69 #define __C_isprint(c) \ argument 73 #define __C_islower(c) \ argument 77 #define __C_isupper(c) \ argument 81 #define __C_ispunct(c) \ argument 86 #define __C_isgraph(c) \ argument [all …]
|
/l4re-core-master/lua/lib/contrib/src/ |
A D | lctype.h | 52 #define testprop(c,p) (luai_ctype_[(c)+1] & (p)) argument 57 #define lislalpha(c) testprop(c, MASK(ALPHABIT)) argument 58 #define lislalnum(c) testprop(c, (MASK(ALPHABIT) | MASK(DIGITBIT))) argument 59 #define lisdigit(c) testprop(c, MASK(DIGITBIT)) argument 60 #define lisspace(c) testprop(c, MASK(SPACEBIT)) argument 61 #define lisprint(c) testprop(c, MASK(PRINTBIT)) argument 62 #define lisxdigit(c) testprop(c, MASK(XDIGITBIT)) argument 71 #define ltolower(c) \ argument
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/fnmatch/ |
A D | fnmatch_old.c | 38 # define ISASCII(c) 1 argument 40 # define ISASCII(c) isascii(c) argument 43 # define ISUPPER(c) (ISASCII (c) && isupper (c)) argument 51 register char c; in fnmatch() local 54 # define FOLD(c) ((flags & FNM_CASEFOLD) && ISUPPER (c) ? tolower (c) : (c)) in fnmatch() argument
|
A D | fnmatch.c | 95 # define ISASCII(c) 1 argument 97 # define ISASCII(c) isascii(c) argument 103 # define ISBLANK(c) ((c) == ' ' || (c) == '\t') argument 111 # define ISPRINT(c) (ISASCII (c) && isprint (c)) argument 112 # define ISDIGIT(c) (ISASCII (c) && isdigit (c)) argument 113 # define ISALNUM(c) (ISASCII (c) && isalnum (c)) argument 114 # define ISALPHA(c) (ISASCII (c) && isalpha (c)) argument 115 # define ISCNTRL(c) (ISASCII (c) && iscntrl (c)) argument 116 # define ISLOWER(c) (ISASCII (c) && islower (c)) argument 182 __strchrnul (s, c) in __strchrnul() argument [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/include/ |
A D | ctype.h | 409 # define __isascii(c) (((c) & ~0x7f) == 0) argument 410 # define isascii(c) __isascii (c) argument
|
A D | stdint.h | 151 # define __INT64_C(c) c ## L argument 154 # define __INT64_C(c) c ## LL argument 302 # define INT8_C(c) c argument 303 # define INT16_C(c) c argument 304 # define INT32_C(c) c argument 306 # define INT64_C(c) c ## L argument 308 # define INT64_C(c) c ## LL argument 312 # define UINT8_C(c) c argument 313 # define UINT16_C(c) c argument 314 # define UINT32_C(c) c ## U argument [all …]
|
/l4re-core-master/libc_backends/lib/math/ |
A D | sincos.c | 30 void sincos(double x, double *s, double *c) in sincos() 36 void sincosf(float x, float *s, float *c) in sincosf()
|
/l4re-core-master/l4util/lib/src/ |
A D | list_alloc.c | 31 l4la_free_t *c = *first; in __check_overlap() local 55 l4la_free_t *c = *first; in __sanity_check_list() local 92 l4la_free_t *c = *first; in __merge() local 116 l4la_free_t **c = first; in l4la_free() local 151 l4la_free_t **c = first; in l4la_alloc() local 227 l4la_free_t *c = *first; in l4la_avail() local 242 l4la_free_t *c = *first; in l4la_dump() local
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads/ |
A D | ptcleanup.c | 25 #define __JMPBUF_UNWINDS(a,b,c) _JMPBUF_UNWINDS(a,b,c) argument 27 #define __JMPBUF_UNWINDS(a,b,c) _JMPBUF_UNWINDS(a,b) argument 46 struct _pthread_cleanup_buffer * c; in __pthread_cleanup_upto() local
|
/l4re-core-master/uclibc/lib/libpthread/src/ |
A D | ptcleanup.c | 27 #define __JMPBUF_UNWINDS(a,b,c) _JMPBUF_UNWINDS(a,b,c) argument 29 #define __JMPBUF_UNWINDS(a,b,c) _JMPBUF_UNWINDS(a,b) argument 50 struct _pthread_cleanup_buffer * c; in __pthread_cleanup_upto() local
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/bfin/ |
A D | crtreloc.c | 37 char c[4]; member 57 unsigned char *c = ptr; in reloc_range_indirect() local 69 unsigned char *c = ptr; in reloc_range_indirect() local
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/powerpc/ |
A D | memset.c | 25 static __inline__ int expand_byte_word(int c){ in expand_byte_word() 36 void *memset(void *to, int c, size_t n) in memset()
|
/l4re-core-master/cxx/lib/util/src/ |
A D | alloc_list.cc | 26 Elem **c = &_free; in free() local 66 Elem **c = &_free; in alloc() local
|
/l4re-core-master/moe/server/src/ |
A D | app_task.h | 40 void task_cap(L4::Cap<L4::Task> const &c) { _task = c; } in task_cap() 41 void thread_cap(L4::Cap<L4::Thread> const &c) { _thread = c; } in thread_cap()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/test/nptl/ |
A D | tst-tls5modc.c | 4 static __thread int c; variable
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-5/libsupc++/ |
A D | unwind-cxx.h | 240 __is_gxx_exception_class(_Unwind_Exception_Class c) in __is_gxx_exception_class() 256 __is_dependent_exception(_Unwind_Exception_Class c) in __is_dependent_exception() 262 __GXX_INIT_PRIMARY_EXCEPTION_CLASS(_Unwind_Exception_Class c) in __GXX_INIT_PRIMARY_EXCEPTION_CLASS() 275 __GXX_INIT_DEPENDENT_EXCEPTION_CLASS(_Unwind_Exception_Class c) in __GXX_INIT_DEPENDENT_EXCEPTION_CLASS() 288 __is_gxx_forced_unwind_class(_Unwind_Exception_Class c) in __is_gxx_forced_unwind_class() 301 __GXX_INIT_FORCED_UNWIND_CLASS(_Unwind_Exception_Class c) in __GXX_INIT_FORCED_UNWIND_CLASS() 343 __is_gxx_exception_class(_Unwind_Exception_Class c) in __is_gxx_exception_class() 352 __is_dependent_exception(_Unwind_Exception_Class c) in __is_dependent_exception() 357 #define __GXX_INIT_PRIMARY_EXCEPTION_CLASS(c) c = __gxx_primary_exception_class argument 358 #define __GXX_INIT_DEPENDENT_EXCEPTION_CLASS(c) \ argument
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-6/libsupc++/ |
A D | unwind-cxx.h | 240 __is_gxx_exception_class(_Unwind_Exception_Class c) in __is_gxx_exception_class() 256 __is_dependent_exception(_Unwind_Exception_Class c) in __is_dependent_exception() 262 __GXX_INIT_PRIMARY_EXCEPTION_CLASS(_Unwind_Exception_Class c) in __GXX_INIT_PRIMARY_EXCEPTION_CLASS() 275 __GXX_INIT_DEPENDENT_EXCEPTION_CLASS(_Unwind_Exception_Class c) in __GXX_INIT_DEPENDENT_EXCEPTION_CLASS() 288 __is_gxx_forced_unwind_class(_Unwind_Exception_Class c) in __is_gxx_forced_unwind_class() 301 __GXX_INIT_FORCED_UNWIND_CLASS(_Unwind_Exception_Class c) in __GXX_INIT_FORCED_UNWIND_CLASS() 343 __is_gxx_exception_class(_Unwind_Exception_Class c) in __is_gxx_exception_class() 352 __is_dependent_exception(_Unwind_Exception_Class c) in __is_dependent_exception() 357 #define __GXX_INIT_PRIMARY_EXCEPTION_CLASS(c) c = __gxx_primary_exception_class argument 358 #define __GXX_INIT_DEPENDENT_EXCEPTION_CLASS(c) \ argument
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/libsupc++/ |
A D | unwind-cxx.h | 240 __is_gxx_exception_class(_Unwind_Exception_Class c) in __is_gxx_exception_class() 256 __is_dependent_exception(_Unwind_Exception_Class c) in __is_dependent_exception() 262 __GXX_INIT_PRIMARY_EXCEPTION_CLASS(_Unwind_Exception_Class c) in __GXX_INIT_PRIMARY_EXCEPTION_CLASS() 275 __GXX_INIT_DEPENDENT_EXCEPTION_CLASS(_Unwind_Exception_Class c) in __GXX_INIT_DEPENDENT_EXCEPTION_CLASS() 288 __is_gxx_forced_unwind_class(_Unwind_Exception_Class c) in __is_gxx_forced_unwind_class() 301 __GXX_INIT_FORCED_UNWIND_CLASS(_Unwind_Exception_Class c) in __GXX_INIT_FORCED_UNWIND_CLASS() 343 __is_gxx_exception_class(_Unwind_Exception_Class c) in __is_gxx_exception_class() 352 __is_dependent_exception(_Unwind_Exception_Class c) in __is_dependent_exception() 357 #define __GXX_INIT_PRIMARY_EXCEPTION_CLASS(c) c = __gxx_primary_exception_class argument 358 #define __GXX_INIT_DEPENDENT_EXCEPTION_CLASS(c) \ argument
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-7/libsupc++/ |
A D | unwind-cxx.h | 240 __is_gxx_exception_class(_Unwind_Exception_Class c) in __is_gxx_exception_class() 256 __is_dependent_exception(_Unwind_Exception_Class c) in __is_dependent_exception() 262 __GXX_INIT_PRIMARY_EXCEPTION_CLASS(_Unwind_Exception_Class c) in __GXX_INIT_PRIMARY_EXCEPTION_CLASS() 275 __GXX_INIT_DEPENDENT_EXCEPTION_CLASS(_Unwind_Exception_Class c) in __GXX_INIT_DEPENDENT_EXCEPTION_CLASS() 288 __is_gxx_forced_unwind_class(_Unwind_Exception_Class c) in __is_gxx_forced_unwind_class() 301 __GXX_INIT_FORCED_UNWIND_CLASS(_Unwind_Exception_Class c) in __GXX_INIT_FORCED_UNWIND_CLASS() 343 __is_gxx_exception_class(_Unwind_Exception_Class c) in __is_gxx_exception_class() 352 __is_dependent_exception(_Unwind_Exception_Class c) in __is_dependent_exception() 357 #define __GXX_INIT_PRIMARY_EXCEPTION_CLASS(c) c = __gxx_primary_exception_class argument 358 #define __GXX_INIT_DEPENDENT_EXCEPTION_CLASS(c) \ argument
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/libsupc++/ |
A D | unwind-cxx.h | 240 __is_gxx_exception_class(_Unwind_Exception_Class c) in __is_gxx_exception_class() 256 __is_dependent_exception(_Unwind_Exception_Class c) in __is_dependent_exception() 262 __GXX_INIT_PRIMARY_EXCEPTION_CLASS(_Unwind_Exception_Class c) in __GXX_INIT_PRIMARY_EXCEPTION_CLASS() 275 __GXX_INIT_DEPENDENT_EXCEPTION_CLASS(_Unwind_Exception_Class c) in __GXX_INIT_DEPENDENT_EXCEPTION_CLASS() 288 __is_gxx_forced_unwind_class(_Unwind_Exception_Class c) in __is_gxx_forced_unwind_class() 301 __GXX_INIT_FORCED_UNWIND_CLASS(_Unwind_Exception_Class c) in __GXX_INIT_FORCED_UNWIND_CLASS() 343 __is_gxx_exception_class(_Unwind_Exception_Class c) in __is_gxx_exception_class() 352 __is_dependent_exception(_Unwind_Exception_Class c) in __is_dependent_exception() 357 #define __GXX_INIT_PRIMARY_EXCEPTION_CLASS(c) c = __gxx_primary_exception_class argument 358 #define __GXX_INIT_DEPENDENT_EXCEPTION_CLASS(c) \ argument
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/libsupc++/ |
A D | unwind-cxx.h | 240 __is_gxx_exception_class(_Unwind_Exception_Class c) in __is_gxx_exception_class() 256 __is_dependent_exception(_Unwind_Exception_Class c) in __is_dependent_exception() 262 __GXX_INIT_PRIMARY_EXCEPTION_CLASS(_Unwind_Exception_Class c) in __GXX_INIT_PRIMARY_EXCEPTION_CLASS() 275 __GXX_INIT_DEPENDENT_EXCEPTION_CLASS(_Unwind_Exception_Class c) in __GXX_INIT_DEPENDENT_EXCEPTION_CLASS() 288 __is_gxx_forced_unwind_class(_Unwind_Exception_Class c) in __is_gxx_forced_unwind_class() 301 __GXX_INIT_FORCED_UNWIND_CLASS(_Unwind_Exception_Class c) in __GXX_INIT_FORCED_UNWIND_CLASS() 343 __is_gxx_exception_class(_Unwind_Exception_Class c) in __is_gxx_exception_class() 352 __is_dependent_exception(_Unwind_Exception_Class c) in __is_dependent_exception() 357 #define __GXX_INIT_PRIMARY_EXCEPTION_CLASS(c) c = __gxx_primary_exception_class argument 358 #define __GXX_INIT_DEPENDENT_EXCEPTION_CLASS(c) \ argument
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/libsupc++/ |
A D | unwind-cxx.h | 240 __is_gxx_exception_class(_Unwind_Exception_Class c) in __is_gxx_exception_class() 256 __is_dependent_exception(_Unwind_Exception_Class c) in __is_dependent_exception() 262 __GXX_INIT_PRIMARY_EXCEPTION_CLASS(_Unwind_Exception_Class c) in __GXX_INIT_PRIMARY_EXCEPTION_CLASS() 275 __GXX_INIT_DEPENDENT_EXCEPTION_CLASS(_Unwind_Exception_Class c) in __GXX_INIT_DEPENDENT_EXCEPTION_CLASS() 288 __is_gxx_forced_unwind_class(_Unwind_Exception_Class c) in __is_gxx_forced_unwind_class() 301 __GXX_INIT_FORCED_UNWIND_CLASS(_Unwind_Exception_Class c) in __GXX_INIT_FORCED_UNWIND_CLASS() 343 __is_gxx_exception_class(_Unwind_Exception_Class c) in __is_gxx_exception_class() 352 __is_dependent_exception(_Unwind_Exception_Class c) in __is_dependent_exception() 357 #define __GXX_INIT_PRIMARY_EXCEPTION_CLASS(c) c = __gxx_primary_exception_class argument 358 #define __GXX_INIT_DEPENDENT_EXCEPTION_CLASS(c) \ argument
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-4.9/libsupc++/ |
A D | unwind-cxx.h | 240 __is_gxx_exception_class(_Unwind_Exception_Class c) in __is_gxx_exception_class() 256 __is_dependent_exception(_Unwind_Exception_Class c) in __is_dependent_exception() 262 __GXX_INIT_PRIMARY_EXCEPTION_CLASS(_Unwind_Exception_Class c) in __GXX_INIT_PRIMARY_EXCEPTION_CLASS() 275 __GXX_INIT_DEPENDENT_EXCEPTION_CLASS(_Unwind_Exception_Class c) in __GXX_INIT_DEPENDENT_EXCEPTION_CLASS() 288 __is_gxx_forced_unwind_class(_Unwind_Exception_Class c) in __is_gxx_forced_unwind_class() 301 __GXX_INIT_FORCED_UNWIND_CLASS(_Unwind_Exception_Class c) in __GXX_INIT_FORCED_UNWIND_CLASS() 343 __is_gxx_exception_class(_Unwind_Exception_Class c) in __is_gxx_exception_class() 352 __is_dependent_exception(_Unwind_Exception_Class c) in __is_dependent_exception() 357 #define __GXX_INIT_PRIMARY_EXCEPTION_CLASS(c) c = __gxx_primary_exception_class argument 358 #define __GXX_INIT_DEPENDENT_EXCEPTION_CLASS(c) \ argument
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/stdio/ |
A D | ungetc.c | 27 int ungetc(int c, register FILE *stream) in ungetc()
|
A D | putchar.c | 15 int putchar_unlocked(int c) in putchar_unlocked()
|