Searched refs:nread (Results 1 - 5 of 5) sorted by relevance

/u-boot/lib/
H A Dsscanf.c374 int nread; /* number of characters consumed from fp */ local
388 nread = 0;
397 nread++, inr--, inp++;
417 nread++;
510 *va_arg(ap, char *) = nread;
512 *va_arg(ap, short *) = nread;
514 *va_arg(ap, long *) = nread;
516 *va_arg(ap, s64 *) = nread;
518 *va_arg(ap, int *) = nread;
534 nread
[all...]
/u-boot/scripts/kconfig/
H A Dpreprocess.c143 size_t nread; local
154 nread = fread(buf, 1, sizeof(buf), p);
155 if (nread == sizeof(buf))
156 nread--;
159 while (nread > 0 && buf[nread - 1] == '\n')
160 nread--;
162 buf[nread] = 0;
165 for (i = 0; i < nread; i++) {
/u-boot/drivers/usb/gadget/
H A Df_mass_storage.c707 ssize_t nread; local
779 nread = rc * curlun->blksize;
783 (int) nread);
785 if (nread < 0) {
787 (int) nread);
788 nread = 0;
789 } else if (nread < amount) {
791 (int) nread, amount);
792 nread -= (nread
1016 ssize_t nread; local
[all...]
/u-boot/fs/yaffs2/
H A Dyaffs_yaffs2.c508 int nread = 0; local
514 nread++;
537 nread, base_chunk, ok);
/u-boot/lib/bzip2/
H A Dbzlib.c1506 int bzerr, nread; local
1508 nread = BZ2_bzRead(&bzerr,b,buf,len);
1510 return nread;

Completed in 64 milliseconds