HomeSort by: relevance | last modified time | path
    Searched defs:nf (Results 1 - 25 of 90) sorted by relevancy

1 2 3 4

  /src/sys/external/isc/atheros_hal/dist/ar5416/
ar9285.c 34 int16_t nf; local
36 nf = MS(OS_REG_READ(ah, AR_PHY_CCA), AR9280_PHY_MINCCA_PWR);
37 if (nf & 0x100)
38 nf = 0 - ((nf ^ 0x1ff) + 1);
40 "NF calibrated [ctl] [chain 0] is %d\n", nf);
41 nfarray[0] = nf;
45 nf = MS(OS_REG_READ(ah, AR_PHY_EXT_CCA), AR9280_PHY_EXT_MINCCA_PWR);
46 if (nf & 0x100
    [all...]
ar2133.c 335 int16_t nf; local
339 nf = MS(OS_REG_READ(ah, AR_PHY_CH2_CCA), AR_PHY_CH2_MINCCA_PWR);
340 if (nf & 0x100)
341 nf = 0 - ((nf ^ 0x1ff) + 1);
343 "NF calibrated [ctl] [chain 2] is %d\n", nf);
344 nfarray[4] = nf;
346 nf = MS(OS_REG_READ(ah, AR_PHY_CH2_EXT_CCA), AR_PHY_CH2_EXT_MINCCA_PWR);
347 if (nf & 0x100
    [all...]
ar5416_cal.c 27 #include "ar5212/ar5212.h" /* for NF cal related declarations */
218 * Do NF calibration after DC offset and other CALs.
223 /* XXX this actually kicks off a NF calibration -adrian */
226 * Try to make sure the above NF cal completes, just so
230 HALDEBUG(ah, HAL_DEBUG_ANY, "%s: initial NF calibration did "
448 /* Do NF cal only at longer intervals */
451 * Get the value from the previous NF cal
457 * Load the NF from history buffer of the current channel.
458 * NF is slow time-variant, so it is OK to use a
463 /* start NF calibration, without updating BB NF register*
653 int16_t nf, nfThresh; local
    [all...]
ar9280.c 271 int16_t nf; local
273 nf = MS(OS_REG_READ(ah, AR_PHY_CCA), AR9280_PHY_MINCCA_PWR);
274 if (nf & 0x100)
275 nf = 0 - ((nf ^ 0x1ff) + 1);
277 "NF calibrated [ctl] [chain 0] is %d\n", nf);
278 nfarray[0] = nf;
280 nf = MS(OS_REG_READ(ah, AR_PHY_CH1_CCA), AR9280_PHY_CH1_MINCCA_PWR);
281 if (nf & 0x100
    [all...]
  /src/external/mit/expat/dist/tests/
runtests.c 82 int i, nf; local
112 nf = srunner_ntests_failed(sr);
115 return (nf == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
  /src/sys/arch/i386/stand/efiboot/
devopen.c 160 const struct netboot_fstab *nf; local
197 nf = netboot_fstab_find(devname);
198 if (nf != NULL) {
206 memcpy(&file_system[n++], nf->ops,
253 nf = netboot_fstab_findn(fname, fsnamelen);
254 if (nf == NULL ||
262 memcpy(file_system, nf->ops, sizeof(struct fs_ops));
  /src/external/gpl3/gcc/dist/gcc/config/riscv/
genrvv-type-indexer.cc 68 valid_type (unsigned sew, int lmul_log2, unsigned nf, bool float_p)
73 if (nf > 8 || nf < 1)
79 return nf < 5;
81 return nf < 3;
83 return nf == 1;
104 inttype (unsigned sew, int lmul_log2, unsigned nf, bool unsigned_p)
106 if (!valid_type (sew, lmul_log2, nf, /*float_t*/ false))
114 if (nf > 1)
115 mode << "x" << nf; local
140 mode << "x" << nf; local
    [all...]
  /src/external/bsd/file/dist/src/
