Searched refs:bf (Results 1 - 21 of 21) sorted by relevance

/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ath9k/
H A Dath9k_recv.c33 static void ath_rx_buf_link(struct ath_softc *sc, struct ath_buf *bf) argument
40 ATH_RXBUF_RESET(bf);
42 ds = bf->bf_desc;
44 ds->ds_data = bf->bf_buf_addr;
47 // iob = bf->bf_mpdu;
60 ath9k_hw_putrxbuf(ah, bf->bf_daddr);
62 *sc->rx.rxlink = bf->bf_daddr;
102 struct ath_buf *bf; local
124 list_for_each_entry(bf, &sc->rx.rxbuf, list) {
132 bf
147 struct ath_buf *bf; local
199 struct ath_buf *bf, *tbf; local
256 struct ath_buf *bf; local
434 struct ath_buf *bf; local
[all...]
H A Dath9k_xmit.c45 static void ath_tx_complete_buf(struct ath_softc *sc, struct ath_buf *bf,
50 static void ath_buf_set_rate(struct ath_softc *sc, struct ath_buf *bf, int len);
85 struct ath_buf *bf = NULL; local
91 bf = list_first_entry(&sc->tx.txbuf, struct ath_buf, list);
92 list_del(&bf->list);
94 return bf;
97 static void ath_tx_return_buffer(struct ath_softc *sc, struct ath_buf *bf) argument
99 list_add_tail(&bf->list, &sc->tx.txbuf);
183 struct ath_buf *bf, *lastbf __unused; local
195 bf
327 struct ath_buf *bf; local
367 struct ath_buf *bf; local
421 ath_buf_set_rate(struct ath_softc *sc, struct ath_buf *bf, int len) argument
504 struct ath_buf *bf; local
549 ath_tx_start_dma(struct ath_softc *sc, struct ath_buf *bf, struct ath_tx_control *txctl) argument
574 struct ath_buf *bf; local
623 ath_tx_complete_buf(struct ath_softc *sc, struct ath_buf *bf, struct ath_txq *txq, struct list_head *bf_q, struct ath_tx_status *ts, int txok, int sendbar) argument
659 struct ath_buf *bf, *lastbf, *bf_held = NULL; local
[all...]
H A Dath9k_init.c185 struct ath_buf *bf; local
236 bf = zalloc(bsize);
237 if (bf == NULL) {
241 dd->dd_bufptr = bf;
243 for (i = 0; i < nbuf; i++, bf++, ds += (desc_len * ndesc)) {
244 bf->bf_desc = ds;
245 bf->bf_daddr = DS2PHYS(dd, ds);
254 while (ATH_DESC_4KB_BOUND_CHECK(bf->bf_daddr)) {
256 bf->bf_desc = ds;
257 bf
[all...]
H A Dath9k.h97 #define bf_isampdu(bf) (bf->bf_state.bf_type & BUF_AMPDU)
98 #define bf_isaggr(bf) (bf->bf_state.bf_type & BUF_AGGR)
99 #define bf_isxretried(bf) (bf->bf_state.bf_type & BUF_XRETRY)
H A Dath9k_ar9003_eeprom.c2999 int bf, factor, plus; local
3001 bf = 2 * (yb - ya) * (x - xa) / (xb - xa);
3002 factor = bf / 2;
3003 plus = bf % 2;
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ath5k/
H A Dath5k.c215 static int ath5k_rxbuf_setup(struct ath5k_softc *sc, struct ath5k_buf *bf);
216 static int ath5k_txbuf_setup(struct ath5k_softc *sc, struct ath5k_buf *bf);
219 struct ath5k_buf *bf)
221 if (!bf->iob)
224 net80211_tx_complete(sc->dev, bf->iob, 0, ECANCELED);
225 bf->iob = NULL;
229 struct ath5k_buf *bf)
231 free_iob(bf->iob);
232 bf->iob = NULL;
810 ath5k_rxbuf_setup(struct ath5k_softc *sc, struct ath5k_buf *bf) argument
218 ath5k_txbuf_free(struct ath5k_softc *sc, struct ath5k_buf *bf) argument
228 ath5k_rxbuf_free(struct ath5k_softc *sc __unused, struct ath5k_buf *bf) argument
855 ath5k_txbuf_setup(struct ath5k_softc *sc, struct ath5k_buf *bf) argument
913 struct ath5k_buf *bf; local
967 struct ath5k_buf *bf; local
1035 struct ath5k_buf *bf, *bf0; local
1093 struct ath5k_buf *bf; local
1139 struct ath5k_buf *bf, *bf_last; local
1270 struct ath5k_buf *bf, *bf0; local
1504 struct ath5k_buf *bf; local
[all...]
/vbox/src/VBox/Additions/WINNT/SharedFolders/driver/
H A Dpath.c51 } bf; local
79 RtlZeroMemory (&bf, sizeof (bf));
97 bf.DirectoryFile = BooleanFlagOn(Options, FILE_DIRECTORY_FILE);
98 bf.NonDirectoryFile = BooleanFlagOn(Options, FILE_NON_DIRECTORY_FILE);
99 bf.DeleteOnClose = BooleanFlagOn(Options, FILE_DELETE_ON_CLOSE);
100 if (bf.DeleteOnClose)
105 bf.CreateDirectory = (BOOLEAN)(bf.DirectoryFile && ((CreateDisposition == FILE_CREATE) || (CreateDisposition == FILE_OPEN_IF)));
106 bf
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Stdio/
H A Dvsnprintf_ss.c138 char bf[128]; /* space for %c, %[diouxX] */ local
262 *(cp = bf) = va_arg(ap, int);
371 cp = bf + sizeof(bf);
412 size = bf + sizeof(bf) - cp;
419 cp = bf;
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/main/
H A Dimports.h386 double af, bf; local
388 bf = (3 << 22) + 0.5 - (double)f;
391 __asm__ ("fstps %0" : "=m" (bi) : "t" (bf) : "st");
399 double af, bf; local
403 bf = (3 << 22) + 0.5 - (double)f;
405 u.f = (float) bf; bi = u.i;
433 double af, bf; local
435 bf = (3 << 22) + 0.5 - (double)f;
438 __asm__ ("fstps %0" : "=m" (bi) : "t" (bf) : "st");
446 double af, bf; local
[all...]
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/swrast/
H A Ds_aatritemp.h68 GLfloat bf = SWRAST_CONTEXT(ctx)->_BackfaceCullSign; variable
88 vMin = v0; vMid = v2; vMax = v1; bf = -bf; /* y0<=y2<=y1 */
93 vMin = v1; vMid = v0; vMax = v2; bf = -bf; /* y1<=y0<=y2 */
96 vMin = v2; vMid = v1; vMax = v0; bf = -bf; /* y2<=y1<=y0 */
113 if (area * bf < 0 || area == 0 || IS_INF_OR_NAN(area))
H A Ds_tritemp.h139 GLfloat bf = SWRAST_CONTEXT(ctx)->_BackfaceSign; local
192 bf = -bf;
200 bf = -bf;
206 bf = -bf;
241 if (area * bf * swrast->_BackfaceCullSign < 0.0)
247 span.facing = oneOverArea * bf > 0.0F;
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/
H A Ddump.cpp83 VBOX_BITMAPFILEHEADER bf; local
85 bf.bfType = 'MB';
86 bf.bfSize = sizeof (VBOX_BITMAPFILEHEADER) + sizeof (VBOX_BITMAPINFOHEADER) + pImg->cbData;
87 bf.bfReserved1 = 0;
88 bf.bfReserved2 = 0;
89 bf.bfOffBits = sizeof (VBOX_BITMAPFILEHEADER) + sizeof (VBOX_BITMAPINFOHEADER);
105 fwrite (&bf, 1, sizeof (bf), f);
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/malloc/
H A Dprmalloc.c687 u_long *lp, bf; local
711 bf = *lp;
713 while ((bf & 1) == 0) {
714 bf >>= 1;
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/OpensslLib/
H A DInstall.sh23 cp crypto/bf/blowfish.h ../../../Include/openssl
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dwuapi.idl66 uuid(673425bf-c082-4c7c-bdfd-569464b8e0ce),
/vbox/src/VBox/Devices/Graphics/BIOS/
H A DVBoxVgaBiosAlternative.asm1506 mov di, 0c000h ; bf 00 c0
1508 mov di, 04400h ; bf 00 44
1656 cmp byte [bx+04635h], 000h ; 80 bf 35 46 00
1737 jmp short 00b91h ; eb bf
1771 cmp byte [bx+04635h], 000h ; 80 bf 35 46 00
1832 cmp byte [bx+04637h], 002h ; 80 bf 37 46 02
2272 mov di, 04e48h ; bf 48 4e
2274 mov di, 04f08h ; bf 08 4f
2276 mov di, 04fc8h ; bf c8 4f
2278 mov di, 05088h ; bf 8
[all...]
/vbox/src/VBox/Devices/PC/BIOS/
H A DVBoxBiosAlternative.asm932 db '*** int 15h function AH=bf not yet supported!', 00ah, 000h
1356 mov di, strict word 0000ah ; bf 0a 00
1406 mov di, strict word 0000ah ; bf 0a 00
1593 mov di, strict word 00061h ; bf 61 00
1595 mov di, strict word 00041h ; bf 41 00
1670 mov di, strict word 00061h ; bf 61 00
1672 mov di, strict word 00041h ; bf 41 00
1996 jmp near 01f9eh ; e9 bf 01
2189 mov di, 00122h ; bf 22 01
2476 mov di, strict word 0003dh ; bf
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dwbemdisp.idl423 uuid(5791bc27-ce9c-11d1-97bf-0000f81e849c),
H A Dwuapi.idl189 uuid(673425bf-c082-4c7c-bdfd-569464b8e0ce),
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/infiniband/
H A DMT25408_PRM.h2188 pseudo_bit_t bf[0x00001]; /* If set to "1" then BlueFlame may be used. */ member in struct:hermonprm_query_dev_cap_st
/vbox/src/VBox/Main/webservice/jaxlibs/
H A Djaxws-rt.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/xml/ ...

Completed in 207 milliseconds