Searched refs:cc (Results 76 - 100 of 658) sorted by last modified time

1234567891011>>

/freebsd-11-stable/contrib/file/
H A Dltmain.sh820 test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \
1853 test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \
3381 *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \
7258 # -msg_* for osf cc
H A Dconfig.guess111 for driver in cc gcc c89 c99 ; do
393 # Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
412 # Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
726 # $ CC_FOR_BUILD=cc ./config.guess
728 # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess
1340 # Avoid executing cc on OS X 10.9, as it ships with a stub
H A Dcompile143 # configure might choose to run compile as 'compile cc -o foo foo.c'.
207 *.cc | *.CC | *.cxx | *.CXX | *.[cC]++)
274 # configure might choose to run compile as 'compile cc -o foo foo.c'.
/freebsd-11-stable/sys/dev/vt/hw/fb/
H A Dvt_fb.c263 uint32_t fgc, bgc, cc, o; local
298 cc = pattern[byte] & bit ? fgc : bgc;
302 vt_fb_mem_wr1(info, o, cc);
305 vt_fb_mem_wr2(info, o, cc);
309 vt_fb_mem_wr1(info, o, (cc >> 16) & 0xff);
310 vt_fb_mem_wr1(info, o + 1, (cc >> 8) & 0xff);
311 vt_fb_mem_wr1(info, o + 2, cc & 0xff);
314 vt_fb_mem_wr4(info, o, cc);
/freebsd-11-stable/usr.bin/ruptime/
H A Druptime.c197 ssize_t cc; local
223 cc = read(fd, wd, sizeof(*wd));
225 if (cc < (ssize_t)WHDRSIZE)
243 (char *)(we + 1) <= (char *)wd + cc; we++)
/freebsd-11-stable/usr.bin/tip/tip/
H A Dtip.c473 any(int cc, char *p) argument
475 char c = cc;
/freebsd-11-stable/usr.bin/mail/
H A Dmain.c105 struct name *to, *cc, *bcc, *smopts; local
129 cc = NULL;
232 cc = cat(cc, nalloc(optarg, GCC));
248 Usage: %s [-dEiInv] [-s subject] [-c cc-addr] [-b bcc-addr] [-F] to-addr ...\n\
264 if (to == NULL && (subject != NULL || cc != NULL || bcc != NULL))
294 mail(to, cc, bcc, smopts, subject, replyto);
/freebsd-11-stable/sbin/iscontrol/
H A Discontrol.c140 main(int cc, char **vv) argument
178 while((ch = getopt(cc, vv, OPTIONS)) != -1) {
211 cc -= optind;
213 if(cc > 0) {
216 parseArgs(cc, vv, op);
/freebsd-11-stable/contrib/bmake/
H A Dmain.c1635 int cc; /* bytes read, or -1 */ local
1698 cc = read(fds[0], result, sizeof(result));
1699 if (cc > 0)
1700 Buf_AddBytes(&buf, cc, result);
1702 while (cc > 0 || (cc == -1 && errno == EINTR));
1703 if (cc == -1)
1718 cc = Buf_Size(&buf);
1733 res[cc] = '\0';
1734 cp = &res[cc];
[all...]
/freebsd-11-stable/share/mk/
H A Dbsd.dep.mk179 DEPENDSRCS= ${SRCS:M*.[cSC]} ${SRCS:M*.cxx} ${SRCS:M*.cpp} ${SRCS:M*.cc}
180 DEPENDSRCS+= ${DPSRCS:M*.[cSC]} ${DPSRCS:M*.cxx} ${DPSRCS:M*.cpp} ${DPSRCS:M*.cc}
H A Dlocal.gendirdeps.mk21 .if ${RELDIR:Nusr.bin/clang/*:Ngnu/usr.bin/cc/*:Nlib/clang*} != ""
24 Ngnu/usr.bin/cc/* \
39 Ngnu/usr.bin/cc* \
H A Dlocal.dirdeps.mk115 _PROGS_SRCS+= ${_prog}.cc
147 .if !empty(_SRCS:M*.cc) || !empty(_SRCS:M*.C) || !empty(_SRCS:M*.cpp) || \
/freebsd-11-stable/sys/dev/ciss/
H A Dciss.c1078 struct ciss_command *cc; local
1093 cc = cr->cr_cc;
1094 cc->header.address = sc->ciss_controllers[i];
1310 struct ciss_command *cc; local
1337 cc = cr->cr_cc;
1342 cc->header.address.physical.mode = CISS_HDR_ADDRESS_MODE_PERIPHERAL;
1343 cc->header.address.physical.bus = 0;
1344 cc->header.address.physical.target = 0;
1345 cc->cdb.cdb_length = sizeof(*crc);
1346 cc
1651 struct ciss_command *cc; local
1712 struct ciss_command *cc; local
1812 struct ciss_command *cc; local
1898 struct ciss_command *cc; local
2078 struct ciss_command *cc; /* XXX debugging only */ local
2115 struct ciss_command *cc; local
2148 struct ciss_command *cc; local
2298 struct ciss_command *cc; local
2511 struct ciss_command *cc; local
2556 struct ciss_command *cc; local
2632 struct ciss_command *cc; local
2764 struct ciss_command *cc; local
3110 struct ciss_command *cc; local
3299 struct ciss_command *cc; local
3470 struct ciss_command *cc = NULL; local
3556 struct ciss_command *cc; local
3610 struct ciss_command *cc; local
3694 struct ciss_command *cc; local
3775 struct ciss_command *cc; local
4248 struct ciss_command *cc; local
[all...]
/freebsd-11-stable/sys/dev/cx/
H A Dif_cx.c1267 char *cc = data; local
1290 AQ_PUSH (q, *(unsigned char *)cc);
1291 cc++;
/freebsd-11-stable/contrib/ntp/sntp/
H A Dnetworking.c15 int cc; local
26 cc = sendto(rsock, (void *)pkt, len, 0, &dest->sa,
28 if (cc == SOCKET_ERROR) {
/freebsd-11-stable/contrib/ntp/sntp/libevent/build-aux/
H A Dcompile143 # configure might choose to run compile as 'compile cc -o foo foo.c'.
207 *.cc | *.CC | *.cxx | *.CXX | *.[cC]++)
273 # configure might choose to run compile as 'compile cc -o foo foo.c'.
/freebsd-11-stable/contrib/ntp/ntpd/
H A Drefclock_oncore.c1215 char *cc, *ca, line[100], units[2], device[64]; local
1258 for (cc = line; *cc && isascii((unsigned char)*cc) && isspace((unsigned char)*cc); cc++)
1262 if (!*cc)
1266 for (ca = cc; *ca; ca++) {
1279 if (!strncmp(cc, "STATUS", (size_t) 6) || !strncmp(cc, "SHME
[all...]
H A Drefclock_jupiter.c537 int cc, size; local
557 while (up->ssize > (int)sizeof(*hp) && (cc = jupiter_recv(up)) > 0) {
560 size = cc - sizeof(*hp);
638 up->ssize = cc;
647 up->ssize -= cc;
652 memcpy(up->sbuf, (u_char *)up->sbuf + cc, up->ssize);
801 ssize_t cc; local
815 if ((cc = write(up->peer->procptr->io.fd, (char *)hp, size)) < 0) {
818 } else if (cc != (int)size) {
819 snprintf(errstr, sizeof(errstr), "short write (%zd != %u)", cc, siz
950 int n, len, size, cc; local
[all...]
H A Dntp_control.c1179 const struct ctl_proc *cc; local
1305 for (cc = control_codes; cc->control_code != NO_REQUEST; cc++) {
1306 if (cc->control_code == res_opcode) {
1309 if (cc->flags == AUTH
1315 (cc->handler)(rbufp, restrict_mask);
4609 const u_char * cc;
4682 for (cc = def_clock_var; *cc !
[all...]
H A DMakefile.in260 am__yacc_c2h = sed -e s/cc$$/hh/ -e s/cpp$$/hpp/ -e s/cxx$$/hxx/ \
/freebsd-11-stable/contrib/ntp/libntp/
H A Dstatestr.c457 char * cc; local
479 cc = cb + strlen(cb);
480 snprintf(cc, LIB_BUFLENGTH - (cc - cb), ", %s",
H A Dntp_calendar.c1785 uint32_t cc, ci, yu, sf32; local
1791 cc = sf32 ^ ((sf32 ^ yu) / 100u);
1792 yu -= cc * 100u;
1797 * centuries have 5218 weeks. So '(cc*3 + 1) / 4' is the actual
1803 ci = cc * 3u + 1;
1813 return uint32_2cpl_to_int32(cc) * 5217 + cs + cw;
1834 int32_t cc, ci; local
1874 cc = uint32_2cpl_to_int32(Q);
1886 res.hi = 100*cc + cy;
/freebsd-11-stable/contrib/tcpdump/
H A Dtcpdump.c900 register int i, fd, cc; local
915 cc = read(fd, cp, (u_int)buf.st_size);
916 if (cc < 0)
918 if (cc != buf.st_size)
919 error("short read %s (%d != %d)", fname, cc, (int)buf.st_size);
923 for (i = 0; i < cc; i++) {
925 while (i < cc && cp[i] != '\n')
928 cp[cc] = '\0';
H A Dconfigure2551 CC=cc
2654 # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
2655 set dummy ${ac_tool_prefix}cc; ac_word=$2
2671 ac_cv_prog_CC="${ac_tool_prefix}cc"
2694 # Extract the first word of "cc", so it can be a program name with args.
2695 set dummy cc; ac_word=$2
2712 if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
2716 ac_cv_prog_CC="cc"
3279 /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has
3836 # On the NeXT, cc
[all...]
/freebsd-11-stable/contrib/libpcap/testprogs/
H A Dvalgrindtest.c124 register int i, fd, cc; local
139 cc = read(fd, cp, (u_int)buf.st_size);
140 if (cc < 0)
142 if (cc != buf.st_size)
143 error("short read %s (%d != %d)", fname, cc, (int)buf.st_size);
147 for (i = 0; i < cc; i++) {
149 while (i < cc && cp[i] != '\n')
152 cp[cc] = '\0';

Completed in 245 milliseconds

1234567891011>>