HomeSort by: relevance | last modified time | path
    Searched refs:rf (Results 1 - 25 of 159) sorted by relevancy

1 2 3 4 5 6 7

  /src/sys/arch/acorn32/stand/lib/
riscosfile.c 42 struct riscosfile *rf; local in function:riscos_open
46 rf = (struct riscosfile *) alloc(sizeof(*rf));
47 if (!rf)
66 osfind_ERROR_IF_ABSENT, path, NULL, &rf->file);
68 dealloc(rf, sizeof(*rf));
71 f->f_fsdata = rf;
79 struct riscosfile *rf; local in function:riscos_close
83 rf = f->f_fsdata
96 struct riscosfile *rf; local in function:riscos_read
116 struct riscosfile *rf; local in function:riscos_write
136 struct riscosfile *rf; local in function:riscos_stat
158 struct riscosfile *rf; local in function:riscos_seek
    [all...]
  /src/sys/external/bsd/compiler_rt/
prepare-import.sh 11 rm -rf .svn
12 rm -rf SDKs android cmake make third_party unittests www
14 rm -rf lib/BlocksRuntime lib/dfsan lib/cfi
15 rm -rf lib/builtins/Darwin-excludes lib/builtins/macho_embedded
16 rm -rf test/BlocksRuntime test/asan test/cfi test/dfsan test/lit.* test/lsan
17 rm -rf test/msan test/sanitizer_common test/safestack test/tsan test/ubsan
  /src/sys/dev/ic/
