taglinefilesource code
bp210drivers/char/scc.cstruct mbuf   *bp;
bp215drivers/char/scc.cbp = (struct mbuf *)kmalloc(sizeof(struct mbuf), GFP_ATOMIC);
bp217drivers/char/scc.cif ( !(sccb && bp) )
bp230drivers/char/scc.csccfreelist[i]->bp = bp;
bp231drivers/char/scc.cmemset(sccfreelist[i]->bp ,0,sizeof(struct mbuf));
bp233drivers/char/scc.csccfreelist[i]->bp->type = 0;
bp234drivers/char/scc.csccfreelist[i]->bp->refcnt = 0;
bp235drivers/char/scc.csccfreelist[i]->bp->size = BUFSIZE;
bp251drivers/char/scc.cswitch (sccfreelist[i]->bp->type)
bp281drivers/char/scc.csccfreelist[i]->bp->type = type;
bp282drivers/char/scc.csccfreelist[i]->bp->next = NULLBUF;
bp283drivers/char/scc.csccfreelist[i]->bp->anext = NULLBUF;
bp284drivers/char/scc.csccfreelist[i]->bp->dup = NULLBUF;
bp285drivers/char/scc.csccfreelist[i]->bp->size = BUFSIZE;
bp286drivers/char/scc.csccfreelist[i]->bp->refcnt = 1;
bp287drivers/char/scc.csccfreelist[i]->bp->cnt = 0;
bp288drivers/char/scc.csccfreelist[i]->bp->in_use = 0;
bp291drivers/char/scc.creturn sccfreelist[i]->bp;
bp306drivers/char/scc.cscc_return_buffer(register struct mbuf *bp, char type)
bp312drivers/char/scc.cif(!bp)
bp316drivers/char/scc.cbpnext = bp->next;
bp318drivers/char/scc.cif (bp->dup)
bp322drivers/char/scc.cif(sccfreelist[i]->bp == bp->dup)
bp324drivers/char/scc.cif (sccfreelist[i]->bp->type != type)
bp327drivers/char/scc.ctype,sccfreelist[i]->bp->type);
bp330drivers/char/scc.csccfreelist[i]->bp->cnt = 0;
bp331drivers/char/scc.csccfreelist[i]->bp->refcnt = 0;
bp332drivers/char/scc.csccfreelist[i]->bp->in_use = 0;
bp334drivers/char/scc.cbp->dup = NULLBUF;
bp340drivers/char/scc.cif(--bp->refcnt <= 0)
bp344drivers/char/scc.cif(sccfreelist[i]->bp == bp)
bp346drivers/char/scc.cif (sccfreelist[i]->bp->type != type)
bp349drivers/char/scc.ctype,sccfreelist[i]->bp->type);
bp352drivers/char/scc.csccfreelist[i]->bp->cnt = 0;
bp353drivers/char/scc.csccfreelist[i]->bp->refcnt = 0;
bp361drivers/char/scc.cprintk("\nscc_return_buffer(): bogus pointer %p\n",bp);
bp371drivers/char/scc.cscc_free_chain(register struct mbuf *bp, char type)
bp376drivers/char/scc.cif(!bp) 
bp381drivers/char/scc.cabp = bp->anext;
bp382drivers/char/scc.cwhile (bp) bp = scc_return_buffer(bp, type);
bp391drivers/char/scc.cscc_append_to_chain(struct mbuf **bph,struct mbuf *bp)
bp396drivers/char/scc.cif(bph == NULLBUFP || bp == NULLBUF)
bp404drivers/char/scc.c*bph = bp;
bp408drivers/char/scc.cp->next = bp;
bp417drivers/char/scc.cscc_enqueue(struct mbuf **queue,struct mbuf *bp)
bp422drivers/char/scc.cif(queue == NULLBUFP || bp == NULLBUF)
bp430drivers/char/scc.c*queue = bp;
bp434drivers/char/scc.cp->anext = bp;
bp580drivers/char/scc.cregister struct mbuf *bp;
bp584drivers/char/scc.cbp = scc->tbp;
bp586drivers/char/scc.cwhile (bp && !bp->cnt)      /* find next buffer */
bp587drivers/char/scc.cbp = scc_return_buffer(bp, BT_TRANSMIT);
bp589drivers/char/scc.cif (bp == NULLBUF)      /* no more buffers in this frame */
bp604drivers/char/scc.cOutb(scc->data,bp->data[bp->in_use++]);
bp611drivers/char/scc.cOutb(scc->data,bp->data[bp->in_use++]);
bp614drivers/char/scc.cbp->cnt--;                      /* decrease byte count */
bp615drivers/char/scc.cscc->tbp=bp;      /* store buffer address */
bp624drivers/char/scc.cregister struct mbuf *bp;
bp626drivers/char/scc.cif((bp = scc->rbp) != NULLBUF)
bp628drivers/char/scc.cscc_free_chain(bp->next, BT_RECEIVE);
bp629drivers/char/scc.cbp->next = NULLBUF;
bp630drivers/char/scc.cscc->rbp1 = bp;         /* Don't throw this one away */
bp631drivers/char/scc.cbp->cnt = 0;            /* Simply rewind it */
bp632drivers/char/scc.cbp->in_use = 0;
bp732drivers/char/scc.cregister struct mbuf *bp;
bp743drivers/char/scc.cif ((bp = scc->rbp1) == NULLBUF || bp->cnt >= bp->size)  
bp747drivers/char/scc.cif ((bp = scc_get_buffer(BT_RECEIVE)) != NULLBUF)
bp748drivers/char/scc.cscc->rbp = scc->rbp1 = bp;
bp751drivers/char/scc.celse if ((bp = scc_get_buffer(BT_RECEIVE)))
bp753drivers/char/scc.cscc_append_to_chain(&scc->rbp, bp);
bp754drivers/char/scc.cscc->rbp1 = bp;
bp757drivers/char/scc.cif (bp == NULLBUF)    /* no buffer available? */
bp768drivers/char/scc.cbp->data[bp->cnt++] = Inb(scc->data);
bp777drivers/char/scc.cregister struct mbuf *bp;
bp800drivers/char/scc.cfor (bp = scc->rbp; bp->next != NULLBUF; bp = bp->next) ;
bp801drivers/char/scc.cbp->cnt--;              /* last byte is first CRC byte */
bp1119drivers/char/scc.cregister struct mbuf *bp;    /* not tested */
bp1121drivers/char/scc.cbp = scc->sndq;
bp1123drivers/char/scc.cwhile (bp) bp = scc_free_chain(bp, BT_TRANSMIT);
bp1147drivers/char/scc.cregister struct mbuf *bp;
bp1161drivers/char/scc.cbp = scc->rcvq->anext;  /* don't use the one we currently use */
bp1163drivers/char/scc.cwhile (bp && (scc->stat.rx_queued > QUEUE_HYST))
bp1165drivers/char/scc.cbp = scc_free_chain(bp, BT_RECEIVE);
bp1170drivers/char/scc.cscc->rcvq->anext = bp;
bp1432drivers/char/scc.cstruct mbuf *bp,*bp2;
bp1449drivers/char/scc.cbp = scc->rcvq;
bp1461drivers/char/scc.cswitch(ch = bp->data[bp->in_use++])
bp1475drivers/char/scc.cbp->cnt--;
bp1482drivers/char/scc.cbp  = scc->rcvq->next;  /* next buffer */
bp1488drivers/char/scc.cif (!bp)  /* end of frame ? */
bp1505drivers/char/scc.c} else scc->rcvq = bp; /* next buffer */
bp2000drivers/char/scc.cregister struct mbuf *bp;
bp2014drivers/char/scc.cbp = scc->sndq1->anext;  /* don't use the one we currently use */
bp2016drivers/char/scc.cwhile (bp && (scc->stat.tx_queued > QUEUE_HYST))
bp2018drivers/char/scc.cbp = scc_free_chain(bp, BT_TRANSMIT);
bp2023drivers/char/scc.cscc->sndq1->anext = bp;
bp116drivers/char/selection.cchar *bp, *obp;
bp248drivers/char/selection.cobp = bp = sel_buffer;
bp250drivers/char/selection.c*bp = sel_pos(i);
bp251drivers/char/selection.cif (!isspace(*bp++))
bp252drivers/char/selection.cobp = bp;
bp256drivers/char/selection.cif (obp != bp) {
bp257drivers/char/selection.cbp = obp;
bp258drivers/char/selection.c*bp++ = '\r';
bp260drivers/char/selection.cobp = bp;
bp263drivers/char/selection.csel_buffer_lth = bp - sel_buffer;
bp272drivers/char/selection.cchar  *bp = sel_buffer;
bp277drivers/char/selection.cif (!bp || !c)
bp288drivers/char/selection.ctty->ldisc.receive_buf(tty, bp, 0, l);
bp290drivers/char/selection.cbp += l;
bp1478drivers/scsi/53c7,8xx.cstruct NCR53c7x0_break *bp;
bp1496drivers/scsi/53c7,8xx.cfor (bp = hostdata->breakpoints; bp && bp->address != dsp; 
bp1497drivers/scsi/53c7,8xx.cbp = bp->next);
bp1498drivers/scsi/53c7,8xx.cif (!bp) 
bp2005drivers/scsi/53c7,8xx.cstruct NCR53c7x0_break *bp, **prev;
bp2009drivers/scsi/53c7,8xx.cfor (bp = (struct NCR53c7x0_break *) instance->breakpoints,
bp2011drivers/scsi/53c7,8xx.cbp; prev = (struct NCR53c7x0_break **) &(bp->next),
bp2012drivers/scsi/53c7,8xx.cbp = (struct NCR53c7x0_break *) bp->next);
bp2014drivers/scsi/53c7,8xx.cif (!bp) {
bp2024drivers/scsi/53c7,8xx.cmemcpy ((void *) bp->addr, (void *) bp->old, sizeof(bp->old));
bp2026drivers/scsi/53c7,8xx.c*prev = bp->next;
bp2037drivers/scsi/53c7,8xx.cstruct NCR53c7x0_break *bp;
bp2053drivers/scsi/53c7,8xx.cfor (bp = (struct NCR53c7x0_break *) host->breakpoints;
bp2054drivers/scsi/53c7,8xx.cbp; bp = (struct NCR53c7x0_break *) bp->next); {
bp2056drivers/scsi/53c7,8xx.cbp->addr, bp->old[0], bp->old[1]);
bp2058drivers/scsi/53c7,8xx.cif ((bp->old[0] & (DCMD_TYPE_MASK << 24)) ==
bp2060drivers/scsi/53c7,8xx.csprintf(buf + len, "%08x\n", * (long *) bp->addr);
bp2075drivers/scsi/53c7,8xx.cstruct NCR53c7x0_break *bp;
bp2089drivers/scsi/53c7,8xx.cif (!(bp = kmalloc (sizeof (struct NCR53c7x0_break)))) {
bp2096drivers/scsi/53c7,8xx.cbp->address = (unsigned long *) args[0];
bp2097drivers/scsi/53c7,8xx.cmemcpy ((void *) bp->old_instruction, (void *) bp->address, 8);
bp2098drivers/scsi/53c7,8xx.cbp->old_size = (((bp->old_instruction[0] >> 24) & DCMD_TYPE_MASK) ==
bp2100drivers/scsi/53c7,8xx.cbp->next = hostdata->breakpoints;
bp2101drivers/scsi/53c7,8xx.chostdata->breakpoints = bp->next;
bp2102drivers/scsi/53c7,8xx.cmemcpy ((void *) bp->address, (void *) hostdata->E_debug_break, 8);
bp156include/linux/scc.hstruct mbuf *bp;
bp13include/net/head_explode.hextern __inline__ unsigned char *exp_getu16(unsigned char *bp, unsigned short *u)
bp15include/net/head_explode.h*u=(*bp<<8)|bp[1];
bp16include/net/head_explode.hreturn bp+2;
bp19include/net/head_explode.hextern __inline__ unsigned char *exp_getn16(unsigned char *bp, unsigned short *u)
bp22include/net/head_explode.h*tp++=*bp++;
bp23include/net/head_explode.h*tp++=*bp++;
bp24include/net/head_explode.hreturn bp;
bp27include/net/head_explode.hextern __inline__ unsigned char *imp_putu16(unsigned char *bp, unsigned short n)
bp29include/net/head_explode.h*bp=(n>>8);
bp30include/net/head_explode.hbp[1]=n&0xFF;
bp31include/net/head_explode.hreturn bp+2;
bp34include/net/head_explode.hextern __inline__ unsigned char *imp_putn16(unsigned char *bp, unsigned short n)
bp37include/net/head_explode.h*bp++=*sp++;
bp38include/net/head_explode.h*bp++=*sp++;
bp39include/net/head_explode.hreturn bp;
bp42include/net/head_explode.hextern __inline__ unsigned char *exp_getu32(unsigned char *bp, unsigned long *u)
bp44include/net/head_explode.h*u=(bp[0]<<24)|(bp[1]<<16)|(bp[2]<<8)|bp[3];
bp45include/net/head_explode.hreturn bp+4;
bp48include/net/head_explode.hextern __inline__ unsigned char *exp_getn32(unsigned char *bp, unsigned long *u)
bp51include/net/head_explode.h*tp++=*bp++;
bp52include/net/head_explode.h*tp++=*bp++;
bp53include/net/head_explode.h*tp++=*bp++;
bp54include/net/head_explode.h*tp++=*bp++;
bp55include/net/head_explode.hreturn bp;
bp58include/net/head_explode.hextern __inline__ unsigned char *imp_putu32(unsigned char *bp, unsigned long n)
bp60include/net/head_explode.hbp[0]=n>>24;
bp61include/net/head_explode.hbp[1]=(n>>16)&0xFF;
bp62include/net/head_explode.hbp[2]=(n>>8)&0xFF;
bp63include/net/head_explode.hbp[3]=n&0xFF;
bp64include/net/head_explode.hreturn bp+4;
bp67include/net/head_explode.hextern __inline__ unsigned char *imp_putn32(unsigned char *bp, unsigned long n)
bp70include/net/head_explode.h*bp++=*sp++;
bp71include/net/head_explode.h*bp++=*sp++;
bp72include/net/head_explode.h*bp++=*sp++;
bp73include/net/head_explode.h*bp++=*sp++;
bp74include/net/head_explode.hreturn bp;
bp1955net/ax25/af_ax25.cint ax25_rebuild_header(unsigned char *bp, struct device *dev, unsigned long dest, struct sk_buff *skb)
bp1957net/ax25/af_ax25.cif (arp_find(bp + 1, dest, dev, dev->pa_addr, skb))
bp1960net/ax25/af_ax25.cbp[7]  &= ~LAPB_C;
bp1961net/ax25/af_ax25.cbp[7]  &= ~LAPB_E;
bp1962net/ax25/af_ax25.cbp[7]  |= SSID_SPARE;
bp1963net/ax25/af_ax25.cbp[14] &= ~LAPB_C;
bp1964net/ax25/af_ax25.cbp[14] |= LAPB_E;
bp1965net/ax25/af_ax25.cbp[14] |= SSID_SPARE;
bp119net/netrom/nr_dev.cunsigned char *bp = (unsigned char *)buff;
bp121net/netrom/nr_dev.cif (arp_find(bp + 24, raddr, dev, dev->pa_addr, skb))
bp124net/netrom/nr_dev.cbp[23] &= ~LAPB_C;
bp125net/netrom/nr_dev.cbp[23] &= ~LAPB_E;
bp126net/netrom/nr_dev.cbp[23] |= SSID_SPARE;
bp128net/netrom/nr_dev.cbp[30] &= ~LAPB_C;
bp129net/netrom/nr_dev.cbp[30] |= LAPB_E;
bp130net/netrom/nr_dev.cbp[30] |= SSID_SPARE;