Searched refs:_c (Results 1 - 25 of 31) sorted by relevance

12

/macosx-10.10/Libc-1044.1.2/include/
H A Dctype.h164 isascii(int _c) argument
166 return ((_c & ~0x7F) == 0);
171 __maskrune(__darwin_ct_rune_t _c, unsigned long _f) argument
173 return (int)_DefaultRuneLocale.__runetype[_c & 0xff] & (__uint32_t)_f;
178 __maskrune(__darwin_ct_rune_t _c, unsigned long _f) argument
180 /* _CurrentRuneLocale.__runetype[_c] is __uint32_t
182 * ___runetype(_c) is unsigned long
185 return (int)((_c < 0 || _c >= _CACHED_RUNES) ? (__uint32_t)___runetype(_c)
196 __istype(__darwin_ct_rune_t _c, unsigned long _f) argument
207 __isctype(__darwin_ct_rune_t _c, unsigned long _f) argument
219 __toupper(__darwin_ct_rune_t _c) argument
225 __tolower(__darwin_ct_rune_t _c) argument
238 __toupper(__darwin_ct_rune_t _c) argument
245 __tolower(__darwin_ct_rune_t _c) argument
259 __wcwidth(__darwin_ct_rune_t _c) argument
277 isalnum(int _c) argument
283 isalpha(int _c) argument
289 isblank(int _c) argument
295 iscntrl(int _c) argument
302 isdigit(int _c) argument
308 isgraph(int _c) argument
314 islower(int _c) argument
320 isprint(int _c) argument
326 ispunct(int _c) argument
332 isspace(int _c) argument
338 isupper(int _c) argument
345 isxdigit(int _c) argument
351 toascii(int _c) argument
357 tolower(int _c) argument
363 toupper(int _c) argument
370 digittoint(int _c) argument
376 ishexnumber(int _c) argument
382 isideogram(int _c) argument
388 isnumber(int _c) argument
394 isphonogram(int _c) argument
400 isrune(int _c) argument
406 isspecial(int _c) argument
[all...]
H A Dstdio.h397 __header_always_inline int __sputc(int _c, FILE *_p) { argument
398 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n'))
399 return (*_p->_p++ = _c);
401 return (__swbuf(_c, _p));
/macosx-10.10/ntp-92/libopts/
H A Dag-char-map.h101 #define IS_LOWER_CASE_CHAR(_c) is_opt_char_cat_char((_c), 0x00001)
102 #define IS_UPPER_CASE_CHAR(_c) is_opt_char_cat_char((_c), 0x00002)
103 #define IS_ALPHABETIC_CHAR(_c) is_opt_char_cat_char((_c), 0x00003)
104 #define IS_OCT_DIGIT_CHAR(_c) is_opt_char_cat_char((_c), 0x00004)
105 #define IS_DEC_DIGIT_CHAR(_c) is_opt_char_cat_char((_c),
[all...]
/macosx-10.10/ntp-92/sntp/libopts/
H A Dag-char-map.h101 #define IS_LOWER_CASE_CHAR(_c) is_opt_char_cat_char((_c), 0x00001)
102 #define IS_UPPER_CASE_CHAR(_c) is_opt_char_cat_char((_c), 0x00002)
103 #define IS_ALPHABETIC_CHAR(_c) is_opt_char_cat_char((_c), 0x00003)
104 #define IS_OCT_DIGIT_CHAR(_c) is_opt_char_cat_char((_c), 0x00004)
105 #define IS_DEC_DIGIT_CHAR(_c) is_opt_char_cat_char((_c),
[all...]
/macosx-10.10/libstdcxx-104.1/include/c++/4.2.1/bits/
H A Dconcept_check.h54 #define __glibcxx_class_requires2(_a,_b,_c)
55 #define __glibcxx_class_requires3(_a,_b,_c,_d)
56 #define __glibcxx_class_requires4(_a,_b,_c,_d,_e)
78 #define __glibcxx_class_requires3(_a,_b,_c,_C) \
79 _GLIBCXX_CLASS_REQUIRES3(_a, _b, _c, __gnu_cxx, _C);
80 #define __glibcxx_class_requires4(_a,_b,_c,_d,_C) \
81 _GLIBCXX_CLASS_REQUIRES4(_a, _b, _c, _d, __gnu_cxx, _C);
/macosx-10.10/postfix-255/postfix/src/global/
H A Drecord.h60 ssize_t _c, _l; \
61 for (_c = 1, _l = (buflen); (_l >>= 7U) != 0; _c++) \
63 (reclen) = 1 + _c + (buflen); \
/macosx-10.10/Libc-1044.1.2/include/xlocale/
H A D_ctype.h43 __maskrune_l(__darwin_ct_rune_t _c, unsigned long _f, locale_t _l) argument
47 * ___runetype_l(_c, _l) is unsigned long
50 return (int)((_c < 0 || _c >= _CACHED_RUNES) ? (__uint32_t)___runetype_l(_c, _l) :
51 __locale_ptr(_l)->__lc_ctype->_CurrentRuneLocale.__runetype[_c]) & (__uint32_t)_f;
63 __istype_l(__darwin_ct_rune_t _c, unsigned long _f, locale_t _l) argument
65 return !!(isascii(_c) ? (_DefaultRuneLocale.__runetype[_c] & _f)
66 : __maskrune_l(_c, _
70 __toupper_l(__darwin_ct_rune_t _c, locale_t _l) argument
77 __tolower_l(__darwin_ct_rune_t _c, locale_t _l) argument
84 __wcwidth_l(__darwin_ct_rune_t _c, locale_t _l) argument
[all...]
/macosx-10.10/OpenPAM-20/openpam/lib/
H A Dopenpam_impl.h162 int _c = (c); \
163 if (_c >= 0 && _c < PAM_NUM_ERRORS) \
164 openpam_log(PAM_LOG_LIBDEBUG, "returning %s", _pam_err_name[_c]); \
166 openpam_log(PAM_LOG_LIBDEBUG, "returning %d!", _c); \
167 return (_c); \
/macosx-10.10/Heimdal-398.1.2/lib/heimcred/
H A Dcommon.h91 #define HEIMCRED_CONST(_t,_c) extern const char * _c##xpc
H A Dheimcred.h103 #define HEIMCRED_CONST(_t,_c) extern const _t _c
H A Dcommon.c39 #define HEIMCRED_CONST(_t,_c) \
40 const _t _c = (_t)CFSTR(#_c); \
41 const char *_c##xpc = #_c
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/pt/tools/
H A Dregenerate_parsers.tcl72 -package [string map {:: _} $class]_c \
/macosx-10.10/bind9-45.101/bind9/
H A Dacconfig.h95 extern __inline int __sputaux(int _c, struct __sFILE *_p);
H A Dconfig.h.in95 extern __inline int __sputaux(int _c, struct __sFILE *_p);
/macosx-10.10/sudo-73/src/
H A Dmissing.h174 # define strchr(_s, _c) index(_s, _c)
177 # define strrchr(_s, _c) rindex(_s, _c)
/macosx-10.10/libdispatch-442.1.4/src/
H A Dtrace.h41 #define _dispatch_trace_callout(_c, _f, _dcc) do { \
47 void *_ctxt = (_c); \
56 #define _dispatch_trace_callout(_c, _f, _dcc) \
57 do { (void)(_c); (void)(_f); _dcc; } while (0)
/macosx-10.10/ruby-106/ruby/include/ruby/
H A Dwin32.h125 #define putc(_c, _stream) rb_w32_putc(_c, _stream)
126 #define putchar(_c) rb_w32_putc(_c, stdout)
129 #define fputc(_c, _stream) putc(_c, _stream)
131 #define fputchar(_c) putchar(_c)
/macosx-10.10/ruby-106/ruby/test/ruby/
H A Dtest_beginendblock.rb177 at_exit { callcc {|_c| c = _c } }
/macosx-10.10/Libc-1044.1.2/stdio/FreeBSD/
H A Dvfwscanf.c104 #define INCCL(_c) \
105 (cclcompl ? (wmemchr(ccls, (_c), ccle - ccls) == NULL) : \
106 (wmemchr(ccls, (_c), ccle - ccls) != NULL))
/macosx-10.10/xnu-2782.1.97/bsd/sys/
H A Dkauth.h759 # define KAUTH_DEBUG_CTX(_c) KAUTH_DEBUG("p = %p c = %p", _c->vc_proc, _c->vc_ucred)
/macosx-10.10/OpenSSL098-52/src/util/
H A Dbat.sh94 @a=grep(!/^e_.*_c$/,@a) if $no_cast;
/macosx-10.10/swig-12/Lib/perl5/
H A Dperlrun.swg287 char *_c = HvNAME(SvSTASH(SvRV(sv)));
288 tc = SWIG_TypeProxyCheck(_c,_t);
/macosx-10.10/smb-759.0/kernel/netsmb/
H A Dsmb_converter.c40 uint8_t _c; member in struct:_UCSTo8BitCharMap
235 else { *ch = divider->_c; return 1; }
/macosx-10.10/xnu-2782.1.97/bsd/net/classq/
H A Dclassq_sfb.c104 #define SFB_BINST(_sp, _l, _n, _c) \
105 (&(*(_sp)->sfb_bins)[_c].stats[_l][_n])
107 #define SFB_BINFT(_sp, _l, _n, _c) \
108 (&(*(_sp)->sfb_bins)[_c].freezetime[_l][_n])
/macosx-10.10/ksh-23/ksh/src/cmd/ksh93/edit/
H A Dvi.c76 static genchar _c; variable
80 # define isalph(v) ((_c=virtual[v])=='_'||isalnum(_c))

Completed in 412 milliseconds

12