lm700x.c 61 lm700x_encode_freq(u_int32_t nfreq, u_int32_t rf)
64 nfreq /= lm700x_decode_ref(rf);
100 lm700x_encode_ref(u_int8_t rf)
104 if (rf < 36)
106 else if (rf > 35 && rf < 75)
115 lm700x_decode_ref(u_int32_t rf)
119 switch (rf) {
rtwphy.c 30 * Control the Philips SA2400 RF front-end and the baseband processor
117 rtw_sa2400_txpower(struct rtw_rf *rf, uint8_t opaque_txpower)
119 struct rtw_sa2400 *sa = (struct rtw_sa2400 *)rf;
183 rtw_sa2400_tune(struct rtw_rf *rf, u_int freq)
185 struct rtw_sa2400 *sa = (struct rtw_sa2400 *)rf;
223 rtw_sa2400_pwrstate(struct rtw_rf *rf, enum rtw_pwrstate power)
225 struct rtw_sa2400 *sa = (struct rtw_sa2400 *)rf;
310 struct rtw_rf *rf = &sa->sa_rf; local in function:rtw_sa2400_dc_calibration
314 (*rf->rf_continuous_tx_cb)(rf->rf_continuous_tx_arg, 1)
422 struct rtw_rf *rf; local in function:rtw_sa2400_create
591 struct rtw_rf *rf; local in function:rtw_grf5101_create
726 struct rtw_rf *rf; local in function:rtw_max2820_create
    [all...]
rt2860.c 250 /* retrieve RF rev. no and various other things from EEPROM */
255 "RF %s (MIMO %dT%dR)\n",
2086 * Write to one of the 4 programmable 24-bit RF registers.
2100 aprint_error_dev(sc->sc_dev, "could not write to RF\n");
2104 /* RF registers are 24-bit on the RT2860 */
2122 aprint_error_dev(sc->sc_dev, "could not read RF register\n");
2135 aprint_error_dev(sc->sc_dev, "could not read RF register\n");
2153 aprint_error_dev(sc->sc_dev, "could not write to RF\n");
2420 uint8_t rf; local in function:rt3090_set_chan
2433 rf = rt3090_rf_read(sc, 3)
2483 uint8_t h20mhz, rf, tmp; local in function:rt5390_set_chan
2585 uint8_t rf, bbp; local in function:rt3090_rf_init
2697 uint8_t rf, bbp; local in function:rt5390_rf_init
2767 uint8_t rf; local in function:rt3090_rf_wakeup
2833 uint8_t rf; local in function:rt5390_rf_wakeup
    [all...]
rtwvar.h 370 rtw_rf_destroy(struct rtw_rf *rf)
372 (*rf->rf_destroy)(rf);
376 rtw_rf_init(struct rtw_rf *rf, u_int freq, uint8_t opaque_txpower,
379 return (*rf->rf_init)(rf, freq, opaque_txpower, power);
383 rtw_rf_pwrstate(struct rtw_rf *rf, enum rtw_pwrstate power)
385 return (*rf->rf_pwrstate)(rf, power);
389 rtw_rf_tune(struct rtw_rf *rf, u_int freq
    [all...]
  /src/tests/rump/rumpkern/h_client/
h_forkcli.c 20 struct rumpclient_fork *rf; local in function:simple
31 if ((rf = rumpclient_prefork()) == NULL)
39 if (rumpclient_fork_init(rf) == -1)
81 struct rumpclient_fork *rf; local in function:pipecomm
89 if ((rf = rumpclient_prefork()) == NULL)
97 if (rumpclient_fork_init(rf) == -1)
120 struct rumpclient_fork *rf; local in function:fakeauth
124 if ((rf = rumpclient_prefork()) == NULL)
127 /* XXX: we know the internal structure of rf */
128 auth = (void *)rf;
    [all...]
  /src/lib/librumpclient/
rumpclient.h 91 struct rumpclient_fork *rf; local in function:rumpclient__dofork
95 if (!(rf = rumpclient_prefork()))
100 rumpclient_fork_cancel(rf);
104 if (rumpclient_fork_init(rf) == -1)
110 rumpclient_fork_vparent(rf);
  /src/etc/rc.d/
cleartmp 27 /bin/rm -rf ${tmp_dir}
41 # invocation of "rm -rf". We avoid using any glob
47 ! -name quota.group -exec rm -rf -- {} \+ -type d -prune)
51 /bin/rm -rf /var/shm
clearcritlocal 22 cd /var/run && rm -rf -- *
  /src/sys/dev/rcons/
raster_text.c 69 struct raster_font* rf,
72 return raster_textn( r, x, y, rop, rf, text, strlen( text ) );
82 struct raster_font* rf,
97 if ( rf->flags & RASFONT_FIXEDWIDTH &&
98 rf->flags & RASFONT_NOVERTICALMOVEMENT )
101 c = &(rf->chars['@']);
115 c = &(rf->chars[text[i]]);
136 c = &(rf->chars[ch]);
148 if ( rf->cache == (struct raster_fontcache*) -1 )
152 rf->cache = (struct raster_fontcache*
    [all...]
  /src/sys/dev/usb/
if_run.c 665 /* retrieve RF rev. no and various other things from EEPROM */
669 "MAC/BBP RT%04X (rev 0x%04X), RF %s (MIMO %dT%dR), address %s\n",
1231 /* RF registers are 24-bit on the RT2860 */
1568 /* read vendor RF settings */
1572 sc->rf[i].val = val & 0xff;
1573 sc->rf[i].reg = val >> 8;
1574 DPRINTF(("RF%d=0x%02x\n", sc->rf[i].reg,
1575 sc->rf[i].val));
1580 /* read RF frequency offset from EEPROM *
3029 uint8_t rf; local in function:run_rt3070_set_chan
3093 uint8_t rf; local in function:run_rt3572_set_chan
3242 uint8_t h20mhz, rf; local in function:run_rt3593_set_chan
3402 uint8_t rf; local in function:run_rt5390_set_chan
3513 uint8_t reg, rf, txpow_bound; local in function:run_rt5592_set_chan
4131 uint8_t rf, target, bbp4; local in function:run_rt3070_rf_init
4266 uint8_t rf; local in function:run_rt3593_rf_init
4316 uint8_t rf; local in function:run_rt5390_rf_init
4445 uint8_t bbp, rf; local in function:run_rt3070_rf_setup
4523 uint8_t bbp, rf; local in function:run_rt3593_rf_setup
4593 uint8_t bbp, rf; local in function:run_rt5390_rf_setup
4685 uint8_t rf, tmp; local in function:run_adjust_freq_offset
    [all...]
  /src/sys/arch/i386/stand/boot/
Makefile 14 -rm -rf lib
  /src/sys/arch/i386/stand/bootxx/
Makefile 20 -rm -rf lib
  /src/sys/arch/landisk/stand/boot/
Makefile 14 -rm -rf lib
  /src/sys/arch/landisk/stand/bootxx/
Makefile 14 -rm -rf lib
  /src/tests/usr.bin/ztest/
t_ztest.sh 49 rm -rf $tmp
  /src/lib/libwrap/
libwrap2netbsd 39 rm -rf $d
  /src/sys/arch/atari/stand/libsa/
Makefile 30 -rm -rf lib
  /src/usr.bin/make/unit-tests/
dir-expand-path.mk 5 _!= rm -rf dir-expand-path.dir.*
19 @rm -rf dir-expand-path.dir.*
depsrc-nopath.mk 6 _!= rm -rf depsrc-nopath.dir
15 @rm -rf depsrc-nopath.dir
  /src/usr.bin/btkey/
btkey.c 57 bool cf, cd, lf, ld, rf, rd, wf, wd, nk; local in function:main
62 cf = cd = lf = ld = rf = rd = wf = wd = nk = false;
113 rf = true;
139 if ((lf || ld) && (rf || rd || wf || wd || cf || cd || nk))
142 if (((rf && rd) || (rf && nk) || (rd && nk)) && (wf || wd))
168 if (rf) {
  /src/sys/arch/vax/floppy/
Makefile 34 -rm -rf fromdec
35 arff rf ${FLOPPY} ${OBJS}
45 rm -rf fromdec
  /src/sys/arch/mvme68k/stand/libsa/
Makefile 41 -rm -rf lib
  /src/sys/arch/mvmeppc/stand/libsa/
Makefile 42 rm -rf lib

Completed in 34 milliseconds

1 2 3 4 5 6 7