Searched refs:cc (Results 201 - 225 of 1012) sorted by relevance

1234567891011>>

/macosx-10.9.5/remote_cmds-41.90.1/rwho.tproj/
H A Drwho.c99 ssize_t cc; local
134 cc = read(f, (char *)&wd, sizeof (struct whod));
135 if (cc < WHDRSIZE) {
143 cc -= WHDRSIZE;
145 for (n = cc / sizeof (struct whoent); n > 0; n--) {
/macosx-10.9.5/tcl-102/tcl_ext/mk4tcl/metakit/python/
H A Dsetup.py38 cc = os.environ.get('CXX', sysconfig.get_config_var('CXX'))
39 if not cc:
40 cc = sysconfig.get_config_var('CCC') # Python 1.5.2
41 if cc:
42 os.environ['CC'] = cc
/macosx-10.9.5/OpenSSH-186/osslshim/ossl/
H A Dossl-evp-cc.c83 #include "ossl-evp-cc.h"
102 struct cc_key *cc = ctx->cipher_data; local
108 ret = CCCryptorUpdate(cc->href, in, size, out, size, &moved);
267 struct cc_key *cc = ctx->cipher_data; local
278 ret = CCCryptorUpdate(cc->href, ctx->iv, ctx->cipher->iv_len,
306 struct cc_key *cc = ctx->cipher_data; local
308 if (cc->href) {
309 CCCryptorRelease(cc->href);
321 struct cc_key *cc = ctx->cipher_data; local
323 return (init_cc_key(encp, kCCAlgorithm3DES, kCCOptionECBMode, key, kCCKeySize3DES, iv, &cc
334 struct cc_key *cc = ctx->cipher_data; local
437 struct cc_key *cc = ctx->cipher_data; local
450 struct cc_key *cc = ctx->cipher_data; local
548 struct cc_key *cc = ctx->cipher_data; local
561 struct cc_key *cc = ctx->cipher_data; local
647 struct cc_key *cc = ctx->cipher_data; local
660 struct cc_key *cc = ctx->cipher_data; local
750 struct cc_key *cc = ctx->cipher_data; local
763 struct cc_key *cc = ctx->cipher_data; local
990 struct cc_key *cc = ctx->cipher_data; local
1114 struct cc_key *cc = ctx->cipher_data; local
[all...]
/macosx-10.9.5/libpcap-42/libpcap/
H A Dpcap-snit.c22 * Micky Liu, micky@cunixc.cc.columbia.edu, Columbia University in May, 1989.
115 register int cc, n; local
123 cc = p->cc;
124 if (cc == 0) {
125 cc = read(p->fd, (char *)p->buffer, p->bufsize);
126 if (cc < 0) {
141 ep = bp + cc;
158 p->cc = ep - bp;
196 p->cc
[all...]
H A Dpcap-win32.c171 int cc; local
175 cc = p->cc;
176 if (p->cc == 0) {
196 cc = p->Packet->ulBytesReceived;
207 ep = bp + cc;
226 p->cc = ep - bp;
243 p->cc = ep - bp;
248 p->cc = 0;
264 int cc; local
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/libtiff/tools/
H A Dtiffinfo.c184 register tsize_t cc; local
188 for (cc = 0; cc < scanline; cc++) {
190 if (((cc+1) % 24) == 0)
259 uint32 cc; local
266 for (cc = 0; cc < rowsize; cc++) {
268 if (((cc
[all...]
/macosx-10.9.5/postfix-252/postfix/
H A Dmakedefs121 : ${CC="/usr/bin/cc -b elf"}
128 : ${CC=/usr/bin/cc}
135 : ${CC=/usr/bin/cc}
182 : ${CC=cc}
219 *ucb*) error "Don't use /usr/ucb/cc or ucblib";;
220 cc*) case `which ${CC}` in
221 *ucb*) error "Don't use /usr/ucb/cc or ucblib";;
242 cc|*/cc|xlc|*/xlc) CCARGS="$CCARGS -w -blibpath:/usr/lib:/lib:/usr/local/lib";;
248 cc|*/c
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/mh-e/
H A Dmh-comp.el166 (defun mh-send-other-window (to cc subject)
176 (mh-send-sub to cc subject (current-window-configuration))))
434 (defun mh-forward (to cc &optional range)
469 (mh-insert-fields "To:" to "Cc:" cc)
513 to forw-subject cc
534 (defun mh-redistribute (to cc &optional message)
562 (if (not (equal cc "")) (insert "Resent-cc: " cc "\n"))
584 "-text" (format "\"%s %s\"" to cc)))
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/wind/
H A Dnormalize.c201 int cc = _wind_combining_class(tmp[i]); local
202 if (cc) {
272 int cc; local
277 cc = _wind_combining_class(in[i]);
278 if (old_cc != cc && (comb = find_composition(v, 2))) {
280 } else if (cc == 0) {
286 old_cc = cc;
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DLength.cpp94 UChar cc = data[i]; local
95 if (cc > '9' || (cc < '0' && cc != '-' && cc != '*' && cc != '.'))
98 spacified[i] = cc;
/macosx-10.9.5/shell_cmds-175/locate/locate/
H A Dfastfind.c143 register int c, cc; local
183 cc = *patend;
263 if (c == cc)
273 if (bigram1[c] == cc ||
274 bigram2[c] == cc)
299 if (*s == cc
301 || TOLOWER(*s) == cc
/macosx-10.9.5/xnu-2422.115.4/bsd/dev/i386/
H A Dkm.c345 int cc = -1; local
350 cc = ndqb(&tp->t_outq, 0);
351 if (cc == 0)
357 cc = min(cc, sizeof(buf));
359 (void) q_to_b(&tp->t_outq, buf, cc);
360 for (cp = buf; cp < &buf[cc]; cp++) {
/macosx-10.9.5/BerkeleyDB-21/db/examples_java/src/persist/txn/
H A DStoreWriter.java149 CursorConfig cc = new CursorConfig();
152 cc.setReadUncommitted(true);
153 EntityCursor<PayloadDataEntity> cursor = pdKey.entities(txn, cc);
/macosx-10.9.5/CPANInternal-140/Graph/util/
H A Dgrand.pl9 my @TEST = qw(apsp mstp mstk sptd sptb cc bcc scc);
15 my @UTEST = qw(mstk mstp cc);
102 } elsif ($OPT{test} eq 'cc') {
103 my @cc = $g->connected_components;
/macosx-10.9.5/CPANInternal-140/Graph-0.94/util/
H A Dgrand.pl9 my @TEST = qw(apsp mstp mstk sptd sptb cc bcc scc);
15 my @UTEST = qw(mstk mstp cc);
102 } elsif ($OPT{test} eq 'cc') {
103 my @cc = $g->connected_components;
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/unix/
H A Dkeyboard.c99 ssize_t cc; local
106 cc = read(keyboard->fd, &c, 1);
107 if (cc < 0) {
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/path/
H A Dpathexists.c57 int cc; local
90 cc = *ee;
101 c = cc;
/macosx-10.9.5/ntp-88/lib/isc/unix/
H A Dkeyboard.c99 ssize_t cc; local
106 cc = read(keyboard->fd, &c, 1);
107 if (cc < 0) {
/macosx-10.9.5/ruby-104/ruby/test/rake/
H A Dtest_rake_task_arguments.rb39 assert_nil ta.cc
48 ta = Rake::TaskArguments.new(["aa", "bb", "cc"], [1, 2])
49 assert_nil ta.cc
85 ta.with_defaults({ "cc" => "default_val" })
86 assert_nil ta[:cc]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/build/
H A Djlibtool.c282 void add_rpath(count_chars *cc, const char *path);
323 void init_count_chars(count_chars *cc) argument
325 cc->vals = (const char**)malloc(PATH_MAX*sizeof(char*));
326 cc->num = 0;
329 void clear_count_chars(count_chars *cc) argument
332 for (i = 0; i < cc->num; i++) {
333 cc->vals[i] = 0;
336 cc->num = 0;
339 void push_count_chars(count_chars *cc, const char *newval) argument
341 cc
344 pop_count_chars(count_chars *cc) argument
349 insert_count_chars(count_chars *cc, const char *newval, int position) argument
361 append_count_chars(count_chars *cc, count_chars *cctoadd) argument
371 flatten_count_chars(count_chars *cc, int space) argument
471 run_command(command_t *cmd_data, count_chars *cc) argument
1049 add_rpath(count_chars *cc, const char *path) argument
1076 add_rpath_file(count_chars *cc, const char *arg) argument
1086 add_rpath_noinstall(count_chars *cc, const char *arg, int pathlen) argument
1098 add_dylink_noinstall(count_chars *cc, const char *arg, int pathlen, int extlen) argument
1147 add_minus_l(count_chars *cc, const char *arg) argument
1171 add_linker_flag_prefix(count_chars *cc, const char *arg) argument
[all...]
/macosx-10.9.5/apr-30/apr/apr/build/
H A Djlibtool.c282 void add_rpath(count_chars *cc, const char *path);
323 void init_count_chars(count_chars *cc) argument
325 cc->vals = (const char**)malloc(PATH_MAX*sizeof(char*));
326 cc->num = 0;
329 void clear_count_chars(count_chars *cc) argument
332 for (i = 0; i < cc->num; i++) {
333 cc->vals[i] = 0;
336 cc->num = 0;
339 void push_count_chars(count_chars *cc, const char *newval) argument
341 cc
344 pop_count_chars(count_chars *cc) argument
349 insert_count_chars(count_chars *cc, const char *newval, int position) argument
361 append_count_chars(count_chars *cc, count_chars *cctoadd) argument
371 flatten_count_chars(count_chars *cc, int space) argument
471 run_command(command_t *cmd_data, count_chars *cc) argument
1049 add_rpath(count_chars *cc, const char *path) argument
1076 add_rpath_file(count_chars *cc, const char *arg) argument
1086 add_rpath_noinstall(count_chars *cc, const char *arg, int pathlen) argument
1098 add_dylink_noinstall(count_chars *cc, const char *arg, int pathlen, int extlen) argument
1147 add_minus_l(count_chars *cc, const char *arg) argument
1171 add_linker_flag_prefix(count_chars *cc, const char *arg) argument
[all...]
/macosx-10.9.5/ksh-20/ksh/src/cmd/INIT/
H A Diffe.sh35 compile() # $cc ...
72 compile $cc -c $_is_hdr_file <&$nullin >&$nullout 2>$tmp.e
463 if compile $cc -o ${tmp}r.exe ${tmp}r.c >&$nullout
560 occ=cc
669 [c:cc?Sets the C compiler name and flags to be used in the feature
992 c) set="$set set cc $OPTARG :" ;;
1032 --cc=*) REM=c`echo X$1 | sed 's,[^=]*=,,'`
1129 c) set="$set set cc $OPTARG :" ;;
1476 c) op=cc ;;
1529 cc) oc
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/cm/
H A Djavascript.js168 var cc = state.cc;
171 cx.state = state; cx.stream = stream; cx.marked = null, cx.cc = cc;
177 var combinator = cc.length ? cc.pop() : jsonMode ? expression : statement;
179 while(cc.length && cc[cc.length - 1].lex)
180 cc
[all...]
/macosx-10.9.5/network_cmds-433/traceroute6.tproj/
H A Dtraceroute6.c113 * 4 ccngw-ner-cc.Berkeley.EDU (128.32.136.23) 39 ms 40 ms 39 ms
133 * 4 ccngw-ner-cc.Berkeley.EDU (128.32.136.23) 19 ms 39 ms 39 ms
167 * 4 ccngw-ner-cc.Berkeley.EDU (128.32.136.23) 39 ms 40 ms 19 ms
896 int cc; local
901 while ((cc = wait_for_reply(rcvsock, &rcvmhdr))) {
903 if ((i = packet_ok(&rcvmhdr, cc, seq))) {
908 print(&rcvmhdr, cc);
939 if (cc == 0)
960 int cc = 0; local
967 cc
[all...]
/macosx-10.9.5/ruby-104/ruby/
H A Dregparse.c1065 CClassNode* cc = NCCLASS(node); local
1067 if (IS_NCCLASS_SHARE(cc)) return ;
1068 if (cc->mbuf)
1069 bbuf_free(cc->mbuf);
1148 initialize_cclass(CClassNode* cc) argument
1150 BITSET_CLEAR(cc->bs);
1151 /* cc->base.flags = 0; */
1152 cc->flags = 0;
1153 cc->mbuf = NULL;
1172 CClassNode* cc; local
2041 and_cclass(CClassNode* dest, CClassNode* cc, ScanEnv* env) argument
2099 or_cclass(CClassNode* dest, CClassNode* cc, ScanEnv* env) argument
4038 add_ctype_to_cc_by_range(CClassNode* cc, int ctype ARG_UNUSED, int not, ScanEnv* env, OnigCodePoint sb_out, const OnigCodePoint mbr[]) argument
4111 add_ctype_to_cc(CClassNode* cc, int ctype, int not, int char_prop, ScanEnv* env) argument
4238 parse_posix_bracket(CClassNode* cc, UChar** src, UChar* end, ScanEnv* env) argument
4351 CClassNode* cc; local
4381 next_state_class(CClassNode* cc, OnigCodePoint* vs, enum CCVALTYPE* type, enum CCSTATE* state, ScanEnv* env) argument
4404 next_state_val(CClassNode* cc, OnigCodePoint *vs, OnigCodePoint v, int* vs_israw, int v_israw, enum CCVALTYPE intype, enum CCVALTYPE* type, enum CCSTATE* state, ScanEnv* env) argument
4510 CClassNode *cc, *prev_cc; local
5404 CClassNode* cc = NCCLASS(node); local
5432 clear_not_flag_cclass(CClassNode* cc, OnigEncoding enc) argument
5457 CClassNode* cc; member in struct:__anon12462
5468 CClassNode* cc; local
5550 CClassNode* cc; local
5694 is_onechar_cclass(CClassNode* cc, OnigCodePoint* code) argument
5924 CClassNode* cc; local
6005 CClassNode* cc; local
[all...]

Completed in 316 milliseconds

1234567891011>>