Searched refs:cc (Results 151 - 175 of 658) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_radar.c138 HAL_CHANNEL_INTERNAL *base, *cc;
145 cc = AH_PRIVATE(ah)->ah_curchan;
146 if (cc != AH_NULL && cc->channel == c->channel &&
147 (cc->channel_flags & CHAN_FLAGS) == flags) {
148 return cc;
157 cc = &base[lim >> 1];
158 d = c->channel - cc->channel;
160 if ((cc->channel_flags & CHAN_FLAGS) == flags) {
161 return cc;
[all...]
/freebsd-11-stable/crypto/openssl/crypto/bf/
H A Dbfspeed.c173 long ca, cb, cc; local
197 cc = count * 8 / BUFSIZE + 1;
244 printf("Doing BF_cbc_encrypt %ld times on %ld byte blocks\n", cc,
248 for (count = 0, run = 1; COND(cc); count++)
253 c = ((double)COUNT(cc) * BUFSIZE) / d;
/freebsd-11-stable/crypto/openssl/crypto/cast/
H A Dcast_spd.c173 long ca, cb, cc; local
197 cc = count * 8 / BUFSIZE + 1;
244 printf("Doing CAST_cbc_encrypt %ld times on %ld byte blocks\n", cc,
248 for (count = 0, run = 1; COND(cc); count++)
253 c = ((double)COUNT(cc) * BUFSIZE) / d;
/freebsd-11-stable/sys/sparc64/sparc64/
H A Din_cksum.c92 "addc %0, 0, %0" : "=r" (sum), "=&r" (tmp) : "0" (sum) : "cc")
110 : "=r" (sum), "=&r" (tmp) : "0" (sum), "r" (addr) : "cc"
174 LD32_ADD32(0, cc)
188 LD64_ADD32(0, cc)
202 LD64_ADD32(0, cc)
213 LD64_ADD32(0, cc)
222 LD64_ADD32(0, cc)
/freebsd-11-stable/sys/dev/hyperv/utilities/
H A Dunicode.h105 uint32_t cc; local
115 cc = ((s[spos] & 0x03) << 18) | ((s[spos+1] & 0x3f) << 12)
118 if (cc < 0x10000) {
124 dst[dpos] = (0xd800 | ((cc-0x10000)>>10));
126 c = 0xdc00 | ((cc-0x10000) & 0x3ffff);
/freebsd-11-stable/crypto/openssl/crypto/rc2/
H A Drc2speed.c173 long ca, cb, cc; local
197 cc = count * 8 / BUFSIZE + 1;
244 printf("Doing RC2_cbc_encrypt %ld times on %ld byte blocks\n", cc,
248 for (count = 0, run = 1; COND(cc); count++)
253 c = ((double)COUNT(cc) * BUFSIZE) / d;
/freebsd-11-stable/crypto/openssl/crypto/rc4/
H A Drc4speed.c173 long ca, cb, cc; local
196 cc = count * 8 / BUFSIZE + 1;
223 printf("Doing RC4 %ld times on %ld byte blocks\n", cc, BUFSIZE);
226 for (count = 0, run = 1; COND(cc); count++)
231 c = ((double)COUNT(cc) * BUFSIZE) / d;
/freebsd-11-stable/crypto/openssl/crypto/rc5/
H A Drc5speed.c173 long ca, cb, cc; local
197 cc = count * 8 / BUFSIZE + 1;
244 printf("Doing RC5_32_cbc_encrypt %ld times on %ld byte blocks\n", cc,
248 for (count = 0, run = 1; COND(cc); count++)
253 c = ((double)COUNT(cc) * BUFSIZE) / d;
/freebsd-11-stable/usr.bin/talk/
H A Dinit_disp.c128 int cc; local
144 cc = write(sockt, buf, sizeof(buf));
145 if (cc != sizeof(buf) )
147 cc = read(sockt, buf, sizeof(buf));
148 if (cc != sizeof(buf) )
/freebsd-11-stable/usr.sbin/rwhod/
H A Drwhod.c141 void Sendto(int s, const void *buf, size_t cc, int flags,
358 int cc, whod; local
378 cc = recvfrom(s, &wd, sizeof(wd), 0, (struct sockaddr *)&from,
380 if (cc <= 0) {
381 if (cc < 0 && errno != EINTR)
390 if (cc < WHDRSIZE) {
424 n = (cc - WHDRSIZE) / sizeof(struct whoent);
441 (void) write(whod, (char *)&wd, cc);
442 if (fstat(whod, &st) < 0 || st.st_size > cc)
443 ftruncate(whod, cc);
455 int i, cc, status; local
721 Sendto(int s, const void *buf, size_t cc, int flags, const struct sockaddr *to, int tolen) argument
[all...]
/freebsd-11-stable/sys/dev/mlx5/mlx5_core/
H A Dwq.h67 u32 cc; /* consumer counter */ member in struct:mlx5_cqwq
120 return wq->cc & wq->sz_m1;
130 return wq->cc >> wq->log_sz;
135 wq->cc++;
140 *wq->db = cpu_to_be32(wq->cc & 0xffffff);
/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/usr.sbin/timed/timedc/
H A Dcmds.c264 ssize_t cc; local
317 cc = recvfrom(sock, &msg, sizeof(struct tsp), 0,
319 if (cc < 0) {
328 if (cc < (sizeof(struct tsp) - MAXHOSTNAMELEN + 32)) {
331 cc, sizeof(struct tsp) - MAXHOSTNAMELEN + 32,
421 ssize_t cc; local
470 cc = recvfrom(sock, &msg, sizeof(struct tsp), 0,
472 if (cc < 0) {
481 if (cc < (sizeof(struct tsp) - MAXHOSTNAMELEN + 32)) {
483 cc, sizeo
[all...]
/freebsd-11-stable/contrib/libpcap/
H A Dpcap-snit.c22 * Micky Liu, micky@cunixc.cc.columbia.edu, Columbia University in May, 1989.
119 register int cc, n; local
127 cc = p->cc;
128 if (cc == 0) {
129 cc = read(p->fd, (char *)p->buffer, p->bufsize);
130 if (cc < 0) {
145 ep = bp + cc;
162 p->cc = ep - bp;
200 p->cc
[all...]
/freebsd-11-stable/sys/x86/x86/
H A Dmca.c593 struct cmc_state *cc; local
599 cc = &cmc_state[PCPU_GET(cpuid)][bank];
604 new_threshold = update_threshold(mode, valid, cc->last_intr, count,
605 cur_threshold, cc->max_threshold);
608 cc->last_intr = time_uptime;
619 struct amd_et_state *cc; local
626 cc = &amd_et_state[PCPU_GET(cpuid)];
629 count = count - (MC_MISC_AMDNB_CNT_MAX - cc->cur_threshold);
631 new_threshold = update_threshold(mode, valid, cc->last_intr, count,
632 cc
882 struct cmc_state *cc; local
926 struct cmc_state *cc; local
944 amd_thresholding_start(struct amd_et_state *cc) argument
966 struct amd_et_state *cc; local
1007 struct amd_et_state *cc; local
[all...]
/freebsd-11-stable/share/mk/
H A Dbsd.compiler.mk109 .for cc X_ in CC $${_empty_var_} XCC X_
110 .if ${cc} == "CC" || !empty(XCC)
116 ${X_}_cc_hash= ${${cc}}${MACHINE}${PATH}
133 .if ${cc} == "CC" || (${cc} == "XCC" && ${XCC} != ${CC})
141 _v!= ${${cc}:N${CCACHE_BIN}} --version || echo 0.0.0
144 . if ${${cc}:T:M*gcc*}
146 . elif ${${cc}:T:M*clang*}
155 .error Unable to determine compiler type for ${cc}=${${cc}}
[all...]
/freebsd-11-stable/usr.bin/localedef/
H A Dcollate.c558 collchar_t *cc; local
562 cc = RB_FIND(collchars, &collchars, &srch);
563 if ((cc == NULL) && create) {
564 if ((cc = calloc(1, sizeof(*cc))) == NULL) {
569 cc->ref[i] = new_pri();
571 cc->wc = wc;
572 RB_INSERT(collchars, &collchars, cc);
574 return (cc);
712 collchar_t *cc; local
875 collchar_t *cc; local
985 collchar_t *cc; local
1114 collchar_t *cc; local
[all...]
/freebsd-11-stable/sys/dev/ath/ath_hal/
H A Dah_regdomain.c165 uint16_t cc = rd &~ COUNTRY_ERD_FLAG; local
167 if (allCountries[i].countryCode == cc)
238 uint16_t cc = rd & ~COUNTRY_ERD_FLAG; local
239 country = findCountry(cc);
241 return cc;
263 getregstate(struct ath_hal *ah, HAL_CTRY_CODE cc, HAL_REG_DOMAIN regDmn, argument
270 if (cc == CTRY_DEFAULT && regDmn == SKU_NONE) {
284 cc = getDefaultCountry(ah);
285 country = findCountry(cc);
288 "NULL Country!, cc
596 getchannels(struct ath_hal *ah, struct ieee80211_channel chans[], u_int maxchans, int *nchans, u_int modeSelect, HAL_CTRY_CODE cc, HAL_REG_DOMAIN regDmn, HAL_BOOL enableExtendedChannels, COUNTRY_CODE_TO_ENUM_RD **pcountry, REG_DOMAIN **prd2GHz, REG_DOMAIN **prd5GHz) argument
659 ath_hal_getchannels(struct ath_hal *ah, struct ieee80211_channel chans[], u_int maxchans, int *nchans, u_int modeSelect, HAL_CTRY_CODE cc, HAL_REG_DOMAIN regDmn, HAL_BOOL enableExtendedChannels) argument
754 ath_hal_init_channels(struct ath_hal *ah, struct ieee80211_channel chans[], u_int maxchans, int *nchans, u_int modeSelect, HAL_CTRY_CODE cc, HAL_REG_DOMAIN regDmn, HAL_BOOL enableExtendedChannels) argument
786 ath_hal_set_channels(struct ath_hal *ah, struct ieee80211_channel chans[], int nchans, HAL_CTRY_CODE cc, HAL_REG_DOMAIN rd) argument
840 HAL_CHANNEL_INTERNAL *cc = &AH_PRIVATE(ah)->ah_channels[c->ic_devdata]; local
[all...]
/freebsd-11-stable/contrib/opie/libopie/
H A Dbtoe.c2230 unsigned char cc; local
2238 cc = (y >> 8) & 0xff;
2242 s[start / 8 + 1] |= cc;
2246 s[start / 8] |= cc;
2257 unsigned char cc; local
2261 cc = s[start / 8 + 1];
2263 x = ((UINT4) (cl << 8 | cc) << 8 | cr);
/freebsd-11-stable/crypto/heimdal/lib/wind/
H A Dnormalize.c201 int cc = _wind_combining_class(tmp[i]); local
202 if (cc) {
272 int cc; local
277 cc = _wind_combining_class(in[i]);
278 if (old_cc != cc && (comb = find_composition(v, 2))) {
280 } else if (cc == 0) {
286 old_cc = cc;
/freebsd-11-stable/usr.bin/locate/locate/
H A Dfastfind.c143 register int c, cc; local
180 cc = *patend;
254 if (c == cc)
264 if (bigram1[c] == cc ||
265 bigram2[c] == cc)
290 if (*s == cc
292 || TOLOWER(*s) == cc
/freebsd-11-stable/stand/libsa/
H A Drpc.c114 ssize_t cc, rsize; local
168 cc = sendrecv(d,
174 printf("callrpc: cc=%zd\n", cc);
176 if (cc == -1)
179 if (cc <= sizeof(*reply)) {
208 rsize = cc - sizeof(*reply);
388 ssize_t cc; local
414 cc = rpc_call(d, PMAPPROG, PMAPVERS, PMAPPROC_GETPORT,
416 if (cc < sizeo
[all...]
/freebsd-11-stable/contrib/ntp/lib/isc/unix/
H A Dkeyboard.c99 ssize_t cc; local
106 cc = read(keyboard->fd, &c, 1);
107 if (cc < 0) {
/freebsd-11-stable/contrib/opie/
H A Dglob.c142 int c, cc; local
151 while (cc = *p++) {
152 if (cc == ']') {
157 if (cc == '-') {
161 if (scc == (lc = cc))
164 if (cc == 0)
557 int c, cc; local
570 while (cc = *p++) {
571 if (cc == ']') {
576 if (cc
[all...]
/freebsd-11-stable/contrib/bmake/mk/sys/
H A DDarwin.mk30 CC?= cc -pipe
43 COMPILE.cc?= ${CXX} ${CXXFLAGS} ${CPPFLAGS} -c
44 LINK.cc?= ${CXX} ${CXXFLAGS} ${CPPFLAGS} ${LDFLAGS}
116 ${LINK.cc} -o ${.TARGET} ${.IMPSRC} ${LDLIBS}
118 ${COMPILE.cc} ${.IMPSRC}
120 ${COMPILE.cc} ${.IMPSRC}

Completed in 170 milliseconds

1234567891011>>