Home
last modified time | relevance | path

Searched refs:bmax (Results 1 – 12 of 12) sorted by relevance

/openbmc/linux/drivers/net/ethernet/stmicro/stmmac/
H A Dchain_mode.c23 unsigned int bmax, des2; in jumbo_frm() local
30 bmax = BUF_SIZE_8KiB; in jumbo_frm()
32 bmax = BUF_SIZE_2KiB; in jumbo_frm()
34 len = nopaged_len - bmax; in jumbo_frm()
37 bmax, DMA_TO_DEVICE); in jumbo_frm()
42 tx_q->tx_skbuff_dma[entry].len = bmax; in jumbo_frm()
44 stmmac_prepare_tx_desc(priv, desc, 1, bmax, csum, STMMAC_CHAIN_MODE, in jumbo_frm()
52 if (len > bmax) { in jumbo_frm()
54 (skb->data + bmax * i), in jumbo_frm()
55 bmax, DMA_TO_DEVICE); in jumbo_frm()
[all …]
H A Dring_mode.c23 unsigned int bmax, len, des2; in jumbo_frm() local
32 bmax = BUF_SIZE_8KiB; in jumbo_frm()
34 bmax = BUF_SIZE_2KiB; in jumbo_frm()
36 len = nopaged_len - bmax; in jumbo_frm()
40 des2 = dma_map_single(priv->device, skb->data, bmax, in jumbo_frm()
47 tx_q->tx_skbuff_dma[entry].len = bmax; in jumbo_frm()
51 stmmac_prepare_tx_desc(priv, desc, 1, bmax, csum, in jumbo_frm()
61 des2 = dma_map_single(priv->device, skb->data + bmax, len, in jumbo_frm()
/openbmc/linux/tools/perf/tests/shell/
H A Dtest_intel_pt.sh547 bmax = 0
553 global bmax
554 if n > bmax:
555 bmax = n
558 print("max brstack", bmax)
/openbmc/qemu/hw/input/
H A Dvirtio-input-hid.c60 int i, bit, byte, bmax = 0; in virtio_input_extend_config() local
71 if (bmax < byte+1) { in virtio_input_extend_config()
72 bmax = byte+1; in virtio_input_extend_config()
77 ext.size = bmax; in virtio_input_extend_config()
/openbmc/linux/drivers/media/usb/pvrusb2/
H A Dpvrusb2-ctrl.c184 char *bptr,unsigned int bmax, in pvr2_ctrl_get_valname() argument
197 bptr,bmax,"%s", in pvr2_ctrl_get_valname()
212 *blen = scnprintf(bptr,bmax,"%s", in pvr2_ctrl_get_valname()
/openbmc/qemu/ui/
H A Dqemu-pixman.c59 pf.bmax = (1 << pf.bbits) - 1; in qemu_pixelformat_from_pixman()
63 pf.bmask = pf.bmax << pf.bshift; in qemu_pixelformat_from_pixman()
H A Dvnc-enc-tight.c225 max[2] = vs->client_pf.bmax; \
624 max[2] = vs->client_pf.bmax; \
1248 color->blue = (pix >> vs->client_pf.bshift) & vs->client_pf.bmax; in write_png_palette()
1256 blue = (pix >> vs->client_pf.bshift) & vs->client_pf.bmax; in write_png_palette()
1261 color->blue = ((blue * 255 + vs->client_pf.bmax / 2) / in write_png_palette()
1262 vs->client_pf.bmax); in write_png_palette()
1653 vs->client_pf.bmax == 0xFF && vs->client_pf.gmax == 0xFF) { in tight_send_framebuffer_update()
H A Dvnc-enc-zrle.c309 (vs->client_pf.bmax << vs->client_pf.bshift) < (1 << 24)); in zrle_send_framebuffer_update()
H A Dvnc.c2271 vnc_write_u16(vs, (((i >> pf->bshift) & pf->bmax) << (16 - pf->bbits))); in send_color_map()
2310 vs->client_pf.bmax = blue_max ? blue_max : 0xFF; in set_pixel_format()
2345 vnc_write_u16(vs, vs->client_pf.bmax); /* blue-max */ in pixel_format_message()
/openbmc/qemu/include/ui/
H A Dqemu-pixman.h70 uint8_t rmax, gmax, bmax, amax; member
/openbmc/linux/fs/ntfs3/
H A Dbitmap.c390 bool bmax = false; in wnd_remove_free_ext() local
400 bmax = true; in wnd_remove_free_ext()
417 if (!bmax) in wnd_remove_free_ext()
/openbmc/linux/tools/power/pm-graph/
H A Dsleepgraph.py797 bmax = (1*1024*1024) if self.suspendmode in ['disk', 'command'] \
799 tgtsize = min(self.memfree, bmax)