/reactos/sdk/lib/crt/string/ |
H A D | ctype.c | 631 int __cdecl isalpha(int c) in isalpha() 639 int __cdecl isalnum(int c) in isalnum() 671 int __cdecl iscntrl(int c) in iscntrl() 695 int __cdecl isdigit(int c) in isdigit() 703 int __cdecl isgraph(int c) in isgraph() 711 int __cdecl islower(int c) in islower() 719 int __cdecl isprint(int c) in isprint() 727 int __cdecl ispunct(int c) in ispunct() 735 int __cdecl isspace(int c) in isspace() 743 int __cdecl isupper(int c) in isupper() [all …]
|
/reactos/sdk/include/ucrt/ |
H A D | ctype.h | 141 #define __ascii_isalpha(c) ( __chvalidchk(c, _ALPHA)) argument 142 #define __ascii_isdigit(c) ( __chvalidchk(c, _DIGIT)) argument 276 #define _tolower(c) ((c) - 'A' + 'a') argument 277 #define _toupper(c) ((c) - 'a' + 'A') argument 279 #define __isascii(c) ((unsigned)(c) < 0x80) argument 280 #define __toascii(c) ((c) & 0x7f) argument 284 #define __iscsymf(c) (isalpha(c) || ((c) == '_')) argument 285 #define __iscsym(c) (isalnum(c) || ((c) == '_')) argument 286 #define __iswcsymf(c) (iswalpha(c) || ((c) == '_')) argument 287 #define __iswcsym(c) (iswalnum(c) || ((c) == '_')) argument [all …]
|
/reactos/base/applications/calc/ |
H A D | fun_mpfr.c | 129 void rpn_sin(calc_number_t *c) in rpn_sin() 153 void rpn_cos(calc_number_t *c) in rpn_cos() 177 void rpn_tan(calc_number_t *c) in rpn_tan() 247 void rpn_int(calc_number_t *c) in rpn_int() 281 void rpn_not(calc_number_t *c) in rpn_not() 292 void rpn_pi(calc_number_t *c) in rpn_pi() 297 void rpn_2pi(calc_number_t *c) in rpn_2pi() 332 void rpn_exp(calc_number_t *c) in rpn_exp() 344 void rpn_ln(calc_number_t *c) in rpn_ln() 350 void rpn_log(calc_number_t *c) in rpn_log() [all …]
|
H A D | fun_ieee.c | 101 void rpn_sin(calc_number_t *c) in rpn_sin() 116 void rpn_cos(calc_number_t *c) in rpn_cos() 131 void rpn_tan(calc_number_t *c) in rpn_tan() 144 void rpn_asin(calc_number_t *c) in rpn_asin() 150 void rpn_acos(calc_number_t *c) in rpn_acos() 156 void rpn_atan(calc_number_t *c) in rpn_atan() 201 void rpn_int(calc_number_t *c) in rpn_int() 280 void rpn_not(calc_number_t *c) in rpn_not() 290 void rpn_pi(calc_number_t *c) in rpn_pi() 421 void rpn_ln(calc_number_t *c) in rpn_ln() [all …]
|
/reactos/sdk/tools/mkisofs/schilytools/include/schily/ |
H A D | wctype.h | 68 #define iswalnum(c) isalnum(c) argument 70 #define iswalpha(c) isalpha(c) argument 73 #define iswblank(c) isblank(c) argument 76 #define iswcntrl(c) iscntrl(c) argument 78 #define iswcntrl(c) iscntrl(c) argument 80 #define iswdigit(c) isdigit(c) argument 82 #define iswgraph(c) isgraph(c) argument 84 #define iswlower(c) islower(c) argument 86 #define iswprint(c) isprint(c) argument 88 #define iswpunct(c) ispunct(c) argument [all …]
|
/reactos/sdk/include/reactos/libs/libxml/ |
H A D | parserInternals.h | 105 #define IS_BYTE_CHAR(c) xmlIsChar_ch(c) argument 117 #define IS_CHAR(c) xmlIsCharQ(c) argument 125 #define IS_CHAR_CH(c) xmlIsChar_ch(c) argument 135 #define IS_BLANK(c) xmlIsBlankQ(c) argument 143 #define IS_BLANK_CH(c) xmlIsBlank_ch(c) argument 153 #define IS_BASECHAR(c) xmlIsBaseCharQ(c) argument 163 #define IS_DIGIT(c) xmlIsDigitQ(c) argument 171 #define IS_DIGIT_CH(c) xmlIsDigit_ch(c) argument 181 #define IS_COMBINING(c) xmlIsCombiningQ(c) argument 189 #define IS_COMBINING_CH(c) 0 argument [all …]
|
H A D | chvalid.h | 76 #define xmlIsBaseCharQ(c) (((c) < 0x100) ? \ argument 88 #define xmlIsBlank_ch(c) (((c) == 0x20) || \ argument 98 #define xmlIsBlankQ(c) (((c) < 0x100) ? \ argument 118 #define xmlIsCharQ(c) (((c) < 0x100) ? \ argument 132 #define xmlIsCombiningQ(c) (((c) < 0x100) ? \ argument 152 #define xmlIsDigitQ(c) (((c) < 0x100) ? \ argument 164 #define xmlIsExtender_ch(c) (((c) == 0xb7)) argument 172 #define xmlIsExtenderQ(c) (((c) < 0x100) ? \ argument 184 #define xmlIsIdeographicQ(c) (((c) < 0x100) ? \ argument 199 #define xmlIsPubidChar_ch(c) (xmlIsPubidChar_tab[(c)]) argument [all …]
|
/reactos/sdk/lib/crt/mbstring/ |
H A D | ismbc.c | 20 int _ismbcalnum( unsigned int c ) in _ismbcalnum() 35 int _ismbcalpha( unsigned int c ) in _ismbcalpha() 43 int _ismbcdigit( unsigned int c ) in _ismbcdigit() 51 int _ismbcprint( unsigned int c ) in _ismbcprint() 59 int _ismbcsymbol( unsigned int c ) in _ismbcsymbol() 67 int _ismbcspace( unsigned int c ) in _ismbcspace() 74 int _ismbclegal(unsigned int c) in _ismbclegal() 82 int _ismbcl0(unsigned int c) in _ismbcl0() 90 int _ismbcl1(unsigned int c) in _ismbcl1() 98 int _ismbcl2(unsigned int c) in _ismbcl2()
|
H A D | ischira.c | 7 int CDECL _ismbchira(unsigned int c) in _ismbchira() 20 int CDECL _ismbckata(unsigned int c) in _ismbckata() 35 unsigned int CDECL _mbctohira(unsigned int c) in _mbctohira() 47 unsigned int CDECL _mbctokata(unsigned int c) in _mbctokata()
|
H A D | mbsupr.c | 15 unsigned int _mbbtoupper(unsigned int c) in _mbbtoupper() 26 unsigned int _mbctoupper(unsigned int c) in _mbctoupper() 31 unsigned char *_mbset (unsigned char *string, int c) in _mbset() 61 int c; in _mbsupr() local
|
/reactos/sdk/lib/ucrt/stdio/ |
H A D | fputc.cpp | 12 extern "C" int __cdecl _fputc_nolock_internal(int const c, FILE* const public_stream, __crt_cached_… in _fputc_nolock_internal() 31 extern "C" int __cdecl _fputc_nolock(int const c, FILE* const public_stream) in _fputc_nolock() 37 extern "C" int __cdecl _putc_nolock(int const c, FILE* const stream) in _putc_nolock() 46 static int __cdecl _fputc_internal(int const c, FILE* const stream, __crt_cached_ptd_host& ptd) in _fputc_internal() 70 extern "C" int __cdecl fputc(int const c, FILE* const stream) in fputc() 79 extern "C" int __cdecl putc(int const c, FILE* const stream) in putc() 87 extern "C" int __cdecl _fputchar(int const c) in _fputchar() 95 extern "C" int __cdecl putchar(int const c) in putchar()
|
H A D | fputwc.cpp | 14 static wint_t __cdecl fputwc_binary_nolock(wchar_t const c, __crt_stdio_stream const stream, __crt_… in fputwc_binary_nolock() 34 extern "C" wint_t __cdecl _fputwc_nolock_internal(wchar_t const c, FILE* const public_stream, __crt… in _fputwc_nolock_internal() 83 extern "C" wint_t __cdecl _fputwc_nolock(wchar_t const c, FILE* const public_stream) in _fputwc_nolock() 89 extern "C" wint_t __cdecl _putwc_nolock(wchar_t const c, FILE* const stream) in _putwc_nolock() 98 static wint_t __cdecl _fputwc_internal(wchar_t const c, FILE* const stream, __crt_cached_ptd_host& … in _fputwc_internal() 118 extern "C" wint_t __cdecl fputwc(wchar_t const c, FILE* const stream) in fputwc() 127 extern "C" wint_t __cdecl putwc(wchar_t const c, FILE* const stream) in putwc() 135 extern "C" wint_t __cdecl _fputwchar(wchar_t const c) in _fputwchar() 143 extern "C" wint_t __cdecl putwchar(wchar_t const c) in putwchar()
|
/reactos/sdk/tools/mkisofs/schilytools/libschily/ |
H A D | astoll.c | 38 #define is_space(c) ((c) == ' ' || (c) == '\t') argument 39 #define is_digit(c) ((c) >= '0' && (c) <= '9') argument 40 #define is_hex(c) (\ argument 44 #define is_lower(c) ((c) >= 'a' && (c) <= 'z') argument 45 #define is_upper(c) ((c) >= 'A' && (c) <= 'Z') argument 46 #define to_lower(c) (((c) >= 'A' && (c) <= 'Z') ? (c) - 'A'+'a' : (c)) argument 74 register char c; local
|
/reactos/drivers/network/tcpip/lwip/src/include/lwip/ |
H A D | arch.h | 220 #define lwip_isdigit(c) lwip_in_range((c), '0', '9') argument 222 #define lwip_islower(c) lwip_in_range((c), 'a', 'z') argument 224 #define lwip_isupper(c) lwip_in_range((c), 'A', 'Z') argument 225 #define lwip_tolower(c) (lwip_isupper(c) ? (c) - 'A' + 'a' : c) argument 229 #define lwip_isdigit(c) isdigit((unsigned char)(c)) argument 230 #define lwip_isxdigit(c) isxdigit((unsigned char)(c)) argument 231 #define lwip_islower(c) islower((unsigned char)(c)) argument 232 #define lwip_isspace(c) isspace((unsigned char)(c)) argument 233 #define lwip_isupper(c) isupper((unsigned char)(c)) argument 234 #define lwip_tolower(c) tolower((unsigned char)(c)) argument [all …]
|
/reactos/drivers/bus/acpi/acpica/include/ |
H A D | acclib.h | 68 #define isdigit(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_DI)) argument 69 #define isspace(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_SP)) argument 70 #define isxdigit(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_XD)) argument 71 #define isupper(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_UP)) argument 72 #define islower(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_LO)) argument 73 #define isprint(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_LO | _ACPI_UP | _ACPI_DI | _ACPI_X… argument 74 #define isalpha(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_LO | _ACPI_UP)) argument 249 #define putchar(c) fputc(stdout, c) argument 250 #define getchar(c) fgetc(stdin) argument
|
/reactos/sdk/lib/ucrt/convert/ |
H A D | tolower_toupper.cpp | 17 static __forceinline int __cdecl common_tox_win_lookup(int const c, DWORD const map_flag, _locale_t… in common_tox_win_lookup() 66 static __forceinline int __cdecl common_tox_l(int const c, DWORD const map_flag, _locale_t const lo… in common_tox_l() 83 extern "C" int __cdecl _tolower_l(int const c, _locale_t const locale) in _tolower_l() 88 extern "C" int __cdecl tolower(int const c) in tolower() 102 extern "C" int __cdecl _toupper_l(int const c, _locale_t const locale) in _toupper_l() 107 extern "C" int __cdecl toupper(int const c) in toupper()
|
H A D | isctype.cpp | 34 extern "C" int __cdecl _chvalidator(int const c, int const mask) in _chvalidator() 40 extern "C" int __cdecl _chvalidator_l(_locale_t const locale, int const c, int const mask) in _chvalidator_l() 62 extern "C" int __cdecl _isctype_l(int const c, int const mask, _locale_t const locale) in _isctype_l() 108 extern "C" int __cdecl _isctype(int const c, int const mask) in _isctype()
|
/reactos/sdk/lib/ucrt/mbstring/ |
H A D | ismbknj.cpp | 35 unsigned int c, in _ismbchira_l() 45 unsigned int c in _ismbchira() 69 unsigned int c, in _ismbckata_l() 78 unsigned int c in _ismbckata() 104 unsigned int c, in _ismbcsymbol_l()
|
H A D | ismbpunc.cpp | 39 extern "C" int __cdecl _ismbcpunct_l(unsigned int const c, _locale_t const locale) in _ismbcpunct_l() 51 extern "C" int __cdecl _ismbcpunct(unsigned int const c) in _ismbcpunct() 77 extern "C" int __cdecl _ismbcblank_l(unsigned int const c, _locale_t const locale) in _ismbcblank_l() 89 extern "C" int __cdecl _ismbcblank(unsigned int const c) in _ismbcblank()
|
H A D | mbclevel.cpp | 37 unsigned int c, in _ismbcl0_l() 74 unsigned int c, in _ismbcl1_l() 111 unsigned int c, in _ismbcl2_l() 123 unsigned int c in _ismbcl2()
|
/reactos/dll/win32/msvcrt/ |
H A D | stubs.c | 39 unsigned int c) in _ismbbkprint() 194 _In_ int c, in _isalnum_l() 206 _In_ int c, in _isalpha_l() 218 _In_ int c, in _iscntrl_l() 230 _In_ int c, in _isdigit_l() 242 _In_ int c, in _isgraph_l() 254 _In_ int c, in _islower_l() 266 _In_ int c, in _isprint_l() 278 _In_ int c, in _isspace_l() 290 _In_ int c, in _isupper_l() [all …]
|
/reactos/sdk/include/psdk/ |
H A D | mapival.h | 45 #define BAD_STANDARD_OBJ(a,b,c,d) FALSE argument 47 #define FBadQueryInterface(a,b,c) FALSE argument 50 #define FBadGetLastError(a,b,c,d) FALSE argument 52 #define FBadGetProps(a,b,c,d) FALSE argument 54 #define FBadOpenProperty(a,b,c,d,e,f) FALSE argument 55 #define FBadSetProps(a,b,c,d) FALSE argument 56 #define FBadDeleteProps(a,b,c) FALSE argument 57 #define FBadCopyTo(a,b,c,d,e,f,g,h,i,j) FALSE argument 58 #define FBadCopyProps(a,b,c,d,e,f,g,h) FALSE argument 59 #define FBadGetNamesFromIDs(a,b,c,d,e,f) FALSE argument [all …]
|
/reactos/drivers/wdm/audio/hdaudbus/ |
H A D | hda_codec_defs.h | 218 #define AUDIO_CAP_CHANNEL_COUNT(c) \ argument 230 #define AMP_CAP_STEP_SIZE(c) ((((c & AMP_CAP_STEP_SIZE_MASK) \ argument 232 #define AMP_CAP_NUM_STEPS(c) ((c & AMP_CAP_NUM_STEPS_MASK) \ argument 234 #define AMP_CAP_OFFSET(c) (c & AMP_CAP_OFFSET_MASK) argument 255 #define PIN_CAP_IS_OUTPUT(c) ((c & PIN_CAP_OUTPUT) != 0) argument 256 #define PIN_CAP_IS_INPUT(c) ((c & PIN_CAP_INPUT) != 0) argument 257 #define PIN_CAP_IS_BALANCE(c) ((c & PIN_CAP_BALANCE) != 0) argument 258 #define PIN_CAP_IS_HDMI(c) ((c & PIN_CAP_HDMI) != 0) argument 262 #define PIN_CAP_IS_EAPD_CAP(c) ((c & PIN_CAP_EAPD_CAP) != 0) argument 263 #define PIN_CAP_IS_DP(c) ((c & PIN_CAP_DP) != 0) argument [all …]
|
/reactos/sdk/include/reactos/libs/libmpg123/ |
H A D | debug.h | 63 #define debug3(s, a, b, c) argument 64 #define debug4(s, a, b, c, d) argument 65 #define debug5(s, a, b, c, d, e) argument 66 #define debug6(s, a, b, c, d, e, f) argument 104 #define warning3(s, a, b, c) argument 105 #define warning4(s, a, b, c, d) argument 106 #define warning5(s, a, b, c, d, e) argument 145 #define error3(s, a, b, c) argument 146 #define error4(s, a, b, c, d) argument 147 #define error5(s, a, b, c, d, e) argument [all …]
|
/reactos/dll/opengl/glu32/src/libnurbs/internals/ |
H A D | curvelist.cc | 63 for( Curve *c = upper.curve; c; c = c->next ) in Curvelist() local 78 Curve *c = curve; in ~Curvelist() local 87 for( Curve *c = curve; c; c = c->next ) in cullCheck() local 97 Curve *c; in getstepsize() local
|