| /utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/ |
| H A D | ctype.h | 116 extern int tolower (int __c) __THROW; 119 extern int toupper (int __c) __THROW; 135 extern int isctype (int __c, int __mask) __THROW; 142 extern int isascii (int __c) __THROW; 146 extern int toascii (int __c) __THROW; 162 int __c = (c); \ 163 __res = __c < -128 || __c > 255 ? __c : (a)[__c]; \ 191 __NTH (tolower (int __c)) in __NTH() argument 193 return __c >= -128 && __c < 256 ? (*__ctype_tolower_loc ())[__c] : __c; in __NTH() 197 __NTH (toupper (int __c)) in __NTH() argument [all …]
|
| H A D | wchar.h | 267 extern wchar_t *wmemchr (__const wchar_t *__s, wchar_t __c, size_t __n) 285 extern wchar_t *wmemset (wchar_t *__s, wchar_t __c, size_t __n) __THROW; 300 extern wint_t btowc (int __c) __THROW; 304 extern int wctob (wint_t __c) __THROW; 333 extern wint_t __btowc_alias (int __c) __asm ("btowc"); 335 __NTH (btowc (int __c)) in __NTH() argument 336 { return (__builtin_constant_p (__c) && __c >= '\0' && __c <= '\x7f' in __NTH() 337 ? (wint_t) __c : __btowc_alias (__c)); } in __NTH() 339 extern int __wctob_alias (wint_t __c) __asm ("wctob"); 386 extern int wcwidth (wchar_t __c) __THROW;
|
| H A D | string.h | 52 int __c, size_t __n) 59 extern void *memset (void *__s, int __c, size_t __n) __THROW __nonnull ((1)); 66 extern void *memchr (__const void *__s, int __c, size_t __n) 73 extern void *rawmemchr (__const void *__s, int __c) 77 extern void *memrchr (__const void *__s, int __c, size_t __n) 167 extern char *strchr (__const char *__s, int __c) 170 extern char *strrchr (__const char *__s, int __c) 177 extern char *strchrnul (__const char *__s, int __c) 309 extern char *index (__const char *__s, int __c) 313 extern char *rindex (__const char *__s, int __c)
|
| H A D | stdio.h | 551 extern int fputc (int __c, FILE *__stream); 552 extern int putc (int __c, FILE *__stream); 558 extern int putchar (int __c); 572 extern int fputc_unlocked (int __c, FILE *__stream); 580 extern int putc_unlocked (int __c, FILE *__stream); 581 extern int putchar_unlocked (int __c); 671 extern int ungetc (int __c, FILE *__stream);
|
| H A D | strings.h | 48 extern char *index (__const char *__s, int __c) __THROW __attribute_pure__; 51 extern char *rindex (__const char *__s, int __c) __THROW __attribute_pure__;
|
| H A D | libio.h | 459 extern int _IO_putc (int __c, _IO_FILE *__fp);
|
| H A D | stdlib.h | 422 unsigned short int __c; /* Additive const. in congruential formula. */ member
|
| /utopia/UTPA2-700.0.x/projects/tools/lint/aeon_include/ |
| H A D | ctype.h | 8 int _EXFUN(isalnum, (int __c)); 9 int _EXFUN(isalpha, (int __c)); 10 int _EXFUN(iscntrl, (int __c)); 11 int _EXFUN(isdigit, (int __c)); 12 int _EXFUN(isgraph, (int __c)); 13 int _EXFUN(islower, (int __c)); 14 int _EXFUN(isprint, (int __c)); 15 int _EXFUN(ispunct, (int __c)); 16 int _EXFUN(isspace, (int __c)); 17 int _EXFUN(isupper, (int __c)); [all …]
|
| H A D | stdio.h | 422 int __c = __sgetc_raw(__p); in __sgetc() local 423 if ((__p->_flags & __SCLE) && (__c == '\r')) in __sgetc() 427 __c = __c2; in __sgetc() 431 return __c; in __sgetc()
|
| /utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/bits/ |
| H A D | string2.h | 119 __uint8_t __c = (__uint8_t) (c); \ 125 __u->__ui = __c * 0x01010101; \ 128 __u->__ui = __c * 0x01010101; \ 131 __u->__ui = __c * 0x01010101; \ 134 __u->__usi = (unsigned short int) __c * 0x0101; \ 136 __u->__uc = (unsigned char) __c; \ 140 __u->__ui = __c * 0x01010101; \ 143 __u->__ui = __c * 0x01010101; \ 146 __u->__ui = __c * 0x01010101; \ 149 __u->__usi = (unsigned short int) __c * 0x0101; \ [all …]
|
| H A D | stdio.h | 80 putchar (int __c) in putchar() argument 82 return _IO_putc (__c, stdout); in putchar() 89 fputc_unlocked (int __c, FILE *__stream) in fputc_unlocked() argument 91 return _IO_putc_unlocked (__c, __stream); in fputc_unlocked() 99 putc_unlocked (int __c, FILE *__stream) in putc_unlocked() argument 101 return _IO_putc_unlocked (__c, __stream); in putc_unlocked() 106 putchar_unlocked (int __c) in putchar_unlocked() argument 108 return _IO_putc_unlocked (__c, stdout); in putchar_unlocked() 155 int __c = _IO_getc_unlocked (__stream); \ 156 if (__c == EOF) \ [all …]
|
| H A D | wchar2.h | 121 extern wchar_t *__wmemset_chk (wchar_t *__s, wchar_t __c, size_t __n, 123 extern wchar_t *__REDIRECT_NTH (__wmemset_alias, (wchar_t *__s, wchar_t __c, 126 (wchar_t *__s, wchar_t __c, size_t __n, 132 __NTH (wmemset (wchar_t *__restrict __s, wchar_t __c, size_t __n)) in __NTH() argument 137 return __wmemset_chk (__s, __c, __n, __bos0 (__s) / sizeof (wchar_t)); in __NTH() 140 return __wmemset_chk_warn (__s, __c, __n, in __NTH() 143 return __wmemset_alias (__s, __c, __n); in __NTH()
|
| H A D | stdio2.h | 364 int __c = _IO_getc_unlocked (__stream); in fread_unlocked() local 365 if (__c == EOF) in fread_unlocked() 367 *__cptr++ = __c; in fread_unlocked()
|
| H A D | nan.h | 53 static union { unsigned char __c[4]; float __d; } __nan_union = { __nan_bytes }; member
|
| H A D | huge_valf.h | 41 typedef union { unsigned char __c[4]; float __f; } __huge_valf_t; member
|
| H A D | huge_val.h | 43 typedef union { unsigned char __c[8]; double __d; } __huge_val_t; member
|