HomeSort by relevance Sort by last modified time
    Searched refs:BUF (Results 1 - 8 of 8) sorted by null

  /hardware/ti/wlan/wl1271/platforms/os/common/inc/
RxBuf.h 37 /* MODULE: buf.h */
38 /* PURPOSE: manages the allocation/free and field access of the BUF */
58 typedef void BUF, *PBUF;
65 * \brief Macro which gets a pointer to BUF packet header and returns the pointer to the start address of the WLAN packet's data
70 * \brief Macro which gets a pointer to BUF packet header and returns the buffer length (without Rx Descriptor) of the WLAN packet
78 * \brief Macro which gets a pointer to BUF packet header and returns the pointer to the start address of the ETH packet's data
83 * \brief Macro which gets a pointer to BUF packet header and returns the buffer length (without Rx Descriptor) of the ETH packet
88 /** \brief BUF Allocation
96 * This function allocates BUF element for Tx/Rx packet
100 BUF* RxBufAlloc (TI_HANDLE hOs, TI_UINT32 len, PacketClassTag_e ePacketClassTag)
    [all...]
  /system/wlan/ti/wilink_6_1/platforms/os/common/inc/
RxBuf.h 37 /* MODULE: buf.h */
38 /* PURPOSE: manages the allocation/free and field access of the BUF */
58 typedef void BUF, *PBUF;
65 * \brief Macro which gets a pointer to BUF packet header and returns the pointer to the start address of the WLAN packet's data
70 * \brief Macro which gets a pointer to BUF packet header and returns the buffer length (without Rx Descriptor) of the WLAN packet
78 * \brief Macro which gets a pointer to BUF packet header and returns the pointer to the start address of the ETH packet's data
83 * \brief Macro which gets a pointer to BUF packet header and returns the buffer length (without Rx Descriptor) of the ETH packet
88 /** \brief BUF Allocation
96 * This function allocates BUF element for Tx/Rx packet
100 BUF* RxBufAlloc (TI_HANDLE hOs, TI_UINT32 len, PacketClassTag_e ePacketClassTag)
    [all...]
  /hardware/msm7k/librpc/rpc/
xdr.h 47 #define XDR_RECV_BYTES(XDR, BUF, LEN) (XDR)->xops->recv_bytes(XDR, BUF, LEN)
53 #define XDR_SEND_BYTES(XDR, BUF, LEN) (XDR)->xops->send_bytes(XDR, BUF, LEN)
  /external/dropbear/
scp.c 268 char *buf; member in struct:__anon3321
269 } BUF;
271 BUF *allocbuf(BUF *, int, int);
595 static BUF buffer;
596 BUF *bp;
600 char *last, *name, buf[2048]; local
643 (void) snprintf(buf, sizeof buf, "T%lu 0 %lu 0\n",
646 (void) atomicio(vwrite, remout, buf, strlen(buf))
835 char ch, *cp, *np, *targ, *why, *vect[1], buf[2048]; local
    [all...]
  /bionic/libc/stdio/
vfprintf.c 88 unsigned char buf[BUFSIZ]; local
98 fake._bf._base = fake._p = buf;
99 fake._bf._size = fake._w = sizeof(buf);
117 #define BUF (MAXEXP+MAXFRACT+1) /* + decimal point */
123 #define BUF 40
193 char buf[BUF]; /* space for %c, %[diouxX], %[eEfgG] */ local
466 *(cp = buf) = GETARG(int);
650 cp = buf + BUF;
    [all...]
vfscanf.c 46 #define BUF 513 /* Maximum length of numeric string. */
114 char buf[BUF]; /* buffer for numeric conversions */ local
444 if (width == 0 || width > sizeof(buf) - 1)
445 width = sizeof(buf) - 1;
448 if (--width > sizeof(buf) - 2)
449 width = sizeof(buf) - 2;
453 for (p = buf; width; width--) {
525 buf + 1 + !!(flags & HAVESIGN)) {
555 if (p > buf)
    [all...]
  /external/grub/netboot/
depca.c 263 #define BUF 0x0020 /* BUFfer size (1->32k, 0->64k) */
713 if (nicsr & BUF) {
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/include/
bfd.h 517 #define bfd_read(BUF, ELTSIZE, NITEMS, ABFD) \
519 bfd_bread ((BUF), (ELTSIZE) * (NITEMS), (ABFD)))
520 #define bfd_write(BUF, ELTSIZE, NITEMS, ABFD) \
522 bfd_bwrite ((BUF), (ELTSIZE) * (NITEMS), (ABFD)))
524 #define bfd_read(BUF, ELTSIZE, NITEMS, ABFD) \
526 bfd_bread ((BUF), (ELTSIZE) * (NITEMS), (ABFD)))
527 #define bfd_write(BUF, ELTSIZE, NITEMS, ABFD) \
529 bfd_bwrite ((BUF), (ELTSIZE) * (NITEMS), (ABFD)))
    [all...]

Completed in 626 milliseconds