Searched refs:cc (Results 101 - 125 of 550) sorted by relevance

1234567891011>>

/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/
H A Dtst.provregex4.ksh50 cc -o main main.o provmain.o
53 cc -c main.c
62 cc -z defs -G -o altlib.so altlib.o provalt.o -lc
65 cc -c altlib.c
H A Dtst.provregex3.ksh50 cc -o main main.o prov.o
53 cc -c main.c
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/printa/
H A Dtst.largeusersym.ksh53 cc -o test test.c
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/
H A Dtst.linkpriv.ksh65 cc -c test.c
75 cc -o test test.o prov.o
H A Dtst.linkunpriv.ksh67 cc -c test.c
77 cc -o test test.o prov.o
H A Dtst.enabled2.ksh80 cc -c -xO2 test.c
90 cc -o test test.o prov.o
H A Dtst.entryreturn.ksh73 cc -c test.c
83 cc -o test test.o prov.o
H A Dtst.guess32.ksh64 cc -xarch=generic -c test.c
74 cc -xarch=generic -o test test.o prov.o
H A Dtst.guess64.ksh64 cc -xarch=generic64 -c test.c
74 cc -xarch=generic64 -o test test.o prov.o
H A Dtst.static.ksh66 cc -c test.c
76 cc -o test test.o prov.o
H A Dtst.static2.ksh70 cc -c test.c
86 cc -o test test.o prov.o
/freebsd-10.0-release/contrib/atf/atf-c/
H A Dpkg_config_test.sh82 atf_check -s eq:0 -o save:stdout -e empty pkg-config --variable=cc atf-c
83 cc=$(cat stdout)
119 atf_check -s eq:0 -o empty -e empty ${cc} ${cflags} -o tp.o -c tp.c
120 atf_check -s eq:0 -o empty -e empty ${cc} ${ldflags} -o tp tp.o ${libs}
/freebsd-10.0-release/contrib/libpcap/
H A Dpcap-pf.c91 register int cc, n, buflen, inc; local
101 cc = pc->cc;
102 if (cc == 0) {
103 cc = read(pc->fd, (char *)pc->buffer + pc->offset, pc->bufsize);
104 if (cc < 0) {
132 while (cc > 0) {
147 pc->cc = cc;
152 if (cc < sizeo
[all...]
H A Dmkdep20 CC=cc # default C compiler is "cc"
45 echo 'usage: mkdep [-p] [-c cc] [-f makefile] [flags] file ...'
69 # lines will try and replace the "cc -M". The real problem is that this
/freebsd-10.0-release/gnu/usr.bin/
H A DMakefile43 _cc= cc
/freebsd-10.0-release/usr.bin/script/
H A Dscript.c93 int cc; local
251 cc = read(STDIN_FILENO, ibuf, BUFSIZ);
252 if (cc < 0)
254 if (cc == 0) {
261 if (cc > 0) {
263 record(fscript, ibuf, cc, 'i');
264 (void)write(master, ibuf, cc);
267 (void)fwrite(ibuf, 1, cc, fscript);
272 cc = read(master, obuf, sizeof (obuf));
273 if (cc <
372 record(FILE *fp, char *buf, size_t cc, int direction) argument
[all...]
/freebsd-10.0-release/usr.sbin/pmcstat/
H A Dpmcpl_callgraph.h62 uint32_t nsamples, uintfptr_t *cc, int usermode, uint32_t cpu);
/freebsd-10.0-release/lib/msun/src/
H A De_j0.c87 double z, s,c,ss,cc,r,u,v; local
98 cc = s+c;
101 if ((s*c)<zero) cc = z/ss;
102 else ss = z/cc;
105 * j0(x) = 1/sqrt(pi) * (P(0,x)*cc - Q(0,x)*ss) / sqrt(x)
106 * y0(x) = 1/sqrt(pi) * (P(0,x)*ss + Q(0,x)*cc) / sqrt(x)
108 if(ix>0x48000000) z = (invsqrtpi*cc)/sqrt(x);
111 z = invsqrtpi*(u*cc-v*ss)/sqrt(x);
148 double z, s,c,ss,cc,u,v; local
172 cc
[all...]
H A De_j0f.c44 float z, s,c,ss,cc,r,u,v; local
55 cc = s+c;
58 if ((s*c)<zero) cc = z/ss;
59 else ss = z/cc;
62 * j0(x) = 1/sqrt(pi) * (P(0,x)*cc - Q(0,x)*ss) / sqrt(x)
63 * y0(x) = 1/sqrt(pi) * (P(0,x)*ss + Q(0,x)*cc) / sqrt(x)
65 if(ix>0x80000000) z = (invsqrtpi*cc)/sqrtf(x);
68 z = invsqrtpi*(u*cc-v*ss)/sqrtf(x);
105 float z, s,c,ss,cc,u,v; local
129 cc
[all...]
H A De_j1.c88 double z, s,c,ss,cc,r,u,v,y; local
99 cc = s-c;
102 if ((s*c)>zero) cc = z/ss;
103 else ss = z/cc;
106 * j1(x) = 1/sqrt(pi) * (P(1,x)*cc - Q(1,x)*ss) / sqrt(x)
107 * y1(x) = 1/sqrt(pi) * (P(1,x)*ss + Q(1,x)*cc) / sqrt(x)
109 if(ix>0x48000000) z = (invsqrtpi*cc)/sqrt(y);
112 z = invsqrtpi*(u*cc-v*ss)/sqrt(y);
145 double z, s,c,ss,cc,u,v; local
158 cc
[all...]
H A De_j1f.c45 float z, s,c,ss,cc,r,u,v,y; local
56 cc = s-c;
59 if ((s*c)>zero) cc = z/ss;
60 else ss = z/cc;
63 * j1(x) = 1/sqrt(pi) * (P(1,x)*cc - Q(1,x)*ss) / sqrt(x)
64 * y1(x) = 1/sqrt(pi) * (P(1,x)*ss + Q(1,x)*cc) / sqrt(x)
66 if(ix>0x80000000) z = (invsqrtpi*cc)/sqrtf(y);
69 z = invsqrtpi*(u*cc-v*ss)/sqrtf(y);
102 float z, s,c,ss,cc,u,v; local
115 cc
[all...]
/freebsd-10.0-release/contrib/tcpdump/
H A Dmkdep20 CC=cc # default C compiler is "cc"
45 echo 'usage: mkdep [-p] [-c cc] [-f makefile] [flags] file ...'
69 # lines will try and replace the "cc -M". The real problem is that this
/freebsd-10.0-release/crypto/openssl/crypto/
H A Dvms_rms.h4 # define CC_RMS_NAMX cc$rms_naml
30 # define CC_RMS_NAMX cc$rms_nam
/freebsd-10.0-release/crypto/openssl/util/pl/
H A Dunix.pl14 $cc='gcc';
22 $cc='cc';
/freebsd-10.0-release/usr.bin/mkdep/
H A Dmkdep.sh72 cc -M $* |

Completed in 235 milliseconds

1234567891011>>