Home
last modified time | relevance | path

Searched defs:c (Results 1 – 25 of 3290) sorted by relevance

12345678910>>...132

/onnv-gate/usr/src/head/iso/
H A Dctype_iso.h118 inline int isalpha(int c) { return (__ctype_mask[c] & _ISALPHA); } in isalpha()
119 inline int isupper(int c) { return (__ctype_mask[c] & _ISUPPER); } in isupper()
120 inline int islower(int c) { return (__ctype_mask[c] & _ISLOWER); } in islower()
121 inline int isdigit(int c) { return (__ctype_mask[c] & _ISDIGIT); } in isdigit()
122 inline int isxdigit(int c) { return (__ctype_mask[c] & _ISXDIGIT); } in isxdigit()
123 inline int isalnum(int c) { return (__ctype_mask[c] & _ISALNUM); } in isalnum()
124 inline int isspace(int c) { return (__ctype_mask[c] & _ISSPACE); } in isspace()
125 inline int ispunct(int c) { return (__ctype_mask[c] & _ISPUNCT); } in ispunct()
126 inline int isprint(int c) { return (__ctype_mask[c] & _ISPRINT); } in isprint()
127 inline int isgraph(int c) { return (__ctype_mask[c] & _ISGRAPH); } in isgraph()
[all …]
/onnv-gate/usr/src/cmd/ssh/libssh/common/
H A Dnchan.c84 chan_set_istate(Channel *c, u_int next) in chan_set_istate()
93 chan_set_ostate(Channel *c, u_int next) in chan_set_ostate()
107 chan_rcvd_oclose1(Channel *c) in chan_rcvd_oclose1()
131 chan_read_failed(Channel *c) in chan_read_failed()
146 chan_ibuf_empty(Channel *c) in chan_ibuf_empty()
172 chan_rcvd_ieof1(Channel *c) in chan_rcvd_ieof1()
189 chan_write_failed1(Channel *c) in chan_write_failed1()
210 chan_obuf_empty(Channel *c) in chan_obuf_empty()
232 chan_send_ieof1(Channel *c) in chan_send_ieof1()
249 chan_send_oclose1(Channel *c) in chan_send_oclose1()
[all …]
/onnv-gate/usr/src/lib/libbc/libc/gen/common/
H A Dctype_.c89 int isalpha(c) in isalpha() argument
95 int isupper(c) in isupper() argument
101 int islower(c) in islower() argument
107 int isdigit(c) in isdigit() argument
113 int isxdigit(c) in isxdigit() argument
120 int isspace(c) in isspace() argument
127 int ispunct(c) in ispunct() argument
134 int isalnum(c) in isalnum() argument
141 int isprint(c) in isprint() argument
148 int isgraph(c) in isgraph() argument
[all …]
/onnv-gate/usr/src/lib/libbc/inc/5include/
H A Dctype.h64 #define isalnum(c) ((_ctype_ + 1)[c] & (_U | _L | _N)) argument
65 #define isalpha(c) ((_ctype_ + 1)[c] & (_U | _L)) argument
67 #define isascii(c) (!((c) & ~0177)) argument
69 #define iscntrl(c) ((_ctype_ + 1)[c] & _C) argument
70 #define isdigit(c) ((_ctype_ + 1)[c] & _N) argument
71 #define isgraph(c) ((_ctype_ + 1)[c] & (_P | _U | _L | _N)) argument
72 #define islower(c) ((_ctype_ + 1)[c] & _L) argument
73 #define isprint(c) ((_ctype_ + 1)[c] & (_P | _U | _L | _N | _B)) argument
74 #define ispunct(c) ((_ctype_ + 1)[c] & _P) argument
75 #define isspace(c) ((_ctype_ + 1)[c] & _S) argument
[all …]
/onnv-gate/usr/src/lib/libast/common/regex/
H A Dregclass.c75 static int Isalnum(int c) { return iswalnum(c); } in Isalnum()
76 static int Isalpha(int c) { return iswalpha(c); } in Isalpha()
77 static int Isblank(int c) { return iswblank(c); } in Isblank()
78 static int Iscntrl(int c) { return iswcntrl(c); } in Iscntrl()
79 static int Isdigit(int c) { return iswdigit(c); } in Isdigit()
80 static int Notdigit(int c) { return !iswdigit(c); } in Notdigit()
81 static int Isgraph(int c) { return iswgraph(c); } in Isgraph()
82 static int Islower(int c) { return iswlower(c); } in Islower()
83 static int Isprint(int c) { return iswprint(c); } in Isprint()
84 static int Ispunct(int c) { return iswpunct(c); } in Ispunct()
[all …]
/onnv-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/
H A DpmInstallScreen.java76 public void printernameLabel(JPanel north, GridBagConstraints c) { in printernameLabel()
80 public void printernameTextField(JPanel north, GridBagConstraints c) { in printernameTextField()
84 public void printernameStaticField(JPanel north, GridBagConstraints c) { in printernameStaticField()
89 public void servernameLabel(JPanel north, GridBagConstraints c) { in servernameLabel()
93 public void servernameTextField(JPanel north, GridBagConstraints c) { in servernameTextField()
97 public void servernameStaticField(JPanel north, GridBagConstraints c) { in servernameStaticField()
100 public void descriptionLabel(JPanel north, GridBagConstraints c) { in descriptionLabel()
104 public void descriptionField(JPanel north, GridBagConstraints c) { in descriptionField()
109 public void printerportLabel(JPanel north, GridBagConstraints c) { in printerportLabel()
114 public void devnullLabel(JPanel north, GridBagConstraints c) { in devnullLabel()
[all …]
/onnv-gate/usr/src/lib/libbc/inc/include/
H A Dctype.h41 #define isalpha(c) ((_ctype_+1)[c]&(_U|_L)) argument
42 #define isupper(c) ((_ctype_+1)[c]&_U) argument
43 #define islower(c) ((_ctype_+1)[c]&_L) argument
44 #define isdigit(c) ((_ctype_+1)[c]&_N) argument
45 #define isxdigit(c) ((_ctype_+1)[c]&_X) argument
46 #define isspace(c) ((_ctype_+1)[c]&_S) argument
47 #define ispunct(c) ((_ctype_+1)[c]&_P) argument
48 #define isalnum(c) ((_ctype_+1)[c]&(_U|_L|_N)) argument
49 #define isprint(c) ((_ctype_+1)[c]&(_P|_U|_L|_N|_B)) argument
50 #define isgraph(c) ((_ctype_+1)[c]&(_P|_U|_L|_N)) argument
[all …]
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/
H A Dhandy.h148 # define INT64_C(c) CAT2(c,LL) argument
149 # define UINT64_C(c) CAT2(c,ULL) argument
152 # define INT64_C(c) CAT2(c,L) argument
153 # define UINT64_C(c) CAT2(c,UL) argument
155 # define INT64_C(c) ((I64TYPE)(c)) argument
156 # define UINT64_C(c) ((U64TYPE)(c)) argument
330 #define isALNUM(c) (isALPHA(c) || isDIGIT(c) || (c) == '_') argument
331 #define isIDFIRST(c) (isALPHA(c) || (c) == '_') argument
332 #define isALPHA(c) (isUPPER(c) || isLOWER(c)) argument
333 #define isSPACE(c) \ argument
[all …]
/onnv-gate/usr/src/cmd/csh/
H A Dsh.char.h25 #define isauxsp(c) (Z=((unsigned)(c)), isauxspZ) argument
30 #define iswdigit(c) isdigit(c) argument
31 #define iswalpha(c) isalpha(c) argument
32 #define isphonogram(c) 0 argument
33 #define isideogram(c) 0 argument
34 #define isauxsp(c) 0 argument
52 #define quoted(c) ((unsigned)(c) & QUOTE) argument
55 #define cmap(c, bits) (Z=((unsigned)(c)), cmapZ(bits)) argument
57 #define isglob(c) cmap(c, _GLOB) argument
58 #define ismeta(c) cmap(c, _META) argument
[all …]
/onnv-gate/usr/src/common/openssl/crypto/conf/
H A Dconf_def.h80 #define KEYTYPES(c) ((unsigned short *)((c)->meth_data)) argument
82 #define IS_COMMENT(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_COMMENT) argument
83 #define IS_FCOMMENT(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_FCOMMENT) argument
84 #define IS_EOF(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_EOF) argument
85 #define IS_ESC(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_ESC) argument
86 #define IS_NUMBER(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_NUMBER) argument
87 #define IS_WS(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_WS) argument
88 #define IS_ALPHA_NUMERIC(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_ALPHA_NUMERIC) argument
89 #define IS_ALPHA_NUMERIC_PUNCT(c,a) \ argument
91 #define IS_QUOTE(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_QUOTE) argument
[all …]
/onnv-gate/usr/src/uts/common/sys/
H A Dkiconv_ja.h61 #define KICONV_JA_NGET(c) \ argument
69 #define KICONV_JA_NGET_REP_FR_MB(c) \ argument
79 #define KICONV_JA_NGET_REP_TO_MB(c) \ argument
89 #define KICONV_JA_NPUT(c) \ argument
143 #define KICONV_JA_ISASC(c) ((c) <= 0x7f) argument
146 #define KICONV_JA_ISC1CTRL(c) (((c) >= 0x80) && ((c) <= 0x9f)) argument
149 #define KICONV_JA_ISC1CTRLEUC(c) ((((c) >= 0x80) && ((c) <= 0x8d)) ||\ argument
153 #define KICONV_JA_ISCS1(c) (((c) >= 0xa1) && ((c) <= 0xfe)) argument
156 #define KICONV_JA_ISCS1_0208(c) (((c) >= 0xa1) && ((c) <= 0xf4)) argument
159 #define KICONV_JA_ISCS1_UDC(c) (((c) >= 0xf5) && ((c) <= 0xfe)) argument
[all …]
H A Dint_const.h84 #define INT8_C(c) (c) argument
86 #define INT16_C(c) (c) argument
87 #define INT32_C(c) (c) argument
90 #define INT64_C(c) __CONCAT__(c,l) argument
99 #define UINT8_C(c) __CONCAT__(c,u) argument
101 #define UINT16_C(c) __CONCAT__(c,u) argument
103 #define UINT32_C(c) __CONCAT__(c,u) argument
106 #define UINT64_C(c) __CONCAT__(c,ul) argument
116 #define INTMAX_C(c) __CONCAT__(c,l) argument
118 #define UINTMAX_C(c) __CONCAT__(c,ul) argument
/onnv-gate/usr/src/stand/lib/sa/
H A Dctype.h53 #define isalpha(c) ((__ctype + 1)[c] & (_U | _L)) argument
54 #define isupper(c) ((__ctype + 1)[c] & _U) argument
55 #define islower(c) ((__ctype + 1)[c] & _L) argument
56 #define isdigit(c) ((__ctype + 1)[c] & _N) argument
57 #define isxdigit(c) ((__ctype + 1)[c] & _X) argument
58 #define isalnum(c) ((__ctype + 1)[c] & (_U | _L | _N)) argument
59 #define isspace(c) ((__ctype + 1)[c] & _S) argument
60 #define ispunct(c) ((__ctype + 1)[c] & _P) argument
61 #define isprint(c) ((__ctype + 1)[c] & (_P | _U | _L | _N | _B)) argument
62 #define isgraph(c) ((__ctype + 1)[c] & (_P | _U | _L | _N)) argument
[all …]
/onnv-gate/usr/src/lib/lvm/libmeta/common/
H A Dmetad_svc_stubs.c107 struct svc_req *c) in _mdrpc_nullproc_1_svc()
118 struct svc_req *c) in _mdrpc_hostname_1_svc()
129 struct svc_req *c) in _mdrpc_addhosts_1_svc()
140 struct svc_req *c) in _mdrpc_delhosts_1_svc()
151 struct svc_req *c) in _mdrpc_createset_1_svc()
162 struct svc_req *c) in _mdrpc_delset_1_svc()
173 struct svc_req *c) in _mdrpc_getset_1_svc()
184 struct svc_req *c) in _mdrpc_setnumbusy_1_svc()
195 struct svc_req *c) in _mdrpc_setnameok_1_svc()
206 struct svc_req *c) in _mdrpc_ownset_1_svc()
[all …]
/onnv-gate/usr/src/cmd/sgs/m4/common/
H A Dm4macs.c45 dochcom(wchar_t **ap, int c) in dochcom()
58 docq(wchar_t **ap, int c) in docq()
79 dodecr(wchar_t **ap, int c) in dodecr()
85 dodef(wchar_t **ap, int c) in dodef()
91 def(wchar_t **ap, int c, int mode) in def()
114 dodefn(wchar_t **ap, int c) in dodefn()
128 dodiv(wchar_t **ap, int c) in dodiv()
147 dodivnum(wchar_t **ap, int c) in dodivnum()
154 dodnl(wchar_t **ap, int c) in dodnl()
163 dodump(wchar_t **ap, int c) in dodump()
[all …]
/onnv-gate/usr/src/head/
H A Dctype.h81 #define isascii(c) (!(((int)(c)) & ~0177)) argument
82 #define toascii(c) (((int)(c)) & 0177) argument
84 #define _toupper(c) (__trans_upper[(int)(c)]) argument
85 #define _tolower(c) (__trans_lower[(int)(c)]) argument
87 #define _toupper(c) ((__ctype + 258)[(int)(c)]) argument
88 #define _tolower(c) ((__ctype + 258)[(int)(c)]) argument
/onnv-gate/usr/src/lib/gss_mechs/mech_krb5/include/
H A Dk5-utf8.h234 #define KRB5_ASCII(c) (!((c) & 0x80)) argument
235 #define KRB5_SPACE(c) ((c) == ' ' || (c) == '\t' || (c) == '\n') argument
236 #define KRB5_DIGIT(c) ((c) >= '0' && (c) <= '9') argument
237 #define KRB5_LOWER(c) ((c) >= 'a' && (c) <= 'z') argument
238 #define KRB5_UPPER(c) ((c) >= 'A' && (c) <= 'Z') argument
239 #define KRB5_ALPHA(c) (KRB5_LOWER(c) || KRB5_UPPER(c)) argument
240 #define KRB5_ALNUM(c) (KRB5_ALPHA(c) || KRB5_DIGIT(c)) argument
242 #define KRB5_LDH(c) (KRB5_ALNUM(c) || (c) == '-') argument
244 #define KRB5_HEXLOWER(c) ((c) >= 'a' && (c) <= 'f') argument
245 #define KRB5_HEXUPPER(c) ((c) >= 'A' && (c) <= 'F') argument
[all …]
/onnv-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_cmdbuf.c131 mdb_cmdbuf_insert(mdb_cmdbuf_t *cmd, int c) in mdb_cmdbuf_insert()
215 mdb_cmdbuf_backspace(mdb_cmdbuf_t *cmd, int c) in mdb_cmdbuf_backspace()
235 mdb_cmdbuf_delchar(mdb_cmdbuf_t *cmd, int c) in mdb_cmdbuf_delchar()
252 mdb_cmdbuf_fwdchar(mdb_cmdbuf_t *cmd, int c) in mdb_cmdbuf_fwdchar()
264 mdb_cmdbuf_backchar(mdb_cmdbuf_t *cmd, int c) in mdb_cmdbuf_backchar()
275 mdb_cmdbuf_transpose(mdb_cmdbuf_t *cmd, int c) in mdb_cmdbuf_transpose()
298 mdb_cmdbuf_home(mdb_cmdbuf_t *cmd, int c) in mdb_cmdbuf_home()
306 mdb_cmdbuf_end(mdb_cmdbuf_t *cmd, int c) in mdb_cmdbuf_end()
335 mdb_cmdbuf_fwdword(mdb_cmdbuf_t *cmd, int c) in mdb_cmdbuf_fwdword()
347 mdb_cmdbuf_killfwdword(mdb_cmdbuf_t *cmd, int c) in mdb_cmdbuf_killfwdword()
[all …]
/onnv-gate/usr/src/cmd/sh/
H A Dctype.h95 #define space(c) ((c<QUOTE) && _ctype1[c]&(T_SPC)) argument
96 #define eofmeta(c) ((c<QUOTE) && _ctype1[c]&(_META|T_EOF)) argument
97 #define qotchar(c) ((c<QUOTE) && _ctype1[c]&(T_QOT)) argument
98 #define eolchar(c) ((c<QUOTE) && _ctype1[c]&(T_EOR|T_EOF)) argument
99 #define dipchar(c) ((c<QUOTE) && _ctype1[c]&(T_DIP)) argument
100 #define subchar(c) ((c<QUOTE) && _ctype1[c]&(T_SUB|T_QOT)) argument
101 #define escchar(c) ((c<QUOTE) && _ctype1[c]&(T_ESC)) argument
109 #define digit(c) ((c<QUOTE) && _ctype2[c]&(T_DIG)) argument
110 #define dolchar(c) ((c<QUOTE) && _ctype2[c]&(T_AST|T_BRC|T_DIG|T_IDC|T_SHN)) argument
111 #define defchar(c) ((c<QUOTE) && _ctype2[c]&(T_DEF)) argument
[all …]
/onnv-gate/usr/src/common/openssl/crypto/idea/
H A Didea_lcl.h95 #define n2ln(c,l1,l2,n) { \ argument
111 #define l2nn(l1,l2,c,n) { \ argument
126 #define n2l(c,l) (l =((unsigned long)(*((c)++)))<<24L, \ argument
132 #define l2n(l,c) (*((c)++)=(unsigned char)(((l)>>24L)&0xff), \ argument
138 #define s2n(l,c) (*((c)++)=(unsigned char)(((l) )&0xff), \ argument
142 #define n2s(c,l) (l =((IDEA_INT)(*((c)++)))<< 8L, \ argument
147 #define c2ln(c,l1,l2,n) { \ argument
163 #define l2cn(l1,l2,c,n) { \ argument
178 #define c2s(c,l) (l =((unsigned long)(*((c)++))) , \ argument
182 #define s2c(l,c) (*((c)++)=(unsigned char)(((l) )&0xff), \ argument
[all …]
/onnv-gate/usr/src/lib/libeti/form/common/
H A Dchg_char.c41 #define OffscreenRows(c) ((c)->drows - (c)->rows) argument
42 #define OffscreenCols(c) ((c)->dcols - (c)->cols) argument
105 FIELD * c = C(f); in _next_word() local
145 FIELD * c = C(f); in _prev_word() local
165 FIELD * c = C(f); in _beg_field() local
176 FIELD * c = C(f); in _end_field() local
193 FIELD *c = C(f); in _beg_line() local
204 FIELD *c = C(f); in _end_line() local
265 FIELD *c = C(f); in _scr_fline() local
280 FIELD *c = C(f); in _scr_bline() local
[all …]
/onnv-gate/usr/src/lib/libtecla/common/
H A Dgetline.h46 #define IS_CTRL_CHAR(c) ((unsigned char)(c) < ' ' || (unsigned char)(c)=='\177') argument
52 #define IS_META_CHAR(c) (((unsigned char)(c) & 0x80) && !isprint((int)(unsigned char)(c))) argument
58 #define MAKE_CTRL(c) ((c)=='?' ? '\177' : ((unsigned char)toupper(c) & ~0x40)) argument
64 #define MAKE_META(c) ((unsigned char)(c) | 0x80) argument
70 #define CTRL_TO_CHAR(c) (toupper((unsigned char)(c) | 0x40)) argument
76 #define META_TO_CHAR(c) ((unsigned char)(c) & ~0x80) argument
/onnv-gate/usr/src/uts/common/io/audio/impl/
H A Daudio_oss.c475 oss_open(audio_client_t *c, int oflag) in oss_open()
531 oss_close(audio_client_t *c) in oss_close()
603 sndctl_dsp_speed(audio_client_t *c, int *ratep) in sndctl_dsp_speed()
625 sndctl_dsp_setfmt(audio_client_t *c, int *fmtp) in sndctl_dsp_setfmt()
674 sndctl_dsp_getfmts(audio_client_t *c, int *fmtsp) in sndctl_dsp_getfmts()
693 sndctl_dsp_channels(audio_client_t *c, int *chanp) in sndctl_dsp_channels()
723 sndctl_dsp_stereo(audio_client_t *c, int *onoff) in sndctl_dsp_stereo()
742 sndctl_dsp_post(audio_client_t *c) in sndctl_dsp_post()
753 sndctl_dsp_getcaps(audio_client_t *c, int *capsp) in sndctl_dsp_getcaps()
782 sndctl_dsp_gettrigger(audio_client_t *c, int *trigp) in sndctl_dsp_gettrigger()
[all …]
/onnv-gate/usr/src/cmd/mdb/common/kmdb/
H A Dkmdb_context.c48 context_init(mdb_context_t *volatile c) in context_init()
58 mdb_context_t *c = mdb_zalloc(sizeof (mdb_context_t), UM_NOSLEEP); in mdb_context_create() local
80 mdb_context_destroy(mdb_context_t *c) in mdb_context_destroy()
87 mdb_context_switch(mdb_context_t *c) in mdb_context_switch()
96 mdb_context_getpcb(mdb_context_t *c) in mdb_context_getpcb()
/onnv-gate/usr/src/common/openssl/crypto/rc2/
H A Drc2_locl.h60 #define c2l(c,l) (l =((unsigned long)(*((c)++))) , \ argument
67 #define c2ln(c,l1,l2,n) { \ argument
83 #define l2c(l,c) (*((c)++)=(unsigned char)(((l) )&0xff), \ argument
90 #define l2cn(l1,l2,c,n) { \ argument
105 #define n2ln(c,l1,l2,n) { \ argument
121 #define l2nn(l1,l2,c,n) { \ argument
136 #define n2l(c,l) (l =((unsigned long)(*((c)++)))<<24L, \ argument
142 #define l2n(l,c) (*((c)++)=(unsigned char)(((l)>>24L)&0xff), \ argument

12345678910>>...132