Home
last modified time | relevance | path

Searched refs:bytecount (Results 1 – 8 of 8) sorted by relevance

/drivers/fpga/
A Dvirtex2.c302 size_t bytecount = 0; in virtex2_ssm_load() local
314 while (bytecount < bsize) { in virtex2_ssm_load()
324 bytecount); in virtex2_ssm_load()
333 bytecount, bsize); in virtex2_ssm_load()
363 if (bytecount % (bsize / 40) == 0) in virtex2_ssm_load()
381 size_t bytecount = 0; in virtex2_ssm_dump() local
389 while (bytecount < bsize) { in virtex2_ssm_dump()
441 size_t bytecount = 0; in virtex2_ss_load() local
446 while (bytecount < bsize) { in virtex2_ss_load()
459 bytecount); in virtex2_ss_load()
[all …]
A DstratixII.c25 int bytecount; in StratixII_ps_fpp_load() local
71 bytecount = 0; in StratixII_ps_fpp_load()
75 while (bytecount < bsize) { in StratixII_ps_fpp_load()
79 bytecount); in StratixII_ps_fpp_load()
85 uint8_t data = buff[bytecount++]; in StratixII_ps_fpp_load()
96 fns->data (buff[bytecount++], 1, cookie); in StratixII_ps_fpp_load()
110 if ((bytecount % (bsize / 100)) == 0) { in StratixII_ps_fpp_load()
111 printf("\b\b\b%02zu\%%", bytecount * 100 / bsize); in StratixII_ps_fpp_load()
A Dspartan2.c100 size_t bytecount = 0; in spartan2_sp_load() local
162 while (bytecount < bsize) { in spartan2_sp_load()
192 if (bytecount % (bsize / 40) == 0) in spartan2_sp_load()
250 size_t bytecount = 0; in spartan2_sp_dump() local
259 while (bytecount < bsize) { in spartan2_sp_dump()
264 (*fn->rdata) (&(data[bytecount++]), cookie); /* read the data */ in spartan2_sp_dump()
266 if (bytecount % (bsize / 40) == 0) in spartan2_sp_dump()
300 size_t bytecount = 0; in spartan2_ss_load() local
354 while (bytecount < bsize) { in spartan2_ss_load()
362 val = data [bytecount ++]; in spartan2_ss_load()
[all …]
A Dspartan3.c105 size_t bytecount = 0; in spartan3_sp_load() local
167 while (bytecount < bsize) { in spartan3_sp_load()
197 if (bytecount % (bsize / 40) == 0) in spartan3_sp_load()
257 size_t bytecount = 0; in spartan3_sp_dump() local
266 while (bytecount < bsize) { in spartan3_sp_dump()
271 (*fn->rdata) (&(data[bytecount++]), cookie); /* read the data */ in spartan3_sp_dump()
273 if (bytecount % (bsize / 40) == 0) in spartan3_sp_dump()
307 size_t bytecount = 0; in spartan3_ss_load() local
368 while (bytecount < bsize) { in spartan3_ss_load()
378 val = data [bytecount ++]; in spartan3_ss_load()
[all …]
A DACEX1K.c95 size_t bytecount = 0; in ACEX1K_ps_load() local
153 while (bytecount < bsize) { in ACEX1K_ps_load()
170 val = data [bytecount ++ ]; in ACEX1K_ps_load()
187 if (bytecount % (bsize / 40) == 0) in ACEX1K_ps_load()
/drivers/dma/
A Dadi_dma.c114 u32 bytecount = len; in adi_mdma_transfer() local
139 n_srcmsize = adi_dma_get_msize(bytecount, src); in adi_mdma_transfer()
140 n_dstmsize = adi_dma_get_msize(bytecount, dst); in adi_mdma_transfer()
150 iowrite32(bytecount >> n_srcmsize, chsrc + REG_XCNT); in adi_mdma_transfer()
153 iowrite32(bytecount >> n_dstmsize, chdst + REG_XCNT); in adi_mdma_transfer()
/drivers/net/
A Dxilinx_emaclite.c100 static void xemaclite_alignedread(u32 *srcptr, void *destptr, u32 bytecount) in xemaclite_alignedread() argument
113 while (bytecount > 3) { in xemaclite_alignedread()
115 bytecount -= 4; in xemaclite_alignedread()
122 for (i = 0; i < bytecount; i++) in xemaclite_alignedread()
126 static void xemaclite_alignedwrite(void *srcptr, u32 *destptr, u32 bytecount) in xemaclite_alignedwrite() argument
136 while (bytecount > 3) { in xemaclite_alignedwrite()
138 bytecount -= 4; in xemaclite_alignedwrite()
145 for (i = 0; i < bytecount; i++) in xemaclite_alignedwrite()
/drivers/usb/gadget/
A Datmel_usba_udc.c103 unsigned int bytecount, nr_busy; in receive_data() local
119 bytecount = USBA_BFEXT(BYTE_COUNT, status); in receive_data()
123 if (req->req.actual + bytecount >= req->req.length) { in receive_data()
125 bytecount = req->req.length - req->req.actual; in receive_data()
128 memcpy(req->req.buf + req->req.actual, ep->fifo, bytecount); in receive_data()
129 req->req.actual += bytecount; in receive_data()

Completed in 30 milliseconds