Symbol: dle
drivers/atm/iphase.c
1103
struct dle* wr_ptr;
drivers/atm/iphase.c
1280
struct dle *dle, *cur_dle;
drivers/atm/iphase.c
1290
dle = iadev->rx_dle_q.read;
drivers/atm/iphase.c
1291
dle_lp = readl(iadev->dma+IPHASE5575_RX_LIST_ADDR) & (sizeof(struct dle)*DLE_ENTRIES - 1);
drivers/atm/iphase.c
1292
cur_dle = (struct dle*)(iadev->rx_dle_q.start + (dle_lp >> 4));
drivers/atm/iphase.c
1293
while(dle != cur_dle)
drivers/atm/iphase.c
1357
if (++dle == iadev->rx_dle_q.end)
drivers/atm/iphase.c
1358
dle = iadev->rx_dle_q.start;
drivers/atm/iphase.c
1360
iadev->rx_dle_q.read = dle;
drivers/atm/iphase.c
1443
iadev->rx_dle_q.start = (struct dle *)dle_addr;
drivers/atm/iphase.c
1446
iadev->rx_dle_q.end = (struct dle*)((unsigned long)dle_addr+sizeof(struct dle)*DLE_ENTRIES);
drivers/atm/iphase.c
1688
struct dle *dle, *cur_dle;
drivers/atm/iphase.c
1697
dle = iadev->tx_dle_q.read;
drivers/atm/iphase.c
1699
(sizeof(struct dle)*DLE_ENTRIES - 1);
drivers/atm/iphase.c
1700
cur_dle = (struct dle*)(iadev->tx_dle_q.start + (dle_lp >> 4));
drivers/atm/iphase.c
1701
while (dle != cur_dle)
drivers/atm/iphase.c
1708
if (!((dle - iadev->tx_dle_q.start)%(2*sizeof(struct dle)))) {
drivers/atm/iphase.c
1709
dma_unmap_single(&iadev->pci->dev, dle->sys_pkt_addr, skb->len,
drivers/atm/iphase.c
1741
if (++dle == iadev->tx_dle_q.end)
drivers/atm/iphase.c
1742
dle = iadev->tx_dle_q.start;
drivers/atm/iphase.c
1744
iadev->tx_dle_q.read = dle;
drivers/atm/iphase.c
1930
iadev->tx_dle_q.start = (struct dle*)dle_addr;
drivers/atm/iphase.c
1933
iadev->tx_dle_q.end = (struct dle*)((unsigned long)dle_addr+sizeof(struct dle)*DLE_ENTRIES);
drivers/atm/iphase.c
2882
struct dle *wr_ptr;
drivers/atm/iphase.h
277
#define DLE_TOTAL_SIZE (sizeof(struct dle)*DLE_ENTRIES)
drivers/atm/iphase.h
291
struct dle *start;
drivers/atm/iphase.h
292
struct dle *end;
drivers/atm/iphase.h
293
struct dle *read;
drivers/atm/iphase.h
294
struct dle *write;
drivers/atm/suni.c
155
int reg, dle, lle;
drivers/atm/suni.c
159
dle = SUNI_MCM_DLE;
drivers/atm/suni.c
163
dle = SUNI_MCT_DLE;
drivers/atm/suni.c
167
control = dev->ops->phy_get(dev, reg) & ~(dle | lle);
drivers/atm/suni.c
172
control |= dle;
drivers/scsi/mvumi.c
1846
struct mvumi_dyn_list_entry *dle;
drivers/scsi/mvumi.c
1847
dle = ib_entry;
drivers/scsi/mvumi.c
1848
dle->src_low_addr =
drivers/scsi/mvumi.c
1850
dle->src_high_addr =
drivers/scsi/mvumi.c
1852
dle->if_length = (frame_len >> 2) & 0xFFF;