Home
last modified time | relevance | path

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

/u-boot/drivers/fpga/
A Dvirtex2.c324 size_t bytecount = 0; in virtex2_ssm_load() local
335 while (bytecount < bsize) { in virtex2_ssm_load()
354 bytecount, bsize); in virtex2_ssm_load()
384 if (bytecount % (bsize / 40) == 0) in virtex2_ssm_load()
402 size_t bytecount = 0; in virtex2_ssm_dump() local
410 while (bytecount < bsize) { in virtex2_ssm_dump()
424 if (bytecount % (bsize / 40) == 0) in virtex2_ssm_dump()
462 size_t bytecount = 0; in virtex2_ss_load() local
467 while (bytecount < bsize) { in virtex2_ss_load()
489 bytecount, bsize); in virtex2_ss_load()
[all …]
A DstratixII.c75 int bytecount; in StratixII_ps_fpp_load() local
125 bytecount = 0; in StratixII_ps_fpp_load()
129 while (bytecount < bsize) { in StratixII_ps_fpp_load()
134 __FUNCTION__, __LINE__, bytecount); in StratixII_ps_fpp_load()
140 uint8_t data = buff[bytecount++]; in StratixII_ps_fpp_load()
151 fns->data (buff[bytecount++], 1, cookie); in StratixII_ps_fpp_load()
165 if ((bytecount % (bsize / 100)) == 0) { in StratixII_ps_fpp_load()
166 printf ("\b\b\b%02d\%", bytecount * 100 / bsize); in StratixII_ps_fpp_load()
A Dspartan2.c108 size_t bytecount = 0; in spartan2_sp_load() local
170 while (bytecount < bsize) { in spartan2_sp_load()
200 if (bytecount % (bsize / 40) == 0) in spartan2_sp_load()
258 size_t bytecount = 0; in spartan2_sp_dump() local
267 while (bytecount < bsize) { in spartan2_sp_dump()
272 (*fn->rdata) (&(data[bytecount++]), cookie); /* read the data */ in spartan2_sp_dump()
274 if (bytecount % (bsize / 40) == 0) in spartan2_sp_dump()
310 size_t bytecount = 0; in spartan2_ss_load() local
364 while (bytecount < bsize) { in spartan2_ss_load()
372 val = data [bytecount ++]; in spartan2_ss_load()
[all …]
A Dspartan3.c112 size_t bytecount = 0; in spartan3_sp_load() local
174 while (bytecount < bsize) { in spartan3_sp_load()
204 if (bytecount % (bsize / 40) == 0) in spartan3_sp_load()
264 size_t bytecount = 0; in spartan3_sp_dump() local
273 while (bytecount < bsize) { in spartan3_sp_dump()
278 (*fn->rdata) (&(data[bytecount++]), cookie); /* read the data */ in spartan3_sp_dump()
280 if (bytecount % (bsize / 40) == 0) in spartan3_sp_dump()
316 size_t bytecount = 0; in spartan3_ss_load() local
377 while (bytecount < bsize) { in spartan3_ss_load()
387 val = data [bytecount ++]; in spartan3_ss_load()
[all …]
A DACEX1K.c100 size_t bytecount = 0; in ACEX1K_ps_load() local
158 while (bytecount < bsize) { in ACEX1K_ps_load()
175 val = data [bytecount ++ ]; in ACEX1K_ps_load()
192 if (bytecount % (bsize / 40) == 0) in ACEX1K_ps_load()
/u-boot/board/astro/mcf5373l/
A Dfpga.c103 size_t bytecount = 0; in altera_write_fn() local
110 while (bytecount < len) { in altera_write_fn()
111 val = data[bytecount++]; in altera_write_fn()
124 if (bytecount % len_40 == 0) { in altera_write_fn()
325 size_t bytecount = 0; in xilinx_fastwr_config_fn() local
332 for (bytecount = 0; bytecount < len; bytecount++) { in xilinx_fastwr_config_fn()
343 if (bytecount % len_40 == 0) { in xilinx_fastwr_config_fn()
/u-boot/drivers/net/
A Dxilinx_emaclite.c101 static void xemaclite_alignedread(u32 *srcptr, void *destptr, u32 bytecount) in xemaclite_alignedread() argument
114 while (bytecount > 3) { in xemaclite_alignedread()
116 bytecount -= 4; in xemaclite_alignedread()
123 for (i = 0; i < bytecount; i++) in xemaclite_alignedread()
127 static void xemaclite_alignedwrite(void *srcptr, u32 *destptr, u32 bytecount) in xemaclite_alignedwrite() argument
137 while (bytecount > 3) { in xemaclite_alignedwrite()
140 bytecount -= 4; in xemaclite_alignedwrite()
147 for (i = 0; i < bytecount; i++) in xemaclite_alignedwrite()
/u-boot/drivers/usb/gadget/
A Datmel_usba_udc.c95 unsigned int bytecount, nr_busy; in receive_data() local
111 bytecount = USBA_BFEXT(BYTE_COUNT, status); in receive_data()
115 if (req->req.actual + bytecount >= req->req.length) { in receive_data()
117 bytecount = req->req.length - req->req.actual; in receive_data()
120 memcpy(req->req.buf + req->req.actual, ep->fifo, bytecount); in receive_data()
121 req->req.actual += bytecount; in receive_data()

Completed in 12 milliseconds