Searched refs:out_idx (Results 1 – 6 of 6) sorted by relevance
/Linux-v4.19/arch/x86/boot/ |
D | video-vga.c | 146 out_idx(0x0c, crtc, 0x11); /* Vertical sync end, unlock CR0-7 */ in vga_set_480_scanlines() 147 out_idx(0x0b, crtc, 0x06); /* Vertical total */ in vga_set_480_scanlines() 148 out_idx(0x3e, crtc, 0x07); /* Vertical overflow */ in vga_set_480_scanlines() 149 out_idx(0xea, crtc, 0x10); /* Vertical sync start */ in vga_set_480_scanlines() 150 out_idx(0xdf, crtc, 0x12); /* Vertical display end */ in vga_set_480_scanlines() 151 out_idx(0xe7, crtc, 0x15); /* Vertical blank start */ in vga_set_480_scanlines() 152 out_idx(0x04, crtc, 0x16); /* Vertical blank end */ in vga_set_480_scanlines() 169 out_idx(ovfw, crtc, 0x07); /* Vertical overflow */ in vga_set_vertical_end() 170 out_idx(end, crtc, 0x12); /* Vertical display end */ in vga_set_vertical_end()
|
D | video-mode.c | 135 out_idx(pt, crtc, 0x11); in vga_recalc_vertical() 137 out_idx((u8)rows, crtc, 0x12); /* Lower height register */ in vga_recalc_vertical() 143 out_idx(ov, crtc, 0x07); in vga_recalc_vertical()
|
D | video.h | 105 static inline void out_idx(u8 v, u16 port, u8 index) in out_idx() function 113 out_idx(port, index, v); in tst_idx()
|
/Linux-v4.19/drivers/isdn/hysdn/ |
D | hysdn_net.c | 46 int in_idx, out_idx; /* indexes to buffer ring */ member 92 dev_kfree_skb(nl->skbs[nl->out_idx++]); /* free skb */ in flush_tx_buffers() 93 if (nl->out_idx >= MAX_SKB_BUFFERS) in flush_tx_buffers() 94 nl->out_idx = 0; /* wrap around */ in flush_tx_buffers() 170 lp->dev->stats.tx_bytes += lp->skbs[lp->out_idx]->len; in hysdn_tx_netack() 172 dev_kfree_skb(lp->skbs[lp->out_idx++]); /* free skb */ in hysdn_tx_netack() 173 if (lp->out_idx >= MAX_SKB_BUFFERS) in hysdn_tx_netack() 174 lp->out_idx = 0; /* wrap around */ in hysdn_tx_netack() 228 return (lp->skbs[lp->out_idx]); /* next packet to send */ in hysdn_tx_netget()
|
D | hycapi.c | 629 kfree_skb(cinfo->skbs[cinfo->out_idx]); /* free skb */ in hycapi_tx_capiack() 630 cinfo->skbs[cinfo->out_idx++] = NULL; in hycapi_tx_capiack() 631 if (cinfo->out_idx >= HYSDN_MAX_CAPI_SKB) in hycapi_tx_capiack() 632 cinfo->out_idx = 0; /* wrap around */ in hycapi_tx_capiack() 656 return (cinfo->skbs[cinfo->out_idx]); /* next packet to send */ in hycapi_tx_capiget()
|
D | hysdn_defs.h | 206 int in_idx, out_idx; /* indexes to buffer ring */ member
|