Home
last modified time | relevance | path

Searched refs:c (Results 1 – 25 of 7557) sorted by relevance

12345678910>>...303

/onnv-gate/usr/src/cmd/ssh/libssh/common/
H A Dnchan.c84 chan_set_istate(Channel *c, u_int next) in chan_set_istate() argument
86 if (c->istate > CHAN_INPUT_CLOSED || next > CHAN_INPUT_CLOSED) in chan_set_istate()
87 fatal("chan_set_istate: bad state %d -> %d", c->istate, next); in chan_set_istate()
88 debug("channel %d: input %s -> %s", c->self, istates[c->istate], in chan_set_istate()
90 c->istate = next; in chan_set_istate()
93 chan_set_ostate(Channel *c, u_int next) in chan_set_ostate() argument
95 if (c->ostate > CHAN_OUTPUT_CLOSED || next > CHAN_OUTPUT_CLOSED) in chan_set_ostate()
96 fatal("chan_set_ostate: bad state %d -> %d", c->ostate, next); in chan_set_ostate()
97 debug("channel %d: output %s -> %s", c->self, ostates[c->ostate], in chan_set_ostate()
99 c->ostate = next; in chan_set_ostate()
[all …]
H A Dchannels.c139 static void port_open_helper(Channel *c, char *rtype);
146 Channel *c; in channel_lookup() local
152 c = channels[id]; in channel_lookup()
153 if (c == NULL) { in channel_lookup()
157 return c; in channel_lookup()
166 channel_register_fds(Channel *c, int rfd, int wfd, int efd, in channel_register_fds() argument
176 c->rfd = rfd; in channel_register_fds()
177 c->wfd = wfd; in channel_register_fds()
178 c->sock = (rfd == wfd) ? rfd : -1; in channel_register_fds()
179 c->efd = efd; in channel_register_fds()
[all …]
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/op/
H A Dchars.t9 my $c = "\c@";
10 print +((ord($c) == 0) ? "" : "not "),"ok 1\n";
11 $c = "\cA";
12 print +((ord($c) == 1) ? "" : "not "),"ok 2\n";
13 $c = "\cB";
14 print +((ord($c) == 2) ? "" : "not "),"ok 3\n";
15 $c = "\cC";
16 print +((ord($c) == 3) ? "" : "not "),"ok 4\n";
17 $c = "\cD";
18 print +((ord($c) == 4) ? "" : "not "),"ok 5\n";
[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/head/iso/
H A Dctype_iso.h118 inline int isalpha(int c) { return (__ctype_mask[c] & _ISALPHA); } in isalpha() argument
119 inline int isupper(int c) { return (__ctype_mask[c] & _ISUPPER); } in isupper() argument
120 inline int islower(int c) { return (__ctype_mask[c] & _ISLOWER); } in islower() argument
121 inline int isdigit(int c) { return (__ctype_mask[c] & _ISDIGIT); } in isdigit() argument
122 inline int isxdigit(int c) { return (__ctype_mask[c] & _ISXDIGIT); } in isxdigit() argument
123 inline int isalnum(int c) { return (__ctype_mask[c] & _ISALNUM); } in isalnum() argument
124 inline int isspace(int c) { return (__ctype_mask[c] & _ISSPACE); } in isspace() argument
125 inline int ispunct(int c) { return (__ctype_mask[c] & _ISPUNCT); } in ispunct() argument
126 inline int isprint(int c) { return (__ctype_mask[c] & _ISPRINT); } in isprint() argument
127 inline int isgraph(int c) { return (__ctype_mask[c] & _ISGRAPH); } in isgraph() argument
[all …]
/onnv-gate/usr/src/uts/common/
H A DMakefile.rules44 $(OBJS_DIR)/%.o: $(COMMONBASE)/crypto/aes/%.c
45 $(COMPILE.c) -o $@ $<
48 $(OBJS_DIR)/%.o: $(COMMONBASE)/crypto/arcfour/%.c
49 $(COMPILE.c) -o $@ $<
52 $(OBJS_DIR)/%.o: $(COMMONBASE)/crypto/blowfish/%.c
53 $(COMPILE.c) -o $@ $<
56 $(OBJS_DIR)/%.o: $(COMMONBASE)/crypto/ecc/%.c
57 $(COMPILE.c) -o $@ $<
60 $(OBJS_DIR)/%.o: $(COMMONBASE)/crypto/fips/%.c
61 $(COMPILE.c) -o $@ $<
[all …]
/onnv-gate/usr/src/cmd/ast/msgcc/
H A Dmsgcvt.c132 register int c; in decode() local
136 if ((c = sfgetc(ip)) == EOF) in decode()
138 name[0] = c; in decode()
140 if (c != '#' && !isalpha(c)) in decode()
142 while ((c = sfgetc(ip)) != EOF && c != ';') in decode()
144 if (c == '&') in decode()
148 name[i++] = c; in decode()
149 if (!isalnum(c) && (i > 1 || c != '#') || i >= (elementsof(name) - 1)) in decode()
156 switch (c = strtol(name + 1, NiL, 10)) in decode()
159 c = '['; in decode()
[all …]
/onnv-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dcharset.c195 static Byte *c_to_hh( Byte *o, Byte c );
196 static Byte *c_to_cc( Byte *o, Couple *cc, Byte c );
1025 c_to_hh( Byte *o, Byte c ) in c_to_hh() argument
1030 n = c >> 4; in c_to_hh()
1032 n = c & 0x0F; in c_to_hh()
1040 c_to_cc( Byte *o, Couple *cc, Byte c ) in c_to_cc() argument
1054 return c_to_hh( o, c ); in c_to_cc()
1064 int c; in ldap_t61_to_8859() local
1100 case 'A': c = letter_w_diacritic[n][0]; break; in ldap_t61_to_8859()
1101 case 'C': c = letter_w_diacritic[n][1]; break; in ldap_t61_to_8859()
[all …]
H A Dldaputf8.c114 register unsigned long c; in ldap_utf8getcc() local
118 c = (*s++) & 0x3F; goto more5; in ldap_utf8getcc()
119 case 1: c = (*s++); break; in ldap_utf8getcc()
120 case 2: c = (*s++) & 0x1F; goto more1; in ldap_utf8getcc()
121 case 3: c = (*s++) & 0x0F; goto more2; in ldap_utf8getcc()
122 case 4: c = (*s++) & 0x07; goto more3; in ldap_utf8getcc()
123 case 5: c = (*s++) & 0x03; goto more4; in ldap_utf8getcc()
124 case 6: c = (*s++) & 0x01; goto more5; in ldap_utf8getcc()
125 more5: if ((*s & 0xC0) != 0x80) break; c = (c << 6) | ((*s++) & 0x3F); in ldap_utf8getcc()
126 more4: if ((*s & 0xC0) != 0x80) break; c = (c << 6) | ((*s++) & 0x3F); in ldap_utf8getcc()
[all …]
/onnv-gate/usr/src/cmd/sgs/libelf/misc/
H A Ddemangle.c67 getint(c) in getint() argument
68 char **c; in getint()
70 return strtol(*c, c, 10);
83 second(c) in second() argument
84 char *c; in second()
87 if(strncmp(c, MSG_ORIG(MSG_STR_DBLUNDBAR), 2))
89 c += 2;
91 if (!(isdigit(*c) || *c == 'F'))
94 if (isdigit(*c)) {
96 n = getint(&c);
[all …]
/onnv-gate/usr/src/lib/libldap4/common/
H A Dcharset.c223 static Byte *c_to_hh( Byte *o, Byte c );
224 static Byte *c_to_cc( Byte *o, Couple *cc, Byte c );
1053 c_to_hh( Byte *o, Byte c ) in c_to_hh() argument
1058 n = c >> 4; in c_to_hh()
1060 n = c & 0x0F; in c_to_hh()
1068 c_to_cc( Byte *o, Couple *cc, Byte c ) in c_to_cc() argument
1082 return c_to_hh( o, c ); in c_to_cc()
1092 int c; in ldap_t61_to_8859() local
1128 case 'A': c = letter_w_diacritic[n][0]; break; in ldap_t61_to_8859()
1129 case 'C': c = letter_w_diacritic[n][1]; break; in ldap_t61_to_8859()
[all …]
/onnv-gate/usr/src/uts/common/sys/
H A Dkiconv_ja.h61 #define KICONV_JA_NGET(c) \ argument
66 (c) = *ip++;\
69 #define KICONV_JA_NGET_REP_FR_MB(c) \ argument
76 (c) = *ip++;\
79 #define KICONV_JA_NGET_REP_TO_MB(c) \ argument
86 (c) = *ip++;\
89 #define KICONV_JA_NPUT(c) \ argument
94 *op++ = (uint8_t)(c);\
143 #define KICONV_JA_ISASC(c) ((c) <= 0x7f) argument
146 #define KICONV_JA_ISC1CTRL(c) (((c) >= 0x80) && ((c) <= 0x9f)) argument
[all …]
/onnv-gate/usr/src/cmd/mdb/
H A DMakefile.mdb30 ffs.c \
31 mdb.c \
32 mdb_addrvec.c \
33 mdb_argvec.c \
34 mdb_callb.c \
35 mdb_cmdbuf.c \
36 mdb_cmds.c \
37 mdb_conf.c \
38 mdb_context.c \
39 mdb_create.c \
[all …]
H A DMakefile.kmdb.files27 ffs.c \
28 kaif_start.c \
29 mdb.c \
30 mdb_addrvec.c \
31 mdb_argvec.c \
32 mdb_callb.c \
33 mdb_cmdbuf.c \
34 mdb_cmds.c \
35 kvm_cpu.c \
36 kmdb_conf.c \
[all …]
/onnv-gate/usr/src/common/openssl/crypto/rc2/
H A Drc2_locl.h60 #define c2l(c,l) (l =((unsigned long)(*((c)++))) , \ argument
61 l|=((unsigned long)(*((c)++)))<< 8L, \
62 l|=((unsigned long)(*((c)++)))<<16L, \
63 l|=((unsigned long)(*((c)++)))<<24L)
67 #define c2ln(c,l1,l2,n) { \ argument
68 c+=n; \
71 case 8: l2 =((unsigned long)(*(--(c))))<<24L; \
72 case 7: l2|=((unsigned long)(*(--(c))))<<16L; \
73 case 6: l2|=((unsigned long)(*(--(c))))<< 8L; \
74 case 5: l2|=((unsigned long)(*(--(c)))); \
[all …]
/onnv-gate/usr/src/cmd/mdb/common/modules/genunix/
H A DMakefile.files31 avl.c \
32 bio.c \
33 bitset.c \
34 combined.c \
35 contract.c \
36 cpupart.c \
37 ctxop.c \
38 cyclic.c \
39 damap.c \
40 devinfo.c \
[all …]
/onnv-gate/usr/src/common/openssl/crypto/idea/
H A Didea_lcl.h95 #define n2ln(c,l1,l2,n) { \ argument
96 c+=n; \
99 case 8: l2 =((unsigned long)(*(--(c)))) ; \
100 case 7: l2|=((unsigned long)(*(--(c))))<< 8; \
101 case 6: l2|=((unsigned long)(*(--(c))))<<16; \
102 case 5: l2|=((unsigned long)(*(--(c))))<<24; \
103 case 4: l1 =((unsigned long)(*(--(c)))) ; \
104 case 3: l1|=((unsigned long)(*(--(c))))<< 8; \
105 case 2: l1|=((unsigned long)(*(--(c))))<<16; \
106 case 1: l1|=((unsigned long)(*(--(c))))<<24; \
[all …]
/onnv-gate/usr/src/lib/gss_mechs/mech_krb5/support/
H A Dutf8.c141 #undef c
142 #define c const char macro
143 c krb5int_utf8_mintab[] = {
144 (c)0x20, (c)0x80, (c)0x80, (c)0x80, (c)0x80, (c)0x80, (c)0x80, (c)0x80,
145 (c)0x80, (c)0x80, (c)0x80, (c)0x80, (c)0x80, (c)0x80, (c)0x80, (c)0x80,
146 (c)0x30, (c)0x80, (c)0x80, (c)0x80, (c)0x80, (c)0x80, (c)0x80, (c)0x80,
147 (c)0x38, (c)0x80, (c)0x80, (c)0x80, (c)0x3c, (c)0x80, (c)0x00, (c)0x00 };
148 #undef c
168 const unsigned char *c = (const unsigned char *) p; in krb5int_utf8_to_ucs4() local
180 ch = c[0] & mask[len]; in krb5int_utf8_to_ucs4()
[all …]
/onnv-gate/usr/src/uts/common/syscall/
H A DSYSCALL.README31 common/os/scalls.c and common/fs/vncalls.c, have been sub-divided into
40 From a practical standpoint, recompiling all of scalls.c or vncalls.c
43 changing scalls.c or vncalls.c in one's own environment had a
71 The system calls in sigqueue.c and lwpsys.c are examples
72 of the first case; lwp_sobj.c is an example of the second.
75 calls. The file rlimit.c, containing getrlimit() and
79 such as the the different forms of stat in stat.c.
87 These functions were moved into common/os/fio.c, where they
94 The system calls in common/os/scalls.c, common/fs/vncalls.c
96 calls that previously resided in <arch>/os/archdep.c have
[all …]
/onnv-gate/usr/src/cmd/mdb/sun4v/
H A DMakefile.kmdb27 prom_2path.c \
28 prom_devname.c \
29 prom_devtype.c \
30 prom_enter.c \
31 prom_env.c \
32 prom_exit.c \
33 prom_fb.c \
34 prom_getchar.c \
35 prom_init.c \
36 prom_inpath.c \
[all …]
/onnv-gate/usr/src/lib/libshell/common/sh/
H A Dstring.c44 # define iswprint(c) (((c)&~0377) || isprint(c)) argument
58 register int c; in sh_locate() local
63 while((c= *tp->sh_name) && (CC_NATIVE!=CC_ASCII || c <= first)) in sh_locate()
65 if(first == c && strcmp(sp,tp->sh_name)==0) in sh_locate()
76 #define sep(c) ((c)=='-'||(c)=='_') argument
82 register int c; in sh_lookopt() local
106 if(!(c= *t)) in sh_lookopt()
108 if(first == c) in sh_lookopt()
204 int c = mbsize(sp); in sh_substitute() local
205 if(c < 0) in sh_substitute()
[all …]
/onnv-gate/usr/src/common/openssl/crypto/bf/
H A Dbf_locl.h64 #define c2l(c,l) (l =((unsigned long)(*((c)++))) , \ argument
65 l|=((unsigned long)(*((c)++)))<< 8L, \
66 l|=((unsigned long)(*((c)++)))<<16L, \
67 l|=((unsigned long)(*((c)++)))<<24L)
71 #define c2ln(c,l1,l2,n) { \ argument
72 c+=n; \
75 case 8: l2 =((unsigned long)(*(--(c))))<<24L; \
76 case 7: l2|=((unsigned long)(*(--(c))))<<16L; \
77 case 6: l2|=((unsigned long)(*(--(c))))<< 8L; \
78 case 5: l2|=((unsigned long)(*(--(c)))); \
[all …]
/onnv-gate/usr/src/cmd/csh/
H A Dsh.lex.c84 #define ungetC(c) peekc = c argument
85 #define ungetD(c) peekd = c argument
91 int c; in lex() local
101 c = readc(0); in lex()
102 while (issp(c)); in lex()
104 if (HIST && c == HISTSUB && intty) in lex()
106 getexcl(c); in lex()
108 unreadc(c); in lex()
193 tchar c, c1; in word() local
205 while (issp(c = getC(DOALL))) in word()
[all …]
/onnv-gate/usr/src/common/openssl/crypto/rc5/
H A Drc5_locl.h62 #define c2l(c,l) (l =((unsigned long)(*((c)++))) , \ argument
63 l|=((unsigned long)(*((c)++)))<< 8L, \
64 l|=((unsigned long)(*((c)++)))<<16L, \
65 l|=((unsigned long)(*((c)++)))<<24L)
69 #define c2ln(c,l1,l2,n) { \ argument
70 c+=n; \
73 case 8: l2 =((unsigned long)(*(--(c))))<<24L; \
74 case 7: l2|=((unsigned long)(*(--(c))))<<16L; \
75 case 6: l2|=((unsigned long)(*(--(c))))<< 8L; \
76 case 5: l2|=((unsigned long)(*(--(c)))); \
[all …]
/onnv-gate/usr/src/grub/grub-0.97/stage2/
H A DMakefile.am19 libgrub_a_SOURCES = boot.c builtins.c char_io.c cmdline.c common.c \
20 disk_io.c fsys_ext2fs.c fsys_fat.c fsys_ffs.c fsys_iso9660.c \
21 fsys_jfs.c fsys_minix.c fsys_reiserfs.c fsys_ufs.c fsys_ufs2.c \
22 fsys_zfs.c zfs_fletcher.c zfs_lzjb.c zfs_sha256.c \
23 fsys_vstafs.c fsys_xfs.c gunzip.c md5.c serial.c stage2.c \
24 terminfo.c tparm.c graphics.c
100 pre_stage2_exec_SOURCES = asm.S bios.c boot.c builtins.c char_io.c \
101 cmdline.c common.c console.c disk_io.c fsys_ext2fs.c \
102 fsys_fat.c fsys_ffs.c fsys_iso9660.c fsys_jfs.c fsys_minix.c \
103 fsys_reiserfs.c fsys_ufs.c fsys_ufs2.c fsys_vstafs.c fsys_xfs.c \
[all …]

12345678910>>...303