Searched refs:cc (Results 776 - 800 of 2210) sorted by relevance

<<31323334353637383940>>

/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
H A Dexcept-multi-location.exp35 set srcfile_lib ${srcdir}/${subdir}/${libname}.cc
44 set srcfile ${srcdir}/${subdir}/${testfile}.cc
/netbsd-current/external/gpl3/gdb.old/dist/sim/testsuite/bfin/
H A Dtest.h64 cc = reg == scratch_reg; \
66 if !cc jump fail_lvl;
69 cc = reg == scratch_reg; \
70 if cc jump 9f; \
/netbsd-current/sbin/ping/
H A Dping.c739 int cc; local
791 cc = prog_poll(fdmaskp, 1, (int)(sec * 1000));
794 if (cc <= 0) {
795 if (cc < 0) {
805 cc = prog_recvfrom(s, (char *) packet, packlen,
808 if (cc < 0) {
817 pr_pack(packet, cc, &from);
897 int i, cc, sw; local
951 cc = MAX(datalen, ICMP_MINLEN) + PHDR_LEN;
953 opack_icmp.icmp_cksum = in_cksum((u_int16_t *)&opack_icmp, cc);
1023 pr_pack_sub(int cc, char *addr, int seqno, int dupflag, int ttl, double triptime) argument
1507 ck_pr_icmph(struct icmp *icp, struct sockaddr_in *from, int cc, int override) argument
1554 pr_icmph(struct icmp *icp, struct sockaddr_in *from, int cc) argument
1762 pr_iph(struct icmp *icp, int cc) argument
1834 pr_retip(struct icmp *icp, int cc) argument
[all...]
/netbsd-current/sys/kern/
H A Dsubr_pool.c1865 pool_cache_cpu_t *cc; local
1965 if ((cc = pc->pc_cpus[i]) == NULL)
1967 cpuhit += cc->cc_hits;
1968 cpumiss += cc->cc_misses;
1969 pcmiss += cc->cc_pcmisses;
1970 nfull += cc->cc_nfull;
2247 pool_cache_cpu_t *cc; local
2254 if ((cc = pc->pc_cpus[index]) != NULL) {
2263 cc = &pc->pc_cpu0;
2267 cc
2468 pool_cache_cpu_t *cc; local
2631 pool_cache_get_slow(pool_cache_t pc, pool_cache_cpu_t *cc, int s, void **objectp, paddr_t *pap, int flags) argument
2702 pool_cache_cpu_t *cc; local
2787 pool_cache_put_slow(pool_cache_t pc, pool_cache_cpu_t *cc, int s, void *object) argument
2853 pool_cache_cpu_t *cc; local
2915 pool_cache_cpu_t *cc; local
3393 pool_cache_cpu_t *cc; local
3430 pool_cache_cpu_t *cc; local
[all...]
H A Dsubr_userconf.c276 u_char cc = *c; local
278 if (cc >= '0' && cc <= '9')
279 cc = cc - '0';
280 else if (cc >= 'a' && cc <= 'f')
281 cc = cc - 'a' + 10;
282 else if (cc >
[all...]
H A Dtty_pty.c436 int cc, c; local
475 cc = tp->t_canq.c_cc;
477 if (cc)
650 int error = 0, cc; local
678 cc = uimin(uio->uio_resid,
681 cc, uio);
717 cc = q_to_b(&tp->t_outq, bf, uimin(uio->uio_resid, BUFSIZ));
718 if (cc <= 0)
721 error = uiomove(bf, cc, uio);
739 int cc local
1062 u_char *cc = tp->t_cc; local
[all...]
/netbsd-current/lib/libm/noieee_src/
H A Dn_j0.c144 double z, s,c,ss,cc,r,u,v; local
158 cc = s+c;
161 if ((s*c)<zero) cc = z/ss;
162 else ss = z/cc;
165 * j0(x) = 1/sqrt(pi) * (P(0,x)*cc - Q(0,x)*ss) / sqrt(x)
166 * y0(x) = 1/sqrt(pi) * (P(0,x)*ss + Q(0,x)*cc) / sqrt(x)
170 z = (invsqrtpi*cc)/sqrt(x);
175 z = invsqrtpi*(u*cc-v*ss)/sqrt(x);
213 double z, s, c, ss, cc, u, v; local
251 cc
[all...]
H A Dn_j1.c149 double z, s,c,ss,cc,r,u,v,y; local
164 cc = s-c;
167 if ((s*c)<zero) cc = z/ss;
168 else ss = z/cc;
171 * j1(x) = 1/sqrt(pi) * (P(1,x)*cc - Q(1,x)*ss) / sqrt(x)
172 * y1(x) = 1/sqrt(pi) * (P(1,x)*ss + Q(1,x)*cc) / sqrt(x)
176 z = (invsqrtpi*cc)/sqrt(y);
181 z = invsqrtpi*(u*cc-v*ss)/sqrt(y);
214 double z, s, c, ss, cc, u, v; local
243 cc
[all...]
/netbsd-current/lib/libm/src/
H A De_j0.c89 double z, s,c,ss,cc,r,u,v; local
100 cc = s+c;
103 if ((s*c)<zero) cc = z/ss;
104 else ss = z/cc;
107 * j0(x) = 1/sqrt(pi) * (P(0,x)*cc - Q(0,x)*ss) / sqrt(x)
108 * y0(x) = 1/sqrt(pi) * (P(0,x)*ss + Q(0,x)*cc) / sqrt(x)
110 if(ix>0x48000000) z = (invsqrtpi*cc)/sqrt(x);
113 z = invsqrtpi*(u*cc-v*ss)/sqrt(x);
150 double z, s,c,ss,cc,u,v; local
174 cc
[all...]
H A De_j1.c90 double z, s,c,ss,cc,r,u,v,y; local
101 cc = s-c;
104 if ((s*c)>zero) cc = z/ss;
105 else ss = z/cc;
108 * j1(x) = 1/sqrt(pi) * (P(1,x)*cc - Q(1,x)*ss) / sqrt(x)
109 * y1(x) = 1/sqrt(pi) * (P(1,x)*ss + Q(1,x)*cc) / sqrt(x)
111 if(ix>0x48000000) z = (invsqrtpi*cc)/sqrt(y);
114 z = invsqrtpi*(u*cc-v*ss)/sqrt(y);
147 double z, s,c,ss,cc,u,v; local
160 cc
[all...]
H A De_j0f.c47 float z, s,c,ss,cc,r,u,v; local
58 cc = s+c;
61 if ((s*c)<zero) cc = z/ss;
62 else ss = z/cc;
65 * j0(x) = 1/sqrt(pi) * (P(0,x)*cc - Q(0,x)*ss) / sqrt(x)
66 * y0(x) = 1/sqrt(pi) * (P(0,x)*ss + Q(0,x)*cc) / sqrt(x)
69 if(ix>0x80000000) z = (invsqrtpi*cc)/sqrtf(x);
74 z = invsqrtpi*(u*cc-v*ss)/sqrtf(x);
111 float z, s,c,ss,cc,u,v; local
135 cc
[all...]
H A De_j1f.c48 float z, s,c,ss,cc,r,u,v,y; local
59 cc = s-c;
62 if ((s*c)>zero) cc = z/ss;
63 else ss = z/cc;
66 * j1(x) = 1/sqrt(pi) * (P(1,x)*cc - Q(1,x)*ss) / sqrt(x)
67 * y1(x) = 1/sqrt(pi) * (P(1,x)*ss + Q(1,x)*cc) / sqrt(x)
70 if(ix>0x80000000) z = (invsqrtpi*cc)/sqrtf(y);
75 z = invsqrtpi*(u*cc-v*ss)/sqrtf(y);
108 float z, s,c,ss,cc,u,v; local
121 cc
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdbsupport/
H A DMakefile.in411 @SELFTEST_TRUE@selftest = selftest.cc
412 @HAVE_PIPE_OR_PIPE2_TRUE@eventpipe = event-pipe.cc
414 agent.cc \
415 btrace-common.cc \
416 cleanups.cc \
417 common-debug.cc \
418 common-exceptions.cc \
419 common-inferior.cc \
420 common-regcache.cc \
421 common-utils.cc \
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdbsupport/
H A DMakefile.in364 @SELFTEST_TRUE@selftest = selftest.cc
365 @HAVE_PIPE_OR_PIPE2_TRUE@eventpipe = event-pipe.cc
367 agent.cc \
368 btrace-common.cc \
369 buffer.cc \
370 cleanups.cc \
371 common-debug.cc \
372 common-exceptions.cc \
373 common-inferior.cc \
374 common-regcache.cc \
[all...]
/netbsd-current/external/gpl2/grep/dist/src/
H A Dvms_fab.c22 fab = cc$rms_fab;
23 nam = cc$rms_nam;
/netbsd-current/crypto/external/bsd/netpgp/dist/src/librsa/
H A Drsastubs.c58 int cc; local
65 cc = (*cb)(phrase, sizeof(phrase), 0, u);
/netbsd-current/external/bsd/pcc/libexec/ccom/
H A DMakefile7 .PATH: ${PCC_DIST}/cc/ccom \
29 CPPFLAGS+= -I${PCC_DIST}/cc/ccom
/netbsd-current/external/bsd/pcc/libexec/cxxcom/
H A DMakefile7 .PATH: ${PCC_DIST}/cc/cxxcom \
30 CPPFLAGS+= -I${PCC_DIST}/cc/cxxcom
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/scripts/
H A Dtestsuite_flags.in18 --build-cc
53 --build-cc)
/netbsd-current/share/mk/
H A Dbsd.host.mk18 HOST_CC?= cc
21 HOST_COMPILE.cc?= ${HOST_CXX} ${HOST_CXXFLAGS} ${HOST_DTRACE_OPTS} ${HOST_CPPFLAGS} -c
22 HOST_LINK.cc?= ${HOST_CXX} ${HOST_CXXFLAGS} ${HOST_CPPFLAGS} ${HOST_LDFLAGS}
24 HOST_LINK.c?= ${HOST_LINK.cc}
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/
H A Dvms_rms.h12 # define CC_RMS_NAMX cc$rms_naml
38 # define CC_RMS_NAMX cc$rms_nam
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/
H A Dvms_rms.h12 # define CC_RMS_NAMX cc$rms_naml
38 # define CC_RMS_NAMX cc$rms_nam
/netbsd-current/crypto/external/bsd/heimdal/dist/include/hcrypto/
H A DMakefile.am17 evp-cc.h \
/netbsd-current/crypto/external/bsd/openssl/dist/Configurations/
H A D50-cppbuilder.conf7 cc => "bcc32c",
/netbsd-current/external/gpl3/gcc/dist/libcpp/
H A DMakefile.in92 libcpp_a_SOURCES = charset.cc directives.cc errors.cc \
93 expr.cc files.cc identifiers.cc init.cc lex.cc line-map.cc macro.cc \
[all...]

Completed in 385 milliseconds

<<31323334353637383940>>