| /u-boot/drivers/usb/emul/ |
| A D | usb-emul-uclass.c | 84 int upto, todo; in usb_emul_get_descriptor() local 98 for (upto = 0; *ptr && upto < length; ptr++, upto += todo) { in usb_emul_get_descriptor() 99 todo = min(length - upto, (int)(*ptr)->bLength); in usb_emul_get_descriptor() 101 memcpy(buffer + upto, *ptr, todo); in usb_emul_get_descriptor() 104 return upto ? upto : length ? -EIO : 0; in usb_emul_get_descriptor() 268 int upto; in usb_emul_setup_device() local 275 for (cdesc = NULL, upto = 0; *ptr; upto += (*ptr)->bLength, ptr++) { in usb_emul_setup_device() 276 debug(" - upto=%d, type=%d\n", upto, (*ptr)->bDescriptorType); in usb_emul_setup_device() 279 cdesc->wTotalLength = upto; in usb_emul_setup_device() 285 upto = 0; in usb_emul_setup_device() [all …]
|
| /u-boot/test/ |
| A D | ut.c | 101 int upto; in ut_check_console_dump() local 107 for (upto = 0; upto < total_bytes;) { in ut_check_console_dump() 116 upto += bytes; in ut_check_console_dump() 119 return upto == total_bytes ? 0 : 1; in ut_check_console_dump()
|
| /u-boot/drivers/input/ |
| A D | key_matrix.c | 59 int valid, upto; in key_matrix_decode() local 64 for (valid = upto = 0; upto < num_keys; upto++) { in key_matrix_decode() 65 struct key_matrix_key *key = &keys[upto]; in key_matrix_decode()
|
| /u-boot/lib/ |
| A D | trace.c | 198 size_t upto; in trace_list_functions() local 208 for (func = upto = 0; func < hdr->func_count; func++) { in trace_list_functions() 219 upto++; in trace_list_functions() 226 output_hdr->rec_count = upto; in trace_list_functions() 254 size_t rec, upto; in trace_list_calls() local 268 for (rec = upto = 0; rec < count; rec++) { in trace_list_calls() 276 upto++; in trace_list_calls() 283 output_hdr->rec_count = upto; in trace_list_calls()
|
| A D | fdtdec.c | 328 int *upto) in fdtdec_next_alias() argument 336 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto); in fdtdec_next_alias() 345 (*upto)++; in fdtdec_next_alias()
|
| /u-boot/arch/arm/mach-exynos/ |
| A D | spl_boot.c | 112 int upto, todo; in exynos_spi_copy() local 156 for (upto = 0, i = 0; upto < uboot_size; upto += todo, i++) { in exynos_spi_copy() 157 todo = min(uboot_size - upto, (unsigned int)(1 << 15)); in exynos_spi_copy()
|
| /u-boot/arch/arm/lib/ |
| A D | cache-cp15.c | 70 unsigned long upto, end; in mmu_set_region_dcache_behaviour_phys() local 84 for (upto = start; upto < end; upto++, phys += MMU_SECTION_SIZE) in mmu_set_region_dcache_behaviour_phys() 85 set_section_phys(upto, phys, option); in mmu_set_region_dcache_behaviour_phys()
|
| /u-boot/drivers/gpio/ |
| A D | s5p_gpio.c | 51 unsigned int upto; in s5p_gpio_get_bank() local 56 upto = 0; in s5p_gpio_get_bank() 59 debug("i=%d, upto=%d\n", i, upto); in s5p_gpio_get_bank() 63 bank += (gpio - upto) / GPIO_PER_BANK; in s5p_gpio_get_bank() 68 upto = data->max_gpio; in s5p_gpio_get_bank()
|
| /u-boot/cmd/ |
| A D | efi.c | 151 int upto, i; in efi_print_mem_table() local 160 for (upto = 0; desc->type != EFI_MAX_MEMORY_TYPE; in efi_print_mem_table() 161 upto++, desc = efi_get_next_mem_desc(map, desc)) { in efi_print_mem_table() 175 printf("%2d %x:%-12s %010llx %010llx %010llx ", upto, in efi_print_mem_table()
|
| /u-boot/drivers/spi/ |
| A D | exynos_spi.c | 330 int upto, todo; in exynos_spi_xfer() local 350 for (upto = 0; !ret && upto < bytelen; upto += todo) { in exynos_spi_xfer() 351 todo = min(bytelen - upto, (1 << 16) - 4); in exynos_spi_xfer()
|
| /u-boot/tools/buildman/ |
| A D | board.py | 131 for upto in range(len(fields)): 132 if fields[upto] == '-': 133 fields[upto] = ''
|
| A D | control.py | 72 for upto in range(0, len(series.commits), options.step): 73 commit = series.commits[upto]
|
| A D | builder.py | 395 todo = self.count - self.upto 443 self.upto += 1 460 ok = self.upto - self.warned - self.fail 466 remaining = self.count - self.upto 1534 self.upto = self.warned = self.fail = 0
|
| /u-boot/drivers/misc/ |
| A D | cros_ec_sandbox.c | 209 int upto; in keyscan_read_fdt_matrix() local 221 for (upto = 0; upto < ec->matrix_count; upto++) { in keyscan_read_fdt_matrix() 222 struct ec_keymatrix_entry *matrix = &ec->matrix[upto]; in keyscan_read_fdt_matrix() 239 if (upto != ec->matrix_count) { in keyscan_read_fdt_matrix()
|
| /u-boot/tools/ |
| A D | fit_image.c | 218 int upto; in fit_write_images() local 249 upto = 0; in fit_write_images() 254 snprintf(str, sizeof(str), "%s-%d", FIT_FDT_PROP, ++upto); in fit_write_images() 309 int upto; in fit_write_configs() local 314 upto = 0; in fit_write_configs() 319 snprintf(str, sizeof(str), "conf-%d", ++upto); in fit_write_configs() 334 snprintf(str, sizeof(str), FIT_FDT_PROP "-%d", upto); in fit_write_configs() 339 if (!upto) { in fit_write_configs()
|
| /u-boot/tools/patman/ |
| A D | series.py | 119 for upto in range(len(args)): 120 commit = self.commits[upto] 121 print(col.Color(col.GREEN, ' %s' % args[upto]))
|
| /u-boot/tools/binman/ |
| A D | cbfs_util.py | 494 upto = fd.tell() 495 if upto > offset: 497 (offset, upto)) 498 todo = align_int_down(offset - upto, self._align)
|
| /u-boot/board/freescale/ls1012afrdm/ |
| A D | README | 15 - SERDES Connections, 2 lanes supportingspeeds upto 1 Gbit/s
|
| /u-boot/doc/ |
| A D | README.VSC3316-3308 | 8 VSC 3316/3308 is a low-power, low-cost asynchronous crosspoint switch capable of data rates upto 11…
|
| /u-boot/include/ |
| A D | fdtdec.h | 246 enum fdt_compat_id id, int *upto);
|
| /u-boot/board/freescale/lx2160a/ |
| A D | README | 16 connectors. Data rate upto 3.2 GT/s. 207 connectors. Data rate upto 2.9 GT/s.
|
| /u-boot/board/freescale/t104xrdb/ |
| A D | README | 68 - One SGMII interface supporting upto 2500 Mbps
|