tag | line | file | source code |
bptr | 22 | arch/sparc/prom/printf.c | char ch, *bptr; |
bptr | 28 | arch/sparc/prom/printf.c | bptr = ppbuf; |
bptr | 30 | arch/sparc/prom/printf.c | while((ch = *(bptr++)) != 0) { |
bptr | 476 | drivers/char/scc.c | struct mbuf * bptr; |
bptr | 499 | drivers/char/scc.c | bptr = (struct mbuf *) kmalloc(buflen, GFP_ATOMIC); |
bptr | 503 | drivers/char/scc.c | if (bptr == NULLBUF) |
bptr | 511 | drivers/char/scc.c | memset(bptr, 0, buflen); |
bptr | 515 | drivers/char/scc.c | bptr->rw_ptr = bptr->data; |
bptr | 519 | drivers/char/scc.c | scc_enqueue_buffer(&scc->rx_buffer_pool, bptr); |
bptr | 526 | drivers/char/scc.c | bptr = (struct mbuf *) kmalloc(buflen, GFP_ATOMIC); |
bptr | 528 | drivers/char/scc.c | if (bptr == NULLBUF) |
bptr | 534 | drivers/char/scc.c | memset(bptr, 0, buflen); |
bptr | 536 | drivers/char/scc.c | bptr->rw_ptr = bptr->data; |
bptr | 538 | drivers/char/scc.c | scc_enqueue_buffer(&scc->tx_buffer_pool, bptr); |
bptr | 548 | drivers/char/scc.c | struct mbuf * bptr; |
bptr | 558 | drivers/char/scc.c | bptr = scc->rx_bp; |
bptr | 559 | drivers/char/scc.c | if (bptr != NULLBUF) |
bptr | 562 | drivers/char/scc.c | scc_enqueue_buffer(&scc->rx_buffer_pool, bptr); |
bptr | 565 | drivers/char/scc.c | bptr = scc->tx_bp; |
bptr | 566 | drivers/char/scc.c | if (bptr != NULLBUF) |
bptr | 569 | drivers/char/scc.c | scc_enqueue_buffer(&scc->tx_buffer_pool, bptr); |
bptr | 572 | drivers/char/scc.c | bptr = scc->kiss_decode_bp; |
bptr | 573 | drivers/char/scc.c | if (bptr != NULLBUF) |
bptr | 576 | drivers/char/scc.c | scc_enqueue_buffer(&scc->tx_buffer_pool, bptr); |
bptr | 579 | drivers/char/scc.c | bptr = scc->kiss_encode_bp; |
bptr | 580 | drivers/char/scc.c | if (bptr != NULLBUF) |
bptr | 583 | drivers/char/scc.c | scc_enqueue_buffer(&scc->rx_buffer_pool, bptr); |
bptr | 591 | drivers/char/scc.c | bptr = scc_dequeue_buffer(&scc->rx_queue); |
bptr | 592 | drivers/char/scc.c | scc_enqueue_buffer(&scc->rx_buffer_pool, bptr); |
bptr | 597 | drivers/char/scc.c | bptr = scc_dequeue_buffer(&scc->tx_queue); |
bptr | 598 | drivers/char/scc.c | scc_enqueue_buffer(&scc->tx_buffer_pool, bptr); |
bptr | 613 | drivers/char/scc.c | bptr = scc_dequeue_buffer(&scc->rx_buffer_pool); |
bptr | 615 | drivers/char/scc.c | if (bptr != NULLBUF) |
bptr | 618 | drivers/char/scc.c | kfree(bptr); |
bptr | 631 | drivers/char/scc.c | bptr = scc_dequeue_buffer(&scc->tx_buffer_pool); |
bptr | 633 | drivers/char/scc.c | if (bptr != NULLBUF) |
bptr | 636 | drivers/char/scc.c | kfree(bptr); |
bptr | 659 | drivers/char/scc.c | struct mbuf * bptr; |
bptr | 663 | drivers/char/scc.c | bptr = scc_dequeue_buffer(&scc->tx_buffer_pool); |
bptr | 667 | drivers/char/scc.c | if (bptr == NULLBUF) |
bptr | 673 | drivers/char/scc.c | bptr = scc_dequeue_buffer(&scc->tx_queue); |
bptr | 677 | drivers/char/scc.c | if (bptr == NULLBUF) |
bptr | 681 | drivers/char/scc.c | bptr = scc_dequeue_buffer(&scc->rx_buffer_pool); |
bptr | 683 | drivers/char/scc.c | if (bptr == NULLBUF) |
bptr | 687 | drivers/char/scc.c | bptr = scc_dequeue_buffer(&scc->rx_queue); |
bptr | 689 | drivers/char/scc.c | if (bptr == NULLBUF) |
bptr | 694 | drivers/char/scc.c | if (bptr != NULLBUF) |
bptr | 696 | drivers/char/scc.c | bptr->rw_ptr = bptr->data; |
bptr | 697 | drivers/char/scc.c | bptr->cnt = 0; |
bptr | 700 | drivers/char/scc.c | return bptr; |
bptr | 506 | net/core/skbuff.c | unsigned char *bptr; |
bptr | 525 | net/core/skbuff.c | bptr=(unsigned char *)kmalloc(size,priority); |
bptr | 526 | net/core/skbuff.c | if (bptr == NULL) |
bptr | 544 | net/core/skbuff.c | skb=(struct sk_buff *)(bptr+size)-1; |
bptr | 570 | net/core/skbuff.c | skb->head=bptr; |
bptr | 571 | net/core/skbuff.c | skb->data=bptr; |
bptr | 572 | net/core/skbuff.c | skb->tail=bptr; |
bptr | 573 | net/core/skbuff.c | skb->end=bptr+len; |