is_csv.c 101 size_t nf = 0, tf = 0, nl = 0; local
110 nf++;
113 DPRINTF("nl=%zu nf=%zu tf=%zu\n", nl, nf, tf);
117 return tf > 1 && tf == nf;
121 if (nf == 0)
124 tf = nf;
125 } else if (tf != nf) {
129 nf = 0;
  /src/tests/lib/libc/regex/
split.c 215 # define NF 5
216 char *fields[NF];
217 int nf; local
219 nf = split(string, fields, NF, seps);
220 print(nf, NF, fields);
224 print(int nf, int nfp, char *fields)
229 bound = (nf > nfp) ? nfp : nf;
239 int nf; member in struct:__anon7852
310 int nf; local
    [all...]
main.c 171 int nf; local
187 nf = split(inbuf, f, MAXF, "\t\t");
188 if (nf < 3) {
192 for (i = 0; i < nf; i++)
195 if (nf <= 3)
197 if (nf <= 4)
  /src/usr.bin/mail/
edit.c 61 FILE *nf = NULL; local
80 if ((nf = Fdopen(t, "wef")) == NULL) {
88 (void)putc(t, nf);
91 (void)putc(t, nf);
92 (void)fflush(nf);
93 if (ferror(nf)) {
94 (void)Fclose(nf);
97 nf = NULL;
100 if (fstat(fileno(nf), &statb) < 0)
104 if (Fclose(nf) < 0)
    [all...]
collect.c 132 FILE *nf; local
136 nf = run_editor(fp, (off_t)-1, c, 0);
137 if (nf != NULL) {
138 (void)fseek(nf, 0L, 2);
139 collf = nf;
155 FILE *nf; local
168 (nf = Fdopen(fd, "wef+")) == NULL) {
182 NULL, fileno(fp), fileno(nf), "-c", cmd, NULL) < 0) {
183 (void)Fclose(nf);
186 if (fsize(nf) == 0)
    [all...]
  /src/external/bsd/nvi/dist/ex/
ex_read.c 313 int nf, rval; local
352 char *q = msg_print(sp, name, &nf);
356 if (nf)
ex_shell.c 157 int nf, pstat; local
178 p = msg_print(sp, cmd, &nf);
184 if (nf)
200 p = msg_print(sp, cmd, &nf);
205 if (nf)
  /src/sys/arch/sun68k/sun68k/
autoconf.c 315 struct prom_n2f *nf; local
344 for (nf = prom_dev_table; nf->func; nf++)
345 if (!strcmp(nf->name, promname)) {
346 find = nf->func;
  /src/sys/dev/raidframe/
rf_pqdegdags.c 403 int nf = asmap->numDataFailed; local
406 if (nf == 2)
409 if ((nf == 2) && (sum == (2 * sectorsPerSU))) {
414 if ((nf == asmap->numStripeUnitsAccessed) || (sum >= sectorsPerSU)) {
  /src/usr.sbin/btpand/
bnep.c 414 int i, nf, rsp; local
431 nf = len / 4;
432 if (nf > BNEP_MAX_NET_TYPE_FILTERS) {
436 pf = malloc(nf * sizeof(pfilter_t));
442 log_debug("nf = %d", nf);
444 for (i = 0; i < nf; i++) {
463 chan->npfilter = nf;
500 int i, nf, rsp; local
517 nf = len / (ETHER_ADDR_LEN * 2)
    [all...]
  /src/sys/arch/sun3/sun3/
autoconf.c 188 struct prom_n2f *nf; local
214 for (nf = prom_dev_table; nf->func; nf++)
215 if (!strcmp(nf->name, promname)) {
216 find = nf->func;
  /src/external/gpl3/gcc/dist/libgcc/config/m68k/
lb1sf68.S 810 beq Ladddf$nf |
824 beq Ladddf$nf
1434 Ladddf$nf:
1519 beq Lmuldf$a$nf | we still have to check d1 and b ...
1522 beq Lmuldf$b$nf | we still have to check d3 ...
1734 Lmuldf$b$nf:
1741 Lmuldf$a$nf:
1852 beq Ldivdf$a$nf | if d0 == 0x7ff00000 we check d1
1855 beq Ldivdf$b$nf | if d2 == 0x7ff00000 we check d3
2080 Ldivdf$b$nf
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/config/m68k/
lb1sf68.S 810 beq Ladddf$nf |
824 beq Ladddf$nf
1432 Ladddf$nf:
1517 beq Lmuldf$a$nf | we still have to check d1 and b ...
1520 beq Lmuldf$b$nf | we still have to check d3 ...
1732 Lmuldf$b$nf:
1739 Lmuldf$a$nf:
1850 beq Ldivdf$a$nf | if d0 == 0x7ff00000 we check d1
1853 beq Ldivdf$b$nf | if d2 == 0x7ff00000 we check d3
2078 Ldivdf$b$nf
    [all...]
  /src/games/rogue/
room.c 287 short i, j, nf = 0; local
312 nf++;
315 return(nf);
  /src/lib/libc/gdtoa/
strtod.c 100 e, e1, esign, i, j, k, nd, nd0, nf, nz, nz0, sign; local
197 for(nd = nf = 0; (c = *s) >= '0' && c <= '9'; nd++, s++)
222 nf += nz;
232 nf += nz;
296 if (match(&s,"nf")) {
332 e1 = e -= nf;
  /src/sys/dev/ic/
rtwphy.c 195 int n = freq / 4, nf = (freq % 4) * 2; local
197 syna = __SHIFTIN(nf, SA2400_SYNA_NF_MASK) | __SHIFTIN(n, SA2400_SYNA_N_MASK);
  /src/sys/external/isc/atheros_hal/dist/ar5210/
ar5210_misc.c 382 uint32_t nf; local
384 nf = (OS_REG_READ(ah, AR_PHY_BASE + (25 << 2)) >> 19) & 0x1ff;
385 if (nf & 0x100)
386 nf = 0 - ((nf ^ 0x1ff) + 1);
388 OS_REG_READ(ah, AR_TSF_L32) ^ nf);
  /src/external/bsd/nvi/dist/common/
msg.c 411 int nf, sv_errno; local
420 p = msg_print(sp, str, &nf);
423 if (nf)

Completed in 127 milliseconds

1 2 3 4