Searched refs:cc (Results 276 - 300 of 658) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/contrib/binutils/opcodes/
H A Dppc-dis.c314 int cc; local
319 cc = value & 3;
320 (*info->fprintf_func) (info->stream, "%s", cbnames[cc]);
/freebsd-11-stable/contrib/groff/src/devices/grops/
H A Dpsrm.cpp766 int cc = getc(fp); local
767 if (cc != '\n') {
768 if (cc != EOF)
769 ungetc(cc, fp);
773 putc(cc, outfp);
837 int cc = getc(fp); local
838 if (cc != '\n') {
842 if (cc != EOF)
884 int cc = getc(fp); local
885 if (cc !
[all...]
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Ddeflate.h309 { uch cc = (c); \
311 s->l_buf[s->last_lit++] = cc; \
312 s->dyn_ltree[cc].Freq++; \
/freebsd-11-stable/libexec/rbootd/
H A Dbpf.c301 int cc; local
308 if ((cc = read(BpfFd, (char *)BpfPkt, (int)BpfLen)) < 0) {
313 ep = BpfPkt + cc;
/freebsd-11-stable/contrib/libpcap/
H A Ddlpisubs.c156 p->cc = ep - bufp;
193 p->cc = ep - bufp;
201 p->cc = 0;
H A Dpcap-netfilter-linux.c108 len = handle->cc;
155 handle->cc = ep - bp;
272 handle->cc = ep - bp;
273 if (handle->cc < 0)
274 handle->cc = 0;
279 handle->cc = 0;
/freebsd-11-stable/contrib/lua/src/
H A Dlutf8lib.c50 int cc = s[++count]; /* read next byte */ local
51 if ((cc & 0xC0) != 0x80) /* not a continuation byte? */
53 res = (res << 6) | (cc & 0x3F); /* add lower 6 bits from cont. byte */
/freebsd-11-stable/sys/contrib/zlib/
H A Ddeflate.h327 { uch cc = (c); \
329 s->l_buf[s->last_lit++] = cc; \
330 s->dyn_ltree[cc].Freq++; \
/freebsd-11-stable/sys/netinet/cc/
H A Dcc_vegas.c57 __FBSDID("$FreeBSD: stable/11/sys/netinet/cc/cc_vegas.c 342189 2018-12-18 09:16:04Z brooks $");
75 #include <netinet/cc/cc.h>
76 #include <netinet/cc/cc_module.h>
82 * See <netinet/cc.h> for appropriate bit-range to use for private signals.
H A Dcc_dctcp.c40 __FBSDID("$FreeBSD: stable/11/sys/netinet/cc/cc_dctcp.c 342189 2018-12-18 09:16:04Z brooks $");
56 #include <netinet/cc/cc.h>
57 #include <netinet/cc/cc_module.h>
/freebsd-11-stable/usr.sbin/bluetooth/hccontrol/
H A Dutil.c3156 hci_cc2str(int cc) argument
3163 return (cc >= SIZE(t)? "?" : t[cc]);
/freebsd-11-stable/sys/contrib/ngatm/netnatm/saal/
H A Dsaal_sscop.c276 TIMER_FUNC(cc, CC)
423 TIMER_STOP(sscop, cc);
478 TIMER_INIT(sscop, cc);
1709 TIMER_RESTART(sscop, cc);
1949 TIMER_STOP(sscop, cc);
1971 TIMER_STOP(sscop, cc);
1996 TIMER_RESTART(sscop, cc);
2009 TIMER_STOP(sscop, cc);
2012 TIMER_RESTART(sscop, cc);
2034 TIMER_STOP(sscop, cc);
[all...]
/freebsd-11-stable/usr.sbin/pmcstat/
H A Dpmcpl_gprof.c412 uint32_t nsamples, uintfptr_t *cc, int usermode, uint32_t cpu)
424 map = pmcstat_process_find_map(usermode ? pp : pmcstat_kernproc, cc[0]);
431 assert(cc[0] >= map->ppm_lowpc && cc[0] < map->ppm_highpc);
498 bucket = (cc[0] - map->ppm_lowpc) / FUNCTION_ALIGNMENT;
411 pmcpl_gmon_process(struct pmcstat_process *pp, struct pmcstat_pmcrecord *pmcr, uint32_t nsamples, uintfptr_t *cc, int usermode, uint32_t cpu) argument
/freebsd-11-stable/stand/libsa/
H A Dprintf.c65 putchar_wrapper(int cc, void *arg) argument
68 putchar(cc);
250 #define PCHAR(c) {int cc=(c); if (func) (*func)(cc, arg); else *d++ = cc; retval++; }
/freebsd-11-stable/sbin/routed/
H A Drdisc.c942 int n, fromlen, cc, hlen; local
959 cc = recvfrom(rdisc_sock, &buf, sizeof(buf), 0,
962 if (cc <= 0) {
963 if (cc < 0 && errno != EWOULDBLOCK)
971 if ((cc -= sizeof(buf.ifname)) < 0)
973 cc+sizeof(buf.ifname));
977 if (cc < hlen + ICMP_MINLEN)
980 cc -= hlen;
996 buf.pkt.ip.ip_dst.s_addr, p, cc);
1018 if (cc !
[all...]
/freebsd-11-stable/contrib/one-true-awk/
H A Db.c794 struct charclass *cc; local
838 for (cc = charclasses; cc->cc_name; cc++)
839 if (strncmp((const char *) prestr + 1, (const char *) cc->cc_name, cc->cc_namelen) == 0)
841 if (cc->cc_name != NULL && prestr[1 + cc->cc_namelen] == ':' &&
842 prestr[2 + cc->cc_namelen] == ']') {
843 prestr += cc
[all...]
/freebsd-11-stable/usr.sbin/rarpd/
H A Drarpd.c516 int cc, fd; local
559 cc = read(fd, (char *)buf, bufsize);
561 if ((cc == -1) && (errno == EINTR))
567 ep = bp + cc;
720 int cc; local
759 cc = read(r, rt, sizeof(rtmsg));
760 } while (cc > 0 && (rt->rtm_seq != seq || rt->rtm_pid != pid));
761 if (cc == -1) {
807 cc = read(r, rt, sizeof(rtmsg));
808 } while (cc >
[all...]
/freebsd-11-stable/sys/dev/cxgbe/tom/
H A Dt4_connect.c57 #include <netinet/cc/cc.h>
216 struct cc_algo *cc = CC_ALGO(tp); local
218 if (strcasecmp(cc->name, "reno") == 0)
220 else if (strcasecmp(cc->name, "tahoe") == 0)
222 if (strcasecmp(cc->name, "newreno") == 0)
224 if (strcasecmp(cc->name, "highspeed") == 0)
/freebsd-11-stable/sys/dev/vkbd/
H A Dvkbd.c104 int cc; /* number of codes in queue */ member in struct:vkbd_queue
273 state->ks_inq.head = state->ks_inq.tail = state->ks_inq.cc = 0;
382 if (q->cc == 0)
411 q->cc += avail;
462 if (q->cc < nitems(q->q))
509 return (state->ks_inq.cc > 0);
521 if (q->cc == 0)
525 q->cc --;
628 state->ks_inq.head = state->ks_inq.tail = state->ks_inq.cc = 0;
1242 state->ks_inq.head = state->ks_inq.tail = state->ks_inq.cc
[all...]
/freebsd-11-stable/sbin/ping6/
H A Dping6.c293 int cc, i; local
1140 cc = recvmsg(s, &m, 0);
1141 if (cc < 0) {
1147 } else if (cc == 0) {
1167 pr_pack(packet, cc, &m);
1266 int i, cc; local
1292 cc = ICMP6_NIQLEN + sizeof(dst.sin6_addr);
1305 cc = ICMP6_NIQLEN;
1319 cc = ICMP6_NIQLEN + sizeof(dst.sin6_addr);
1331 cc
1464 pr_pack(u_char *buf, int cc, struct msghdr *mhdr) argument
[all...]
/freebsd-11-stable/contrib/bmake/unit-tests/
H A Dposix1.exp48 cc -c -o 'dir/obj_1.o' 'dir/obj_1.c'
134 cc -c -o 'obj2.o' 'obj_2.c'
181 cc -c -o 'obj3.o' 'obj3.c'
H A Dposix1.mk120 cc -c -o '${%}' '${<}'
129 cc -c -o '${@}' '${<}'
172 cc -c -o '${@}' 'obj_2.c'
/freebsd-11-stable/sys/dev/hwpmc/
H A Dhwpmc_mips.c747 pmc_save_kernel_callchain(uintptr_t *cc, int nframes, argument
757 cc[frames++] = pc;
770 cc[frames++] = pc;
778 pmc_save_user_callchain(uintptr_t *cc, int nframes, argument
788 cc[frames++] = pc;
802 cc[frames++] = pc;
/freebsd-11-stable/crypto/openssl/util/pl/
H A DVC-32.pl33 $cc='cl';
116 $cc=($ENV{CC} or "cl");
121 if (`$cc 2>&1` =~ /Version ([0-9]+)\./ && $1>=14) {
/freebsd-11-stable/share/mk/
H A Dsys.mk131 .SUFFIXES: .out .a .ln .o .c .cc .cpp .cxx .C .m .F .f .e .r .y .l .S .asm .s .cl .p .h .sh
153 CC ?= cc
242 OBJC ?= cc
338 .cc.ln .C.ln .cpp.ln .cxx.ln:
350 .cc .cpp .cxx .C:
353 .cc.o .cpp.o .cxx.o .C.o:

Completed in 370 milliseconds

<<11121314151617181920>>