Home
last modified time | relevance | path

Searched refs:upto (Results 1 – 23 of 23) sorted by relevance

/rk3399_rockchip-uboot/drivers/usb/emul/
H A Dusb-emul-uclass.c86 int upto, todo; in usb_emul_get_descriptor() local
100 for (upto = 0; *ptr && upto < length; ptr++, upto += todo) { in usb_emul_get_descriptor()
101 todo = min(length - upto, (int)(*ptr)->bLength); in usb_emul_get_descriptor()
103 memcpy(buffer + upto, *ptr, todo); in usb_emul_get_descriptor()
106 return upto ? upto : length ? -EIO : 0; in usb_emul_get_descriptor()
270 int upto; in usb_emul_setup_device() local
277 for (cdesc = NULL, upto = 0; *ptr; upto += (*ptr)->bLength, ptr++) { in usb_emul_setup_device()
278 debug(" - upto=%d, type=%d\n", upto, (*ptr)->bDescriptorType); in usb_emul_setup_device()
281 cdesc->wTotalLength = upto; in usb_emul_setup_device()
287 upto = 0; in usb_emul_setup_device()
[all …]
/rk3399_rockchip-uboot/lib/
H A Dtrace.c152 int upto; in trace_list_functions() local
162 for (func = upto = 0; func < hdr->func_count; func++) { in trace_list_functions()
173 upto++; in trace_list_functions()
180 output_hdr->rec_count = upto; in trace_list_functions()
195 int rec, upto; in trace_list_calls() local
209 for (rec = upto = 0; rec < count; rec++) { in trace_list_calls()
217 upto++; in trace_list_calls()
224 output_hdr->rec_count = upto; in trace_list_calls()
H A Dfdtdec.c369 enum fdt_compat_id id, int *upto) in fdtdec_next_alias() argument
377 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto); in fdtdec_next_alias()
386 (*upto)++; in fdtdec_next_alias()
/rk3399_rockchip-uboot/drivers/input/
H A Dkey_matrix.c59 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()
/rk3399_rockchip-uboot/arch/arm/lib/
H A Dcache-cp15.c60 unsigned long upto, end; in mmu_set_region_dcache_behaviour() local
71 for (upto = start; upto < end; upto++) in mmu_set_region_dcache_behaviour()
72 set_section_dcache(upto, option); in mmu_set_region_dcache_behaviour()
/rk3399_rockchip-uboot/arch/arm/mach-exynos/
H A Dspl_boot.c109 int upto, todo; in exynos_spi_copy() local
153 for (upto = 0, i = 0; upto < uboot_size; upto += todo, i++) { in exynos_spi_copy()
154 todo = min(uboot_size - upto, (unsigned int)(1 << 15)); in exynos_spi_copy()
/rk3399_rockchip-uboot/cmd/
H A Defi.c127 int upto, i; in efi_print_mem_table() local
136 for (upto = 0; desc->type != EFI_TABLE_END; in efi_print_mem_table()
137 upto++, desc = efi_get_next_mem_desc(map, desc)) { in efi_print_mem_table()
151 printf("%2d %x:%-12s %010llx %010llx %010llx ", upto, in efi_print_mem_table()
/rk3399_rockchip-uboot/drivers/gpio/
H A Ds5p_gpio.c50 unsigned int upto; in s5p_gpio_get_bank() local
55 upto = 0; in s5p_gpio_get_bank()
58 debug("i=%d, upto=%d\n", i, upto); in s5p_gpio_get_bank()
62 bank += (gpio - upto) / GPIO_PER_BANK; in s5p_gpio_get_bank()
67 upto = data->max_gpio; in s5p_gpio_get_bank()
/rk3399_rockchip-uboot/drivers/misc/
H A Dcros_ec_sandbox.c197 int upto; in keyscan_read_fdt_matrix() local
209 for (upto = 0; upto < ec->matrix_count; upto++) { in keyscan_read_fdt_matrix()
210 struct ec_keymatrix_entry *matrix = &ec->matrix[upto]; in keyscan_read_fdt_matrix()
227 if (upto != ec->matrix_count) { in keyscan_read_fdt_matrix()
/rk3399_rockchip-uboot/drivers/spi/
H A Dexynos_spi.c327 int upto, todo; in exynos_spi_xfer() local
347 for (upto = 0; !ret && upto < bytelen; upto += todo) { in exynos_spi_xfer()
348 todo = min(bytelen - upto, (1 << 16) - 4); in exynos_spi_xfer()
/rk3399_rockchip-uboot/tools/buildman/
H A Dboard.py132 for upto in range(len(fields)):
133 if fields[upto] == '-':
134 fields[upto] = ''
H A Dcontrol.py71 for upto in range(0, len(series.commits), options.step):
72 commit = series.commits[upto]
H A Dbuilder.py346 todo = self.count - self.upto
410 self.upto += 1
428 ok = self.upto - self.warned - self.fail
1352 self.upto = self.warned = self.fail = 0
/rk3399_rockchip-uboot/tools/
H A Dfit_image.c256 int upto; in fit_write_images() local
285 upto = 0; in fit_write_images()
289 snprintf(str, sizeof(str), "%s@%d", FIT_FDT_PROP, ++upto); in fit_write_images()
338 int upto; in fit_write_configs() local
343 upto = 0; in fit_write_configs()
348 snprintf(str, sizeof(str), "conf@%d", ++upto); in fit_write_configs()
362 snprintf(str, sizeof(str), FIT_FDT_PROP "@%d", upto); in fit_write_configs()
367 if (!upto) { in fit_write_configs()
/rk3399_rockchip-uboot/tools/patman/
H A Dseries.py114 for upto in range(len(args)):
115 commit = self.commits[upto]
116 print(col.Color(col.GREEN, ' %s' % args[upto]))
/rk3399_rockchip-uboot/board/freescale/ls1012afrdm/
H A DREADME15 - SERDES Connections, 2 lanes supportingspeeds upto 1 Gbit/s
/rk3399_rockchip-uboot/drivers/video/rockchip/
H A DKconfig68 16,18, 24 bits per pixel with upto 2k resolution ratio.
/rk3399_rockchip-uboot/drivers/i2c/
H A DKconfig144 Add support for the NXP i.MX I2C driver. This supports upto for bus
145 channels and operating on standard mode upto 100 kbits/s and fast
146 mode upto 400 kbits/s.
/rk3399_rockchip-uboot/tools/dtoc/
H A Ddtb_platdata.py371 upto = 0
378 upto += 1
/rk3399_rockchip-uboot/doc/
H A DREADME.VSC3316-33088 VSC 3316/3308 is a low-power, low-cost asynchronous crosspoint switch capable of data rates upto 11…
/rk3399_rockchip-uboot/include/
H A Dfdtdec.h242 enum fdt_compat_id id, int *upto);
/rk3399_rockchip-uboot/board/freescale/t1040qds/
H A DREADME37 - One SGMII interface supporting upto 2500 Mbps
/rk3399_rockchip-uboot/board/freescale/t104xrdb/
H A DREADME68 - One SGMII interface supporting upto 2500 Mbps