/haiku/src/system/libroot/posix/locale/ |
H A D | ctype.cpp | 44 isalnum(int c) in isalnum() 54 isalpha(int c) in isalpha() 64 isascii(int c) in isascii() 72 isblank(int c) in isblank() 82 iscntrl(int c) in iscntrl() 92 isdigit(int c) in isdigit() 102 isgraph(int c) in isgraph() 112 islower(int c) in islower() 122 isprint(int c) in isprint() 132 ispunct(int c) in ispunct() [all …]
|
H A D | ctype_l.cpp | 59 isalnum_l(int c, locale_t l) in isalnum_l() 69 isalpha_l(int c, locale_t l) in isalpha_l() 79 isblank_l(int c, locale_t l) in isblank_l() 89 iscntrl_l(int c, locale_t l) in iscntrl_l() 99 isdigit_l(int c, locale_t l) in isdigit_l() 109 isgraph_l(int c, locale_t l) in isgraph_l() 119 islower_l(int c, locale_t l) in islower_l() 129 isprint_l(int c, locale_t l) in isprint_l() 139 ispunct_l(int c, locale_t l) in ispunct_l() 149 isspace_l(int c, locale_t l) in isspace_l() [all …]
|
/haiku/src/kits/locale/ |
H A D | UnicodeChar.cpp | 25 BUnicodeChar::Type(uint32 c) in Type() 34 BUnicodeChar::IsAlpha(uint32 c) in IsAlpha() 45 BUnicodeChar::IsAlNum(uint32 c) in IsAlNum() 53 BUnicodeChar::IsLower(uint32 c) in IsLower() 61 BUnicodeChar::IsUpper(uint32 c) in IsUpper() 70 BUnicodeChar::IsTitle(uint32 c) in IsTitle() 81 BUnicodeChar::IsDigit(uint32 c) in IsDigit() 94 BUnicodeChar::IsHexDigit(uint32 c) in IsHexDigit() 105 BUnicodeChar::IsDefined(uint32 c) in IsDefined() 115 BUnicodeChar::IsBase(uint32 c) in IsBase() [all …]
|
/haiku/headers/posix/ |
H A D | ctype.h | 74 #define __isctype(c, type) \ argument 77 #define tolower(c) ((int)(*__ctype_tolower_loc())[(int)(c)]) argument 78 #define toupper(c) ((int)(*__ctype_toupper_loc())[(int)(c)]) argument 80 #define isascii(c) (((c) & ~0x7f) == 0) /* ASCII characters have bit 8 cleared */ argument 81 #define toascii(c) ((c) & 0x7f) /* Clear higher bits */ argument 83 #define _tolower(c) tolower(c) argument 84 #define _toupper(c) toupper(c) argument 86 #define isalnum(c) __isctype((c), _ISalnum) argument 87 #define isalpha(c) __isctype((c), _ISalpha) argument 88 #define isblank(c) __isctype((c), _ISblank) argument [all …]
|
/haiku/src/system/libroot/posix/glibc/ctype/ |
H A D | ctype.h | 84 #define __isctype(c, type) \ argument 87 #define __isascii(c) (((c) & ~0x7f) == 0) /* If C is a 7 bit value. */ argument 88 #define __toascii(c) ((c) & 0x7f) /* Mask off high bits. */ argument 137 #define __tobody(c, f, a, args) \ argument 155 # define isalnum(c) __isctype((c), _ISalnum) argument 156 # define isalpha(c) __isctype((c), _ISalpha) argument 157 # define iscntrl(c) __isctype((c), _IScntrl) argument 158 # define isdigit(c) __isctype((c), _ISdigit) argument 159 # define islower(c) __isctype((c), _ISlower) argument 160 # define isgraph(c) __isctype((c), _ISgraph) argument [all …]
|
/haiku/src/tests/system/libroot/posix/ |
H A D | tst-btowc.c | 30 ok_test(int c, wint_t expwc) in ok_test() 47 fail_test(int c) in fail_test() 90 int c; in main() local 111 int c; in main() local 132 int c; in main() local 150 int c; in main() local 184 int c; in main() local
|
/haiku/src/libs/compat/freebsd_network/compat/sys/ |
H A D | _bus_macros.h | 41 #define bus_read_multi_1(r, o, d, c) \ argument 43 #define bus_read_region_1(r, o, d, c) \ argument 45 #define bus_set_multi_1(r, o, v, c) \ argument 47 #define bus_set_region_1(r, o, v, c) \ argument 51 #define bus_write_multi_1(r, o, d, c) \ argument 53 #define bus_write_region_1(r, o, d, c) \ argument 57 #define bus_read_multi_stream_1(r, o, d, c) \ argument 59 #define bus_read_region_stream_1(r, o, d, c) \ argument 61 #define bus_set_multi_stream_1(r, o, v, c) \ argument 63 #define bus_set_region_stream_1(r, o, v, c) \ argument [all …]
|
H A D | counter.h | 36 counter_u64_free(counter_u64_t c) in counter_u64_free() 43 counter_u64_add(counter_u64_t c, int64_t v) in counter_u64_add() 50 counter_u64_fetch(counter_u64_t c) in counter_u64_fetch() 57 counter_u64_zero(counter_u64_t c) in counter_u64_zero() 78 counter_u64_add_protected(counter_u64_t c, int64_t v) in counter_u64_add_protected()
|
H A D | callout.h | 26 #define callout_reset_on(c, to_ticks, fn, arg, cpu) \ argument 29 #define callout_drain(c) _callout_stop_safe(c, 1) argument 30 #define callout_stop(c) _callout_stop_safe(c, 0) argument
|
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/include/ |
H A D | acclib.h | 176 #define isdigit(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_DI)) argument 177 #define isspace(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_SP)) argument 178 #define isxdigit(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_XD)) argument 179 #define isupper(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_UP)) argument 180 #define islower(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_LO)) argument 181 #define isprint(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_LO | _ACPI_UP | _ACPI_DI | _ACPI_X… argument 182 #define isalpha(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_LO | _ACPI_UP)) argument 357 #define putchar(c) fputc(stdout, c) argument 358 #define getchar(c) fgetc(stdin) argument
|
/haiku/src/apps/haikudepot/util/ |
H A D | ValidationUtils.cpp | 25 hd_is_email_domain_or_mailbox_part(int c) in hd_is_email_domain_or_mailbox_part() 37 hd_is_lower_alnum(int c) in hd_is_lower_alnum() 46 hd_str_all_matches_fn(const BString& string, int (*hd_match_c)(int c)) in hd_str_all_matches_fn() 48 const char* c = string.String(); in hd_str_all_matches_fn() local 62 const char* c = string.String(); in hd_str_count_upper_case() local 76 const char* c = string.String(); in hd_str_count_digit() local 103 const char* c = value.String(); in IsValidEmail() local
|
/haiku/src/system/libnetwork/netresolv/resolv/ |
H A D | res_comp.c | 155 #define hyphenchar(c) ((c) == 0x2d || (c) == 0x5f) argument 156 #define bslashchar(c) ((c) == 0x5c) argument 157 #define periodchar(c) ((c) == PERIOD) argument 158 #define asterchar(c) ((c) == 0x2a) argument 159 #define alphachar(c) (((c) >= 0x41 && (c) <= 0x5a) \ argument 161 #define digitchar(c) ((c) >= 0x30 && (c) <= 0x39) argument 163 #define borderchar(c) (alphachar(c) || digitchar(c)) argument 164 #define middlechar(c) (borderchar(c) || hyphenchar(c)) argument 165 #define domainchar(c) ((c) > 0x20 && (c) < 0x7f) argument
|
/haiku/src/libs/compat/freebsd_network/ |
H A D | callout.cpp | 37 invoke_callout(callout *c, struct mtx *c_mtx) in invoke_callout() 69 struct callout* c = NULL; in callout_thread() local 178 callout_init_mtx(struct callout *c, struct mtx *mtx, int flags) in callout_init_mtx() 190 _callout_stop(struct callout *c, bool drain, bool locked = false) in _callout_stop() 242 callout_reset(struct callout *c, int _ticks, void (*func)(void *), void *arg) in callout_reset() 279 _callout_stop_safe(struct callout *c, int safe) in _callout_stop_safe() 296 callout_pending(struct callout *c) in callout_pending() 303 callout_active(struct callout *c) in callout_active()
|
/haiku/src/add-ons/kernel/drivers/audio/hda/ |
H A D | hda_codec_defs.h | 169 #define SUB_NODE_COUNT_TOTAL(c) ((c & SUB_NODE_COUNT_TOTAL_MASK) \ argument 171 #define SUB_NODE_COUNT_START(c) ((c & SUB_NODE_COUNT_START_MASK) \ argument 189 #define AUDIO_GROUP_CAP_OUTPUT_DELAY(c) ((c & AUDIO_GROUP_CAP_OUTPUT_DELAY_MASK) \ argument 191 #define AUDIO_GROUP_CAP_INPUT_DELAY(c) ((c & AUDIO_GROUP_CAP_INPUT_DELAY_MASK) \ argument 193 #define AUDIO_GROUP_CAP_BEEPGEN(c) ((c & AUDIO_GROUP_CAP_BEEPGEN_MASK) \ argument 219 #define AUDIO_CAP_CHANNEL_COUNT(c) \ argument 231 #define AMP_CAP_STEP_SIZE(c) ((((c & AMP_CAP_STEP_SIZE_MASK) \ argument 233 #define AMP_CAP_NUM_STEPS(c) ((c & AMP_CAP_NUM_STEPS_MASK) \ argument 235 #define AMP_CAP_OFFSET(c) (c & AMP_CAP_OFFSET_MASK) argument 255 #define PIN_CAP_IS_PRES_DETECT_CAP(c) ((c & PIN_CAP_PRES_DETECT) != 0) argument [all …]
|
/haiku/src/tests/kits/net/cookie/ |
H A D | cookie_test.cpp | 27 for (int32 c = 0; c < charNum; c++) in stressTest() local 33 for (int32 c = 0; c < 3; c++) in stressTest() local 42 BNetworkCookie c; in stressTest() local 56 const BNetworkCookie* c; in stressTest() local 97 const BNetworkCookie* c; in main() local
|
/haiku/src/system/libnetwork/netresolv/dst/ |
H A D | md5_locl.h | 72 #define c2l(c,l) (l = ((unsigned long)(*((c)++))) , \ argument 78 #define p_c2l(c,l,n) { \ argument 89 #define c2l_p(c,l,n) { \ argument 100 #define p_c2l_p(c,l,sc,len) { \ argument 112 #define l2c(l,c) (*((c)++)=(unsigned char)(((l) )&0xff), \ argument 119 #define l2cn(l1,l2,c,n) { \ argument 173 #define R0(a,b,c,d,k,s,t) { \ argument 178 #define R1(a,b,c,d,k,s,t) { \ argument 183 #define R2(a,b,c,d,k,s,t) { \ argument 188 #define R3(a,b,c,d,k,s,t) { \ argument
|
/haiku/src/add-ons/kernel/drivers/network/wlan/realtekwifi/dev/rtwn/rtl8812a/ |
H A D | r12a_chan.c | 64 struct ieee80211_channel *c, uint8_t power[RTWN_RIDX_COUNT]) in r12a_write_txpower() 115 r12a_get_power_group(struct rtwn_softc *sc, struct ieee80211_channel *c) in r12a_get_power_group() 163 struct ieee80211_channel *c, uint8_t power[RTWN_RIDX_COUNT]) in r12a_get_txpower() 254 r12a_set_txpower(struct rtwn_softc *sc, struct ieee80211_channel *c) in r12a_set_txpower() 269 r12a_fix_spur(struct rtwn_softc *sc, struct ieee80211_channel *c) in r12a_fix_spur() 303 r12a_set_band(struct rtwn_softc *sc, struct ieee80211_channel *c) in r12a_set_band() 355 r12a_set_chan(struct rtwn_softc *sc, struct ieee80211_channel *c) in r12a_set_chan()
|
/haiku/headers/libs/agg/ |
H A D | agg_renderer_mclip.h | 121 void clear(const color_type& c) in clear() 127 void copy_pixel(int x, int y, const color_type& c) in copy_pixel() 142 void blend_pixel(int x, int y, const color_type& c, cover_type cover) in blend_pixel() 172 void copy_hline(int x1, int y, int x2, const color_type& c) in copy_hline() 183 void copy_vline(int x, int y1, int y2, const color_type& c) in copy_vline() 195 const color_type& c, cover_type cover) in blend_hline() 207 const color_type& c, cover_type cover) in blend_vline() 218 void copy_bar(int x1, int y1, int x2, int y2, const color_type& c) in copy_bar() 230 const color_type& c, cover_type cover) in blend_bar() 242 const color_type& c, const cover_type* covers) in blend_solid_hspan() [all …]
|
H A D | agg_pixfmt_transposer.h | 49 AGG_INLINE void copy_pixel(int x, int y, const color_type& c) in copy_pixel() 56 const color_type& c, in blend_pixel() 65 const color_type& c) in copy_hline() 73 const color_type& c) in copy_vline() 81 const color_type& c, in blend_hline() 90 const color_type& c, in blend_vline() 99 const color_type& c, in blend_solid_hspan() 108 const color_type& c, in blend_solid_vspan()
|
/haiku/src/apps/gradients/ |
H A D | GradientsView.cpp | 65 rgb_color c; in DrawLinear() local 150 rgb_color c; in DrawRadialFocus() local 195 rgb_color c; in DrawDiamond() local 240 rgb_color c; in DrawConic() local
|
/haiku/src/system/libroot/posix/glibc/libio/ |
H A D | fmemopen.c | 95 fmemopen_cookie_t *c; in fmemopen_read() local 119 fmemopen_cookie_t *c; in fmemopen_write() local 154 fmemopen_cookie_t *c; in fmemopen_seek() local 188 fmemopen_cookie_t *c; in fmemopen_close() local 204 fmemopen_cookie_t *c; in fmemopen() local
|
/haiku/src/servers/app/drawing/Painter/ |
H A D | agg_renderer_region.h | 201 void clear(const color_type& c) in clear() 207 void copy_pixel(int x, int y, const color_type& c) in copy_pixel() 224 void blend_pixel(int x, int y, const color_type& c, cover_type cover) in blend_pixel() 258 void copy_hline(int x1, int y, int x2, const color_type& c) in copy_hline() 272 void copy_vline(int x, int y1, int y2, const color_type& c) in copy_vline() 287 const color_type& c, cover_type cover) in blend_hline() 302 const color_type& c, cover_type cover) in blend_vline() 316 void copy_bar(int x1, int y1, int x2, int y2, const color_type& c) in copy_bar() 331 const color_type& c, cover_type cover) in blend_bar() 347 const color_type& c, const cover_type* covers) in blend_solid_hspan() [all …]
|
/haiku/src/kits/shared/ |
H A D | Json.cpp | 91 status_t AppendCharacter(char c) in AppendCharacter() 115 status_t AppendUnicodeCharacter(uint32 c) in AppendUnicodeCharacter() 242 void PushbackChar(char c) in PushbackChar() 320 BJson::NextChar(JsonParseContext& jsonParseContext, char* c) in NextChar() 346 BJson::NextNonWhitespaceChar(JsonParseContext& jsonParseContext, char* c) in NextNonWhitespaceChar() 371 char c; in ParseAny() local 439 char c; in ParseObjectNameValuePair() local 502 char c; in ParseObject() local 562 char c; in ParseArray() local 658 char c; in ParseStringEscapeSequence() local [all …]
|
/haiku/src/libs/bsd/ |
H A D | vis.c | 102 #define iscgraph(c) isgraph_l(c, LC_C_LOCALE) argument 105 #define iscgraph(c) isgraph(c) argument 109 iscgraph(int c) { in iscgraph() 122 #define ISGRAPH(flags, c) \ argument 125 #define iswoctal(c) (((u_char)(c)) >= L'0' && ((u_char)(c)) <= L'7') argument 126 #define iswwhite(c) (c == L' ' || c == L'\t' || c == L'\n') argument 127 #define iswsafe(c) (c == L'\b' || c == BELL || c == L'\r') argument 128 #define xtoa(c) L"0123456789abcdef"[c] argument 129 #define XTOA(c) L"0123456789ABCDEF"[c] argument 164 do_hvis(wchar_t *dst, wint_t c, int flags, wint_t nextc, const wchar_t *extra) in do_hvis() [all …]
|
/haiku/src/libs/stdc++/legacy/ |
H A D | sinst.cc | 39 typedef char c; typedef 42 typedef wchar_t c; typedef
|