Searched refs:cc (Results 126 - 150 of 658) sorted by relevance

1234567891011>>

/freebsd-11-stable/lib/msun/src/
H A De_j1f.c51 float z, s,c,ss,cc,r,u,v,y; local
61 cc = s-c;
64 if ((s*c)>zero) cc = z/ss;
65 else ss = z/cc;
68 * j1(x) = 1/sqrt(pi) * (P(1,x)*cc - Q(1,x)*ss) / sqrt(x)
69 * y1(x) = 1/sqrt(pi) * (P(1,x)*ss + Q(1,x)*cc) / sqrt(x)
71 if(ix>0x58000000) z = (invsqrtpi*cc)/sqrtf(y); /* |x|>2**49 */
74 z = invsqrtpi*(u*cc-v*ss)/sqrtf(y);
107 float z, s,c,ss,cc,u,v; local
118 cc
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/
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.multiprov.ksh67 cc -c $oogle.c
90 cc -o test test.c $objs
H A Dtst.noreap.ksh54 cc -c test.c
64 cc -o test test.o prov.o
H A Dtst.noreapring.ksh54 cc -c test.c
64 cc -o test test.o prov.o
H A Dtst.reap.ksh54 cc -c test.c
64 cc -o test test.o prov.o
H A Dtst.sameprovmulti.ksh62 cc -c $oogle.c
82 cc -o test test.c $objs
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
H A Dtst.enabled2.ksh80 cc -c -O2 test.c
90 cc -o test test.o prov.o
/freebsd-11-stable/crypto/heimdal/include/hcrypto/
H A DMakefile.am17 evp-cc.h \
/freebsd-11-stable/usr.bin/mkdep/
H A Dmkdep.sh72 cc -M $* |
/freebsd-11-stable/crypto/openssl/crypto/
H A Dvms_rms.h4 # define CC_RMS_NAMX cc$rms_naml
30 # define CC_RMS_NAMX cc$rms_nam
/freebsd-11-stable/cddl/usr.sbin/zfsd/tests/
H A DMakefile7 SRCS.zfsd_unittest:= ${SRCS:Nzfsd_main.cc}
8 SRCS.zfsd_unittest+= libmocks.c zfsd_unittest.cc
/freebsd-11-stable/contrib/libpcap/
H A Dmkdep17 CC=cc # default C compiler is "cc"
48 echo 'usage: mkdep [-p] [-c cc] [-f makefile] [-m dependency-cflag] [flags] file ...'
72 # lines will try and replace the "cc -M". The real problem is that this
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/
H A Dtst.provregex3.ksh50 cc -o main main.o prov.o
53 cc -c main.c
/freebsd-11-stable/contrib/tcpdump/
H A Dmkdep17 CC=cc # default C compiler is "cc"
48 echo 'usage: mkdep [-p] [-c cc] [-f makefile] [-m dependency-cflag] [flags] file ...'
72 # lines will try and replace the "cc -M". The real problem is that this
/freebsd-11-stable/usr.bin/bmake/
H A DMakefile.config14 CC?= cc
/freebsd-11-stable/usr.bin/unifdef/
H A Dunifdefall.sh55 cc -E -dM "$@" | sort >"$tmp/defs"
/freebsd-11-stable/usr.bin/seq/
H A Dseq.c460 char cc = '\0'; local
474 cc = 'e';
479 cc = 'e';
487 cc = 'e';
494 precision, precision, (cc) ? cc : 'f');
497 (cc) ? cc : 'g');
/freebsd-11-stable/sys/dev/mlx5/mlx5_fpga/
H A Dconn.h73 unsigned int cc; member in struct:mlx5_fpga_conn::__anon4927::__anon4928
80 unsigned int cc; member in struct:mlx5_fpga_conn::__anon4927::__anon4929
/freebsd-11-stable/contrib/libpcap/testprogs/
H A Dfiltertest.c91 register int i, fd, cc; local
106 cc = read(fd, cp, (u_int)buf.st_size);
107 if (cc < 0)
109 if (cc != buf.st_size)
110 error("short read %s (%d != %d)", fname, cc, (int)buf.st_size);
114 for (i = 0; i < cc; i++) {
116 while (i < cc && cp[i] != '\n')
119 cp[cc] = '\0';
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 146 milliseconds

1234567891011>>