Searched refs:nf (Results 1 - 25 of 160) sorted by relevance

1234567

/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/
H A Dar9285.c44 int16_t nf; local
46 nf = MS(OS_REG_READ(ah, AR_PHY_CCA), AR9280_PHY_MINCCA_PWR);
47 if (nf & 0x100)
48 nf = 0 - ((nf ^ 0x1ff) + 1);
50 "NF calibrated [ctl] [chain 0] is %d\n", nf);
51 nfarray[0] = nf;
54 nf = MS(OS_REG_READ(ah, AR_PHY_EXT_CCA), AR9280_PHY_EXT_MINCCA_PWR);
55 if (nf & 0x100)
56 nf
[all...]
H A Dar9280.c355 int16_t nf; local
357 nf = MS(OS_REG_READ(ah, AR_PHY_CCA), AR9280_PHY_MINCCA_PWR);
358 if (nf & 0x100)
359 nf = 0 - ((nf ^ 0x1ff) + 1);
361 "NF calibrated [ctl] [chain 0] is %d\n", nf);
362 nfarray[0] = nf;
364 nf = MS(OS_REG_READ(ah, AR_PHY_CH1_CCA), AR9280_PHY_CH1_MINCCA_PWR);
365 if (nf & 0x100)
366 nf
[all...]
H A Dar9287.c297 int16_t nf; local
299 nf = MS(OS_REG_READ(ah, AR_PHY_CCA), AR9280_PHY_MINCCA_PWR);
300 if (nf & 0x100)
301 nf = 0 - ((nf ^ 0x1ff) + 1);
303 "NF calibrated [ctl] [chain 0] is %d\n", nf);
304 nfarray[0] = nf;
306 nf = MS(OS_REG_READ(ah, AR_PHY_CH1_CCA), AR9280_PHY_CH1_MINCCA_PWR);
307 if (nf & 0x100)
308 nf
[all...]
/freebsd-11-stable/contrib/netbsd-tests/fs/ffs/
H A Dquotas_common.sh11 fsck_ffs -nf -F ${IMG}
H A Dffs_common.sh34 fsck_ffs -nf -F ${IMG}
/freebsd-11-stable/usr.bin/mail/
H A Dedit.c138 FILE *nf = NULL; local
147 (nf = Fdopen(t, "w")) == NULL) {
158 (void)putc(t, nf);
161 (void)putc(t, nf);
162 (void)fflush(nf);
163 if (fstat(fileno(nf), &statb) < 0)
167 if (ferror(nf)) {
168 (void)Fclose(nf);
171 nf = NULL;
174 if (Fclose(nf) <
[all...]
H A Dcollect.c543 FILE *nf = run_editor(fp, (off_t)-1, c, 0); local
545 if (nf != NULL) {
546 (void)fseeko(nf, (off_t)0, SEEK_END);
547 collf = nf;
562 FILE *nf; local
570 (nf = Fdopen(fd, "w+")) == NULL) {
582 0, fileno(fp), fileno(nf), "-c", cmd, NULL) < 0) {
583 (void)Fclose(nf);
586 if (fsize(nf) == 0) {
588 (void)Fclose(nf);
[all...]
/freebsd-11-stable/contrib/netbsd-tests/sbin/newfs/
H A Dt_enable_quotas.sh46 fsck_ffs -nf -F ${IMG}
56 fsck_ffs -nf -F ${IMG}
/freebsd-11-stable/contrib/file/src/
H A Dis_csv.c94 size_t nf = 0, tf = 0, nl = 0; local
104 nf++;
107 DPRINTF("%zu %zu %zu\n", nl, nf, tf);
111 return tf != 0 && tf == nf;
115 if (nf == 0)
118 tf = nf;
119 } else if (tf != nf) {
123 nf = 0;
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/regex/
H A Dsplit.c217 int nf; local
219 nf = split(string, fields, NF, seps);
220 print(nf, NF, fields);
224 print(int nf, int nfp, char *fields) argument
229 bound = (nf > nfp) ? nfp : nf;
230 printf("%d:\t", nf);
232 printf("\"%s\"%s", fields[fn], (fn+1 < nf) ? ", " : "\n");
239 int nf; member in struct:__anon4707
310 int nf; local
[all...]
H A Dmain.c161 int nf; local
177 nf = split(inbuf, f, MAXF, "\t\t");
178 if (nf < 3) {
182 for (i = 0; i < nf; i++)
185 if (nf <= 3)
187 if (nf <= 4)
/freebsd-11-stable/lib/libc/regex/grot/
H A Dsplit.c189 int nf; local
191 nf = split(string, fields, NF, seps);
192 print(nf, NF, fields);
196 print(int nf, int nfp, char *fields[]) argument
201 bound = (nf > nfp) ? nfp : nf;
202 printf("%d:\t", nf);
204 printf("\"%s\"%s", fields[fn], (fn+1 < nf) ? ", " : "\n");
211 int nf; member in struct:__anon6707
282 int nf; local
[all...]
H A Dmain.c134 int nf; local
150 nf = split(inbuf, f, MAXF, "\t\t");
151 if (nf < 3) {
155 for (i = 0; i < nf; i++)
158 if (nf <= 3)
160 if (nf <= 4)
/freebsd-11-stable/sys/dev/ath/ath_hal/ar5416/
H A Dar2133.c439 int16_t nf; local
442 * Blank nf array - some chips may only
450 nf = MS(OS_REG_READ(ah, AR_PHY_CH2_CCA), AR_PHY_CH2_MINCCA_PWR);
451 if (nf & 0x100)
452 nf = 0 - ((nf ^ 0x1ff) + 1);
454 "NF calibrated [ctl] [chain 2] is %d\n", nf);
455 nfarray[2] = nf;
457 nf = MS(OS_REG_READ(ah, AR_PHY_CH2_EXT_CCA), AR_PHY_CH2_EXT_MINCCA_PWR);
458 if (nf
[all...]
H A Dar5416_cal.c41 static void ar5416SanitizeNF(struct ath_hal *ah, int16_t *nf);
652 * here, the baseband nf cal will just be capped by our present
656 "nf to load: AR_PHY_AGC_CONTROL=0x%x\n",
744 ar5416SanitizeNF(struct ath_hal *ah, int16_t *nf) argument
756 if (!nf[i])
759 if (nf[i] > limit->max) {
762 i, nf[i], limit->max);
763 nf[i] = limit->max;
764 } else if (nf[i] < limit->min) {
767 i, nf[
783 int16_t nf, nfThresh; local
[all...]
/freebsd-11-stable/contrib/netbsd-tests/sbin/fsck_ffs/
H A Dt_enable_quotas.sh47 fsck_ffs -nf -F ${IMG}
53 atf_check -s exit:0 -o "match:1 files, 1 used" fsck_ffs -nf -F ${IMG}
67 atf_check -s exit:0 -o "match:3 files" fsck_ffs -nf -F ${IMG}
79 atf_check -s exit:0 -o "match:3 files" fsck_ffs -nf -F ${IMG}
104 atf_check -s exit:0 -o "match:3 files" fsck_ffs -nf -F ${IMG}
H A Dt_check_quotas.sh50 atf_check -s exit:0 -o "match:3 files" fsck_ffs -nf -F ${IMG}
72 fsck_ffs -nf -F ${IMG}
/freebsd-11-stable/sys/dev/ath/
H A Dif_ath_rx.h37 int rssi, int nf);
61 HAL_STATUS status, uint64_t tsf, int nf, HAL_RX_QUEUE qtype,
/freebsd-11-stable/tools/tools/vt/fontcvt/
H A Dterminus.sh13 gzip -9nf terminus-u${R}.vfnt
/freebsd-11-stable/contrib/nvi/ex/
H A Dex_shell.c156 int nf, pstat; local
177 p = msg_print(sp, cmd, &nf);
183 if (nf)
199 p = msg_print(sp, cmd, &nf);
204 if (nf)
/freebsd-11-stable/usr.bin/indent/
H A Dio.c600 chfont(struct fstate *of, struct fstate *nf, char *s) argument
602 if (of->font[0] != nf->font[0]
603 || of->font[1] != nf->font[1]) {
606 if (nf->font[1]) {
608 *s++ = nf->font[0];
609 *s++ = nf->font[1];
612 *s++ = nf->font[0];
614 if (nf->size != of->size) {
617 if (nf->size < of->size) {
619 *s++ = '0' + of->size - nf
[all...]
/freebsd-11-stable/sys/net80211/
H A Dieee80211_monitor.c64 const struct ieee80211_rx_stats *rxs, int rssi, int nf);
129 const struct ieee80211_rx_stats *rxs, int rssi, int nf)
128 monitor_input(struct ieee80211_node *ni, struct mbuf *m, const struct ieee80211_rx_stats *rxs, int rssi, int nf) argument
/freebsd-11-stable/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_spectral.c278 "no nf cal offset found for freq %d chain %d\n",
298 "no nf pwr offset found for freq %d chain %d\n",
437 "%s: chan is NULL - no ss nf values\n", __func__);
560 int16_t nf; local
567 nf = MS(OS_REG_READ(ah, AR_PHY_CCA_0), AR_PHY_MINCCA_PWR);
570 nf = AH9300(ah)->nfp->nominal;
572 if (nf & 0x100) {
573 nf = (0 - ((nf ^ 0x1ff) + 1));
575 return nf;
580 int16_t nf; local
[all...]
/freebsd-11-stable/usr.sbin/bluetooth/btpand/
H A Dbnep.c410 int i, nf, rsp; local
427 nf = len / 4;
428 pf = malloc(nf * sizeof(pfilter_t));
434 log_debug("nf = %d", nf);
436 for (i = 0; i < nf; i++) {
455 chan->npfilter = nf;
493 int i, nf, rsp; local
510 nf = len / (ETHER_ADDR_LEN * 2);
511 mf = malloc(nf * sizeo
[all...]
/freebsd-11-stable/contrib/bmake/mk/
H A Dtarget-flags.mk8 #.nf
15 #.nf

Completed in 230 milliseconds

1234567