/openbmc/u-boot/drivers/usb/emul/ |
H A D | usb-emul-uclass.c | 83 int upto, todo; in usb_emul_get_descriptor() local 97 for (upto = 0; *ptr && upto < length; ptr++, upto += todo) { in usb_emul_get_descriptor() 98 todo = min(length - upto, (int)(*ptr)->bLength); in usb_emul_get_descriptor() 100 memcpy(buffer + upto, *ptr, todo); in usb_emul_get_descriptor() 103 return upto ? upto : length ? -EIO : 0; in usb_emul_get_descriptor() 265 int upto; in usb_emul_setup_device() local 272 for (cdesc = NULL, upto = 0; *ptr; upto += (*ptr)->bLength, ptr++) { in usb_emul_setup_device() 273 debug(" - upto=%d, type=%d\n", upto, (*ptr)->bDescriptorType); in usb_emul_setup_device() 276 cdesc->wTotalLength = upto; in usb_emul_setup_device() 282 upto = 0; in usb_emul_setup_device() [all …]
|
/openbmc/linux/Documentation/devicetree/bindings/hwmon/ |
H A D | aspeed-pwm-tacho.txt | 3 The ASPEED PWM controller can support upto 8 PWM outputs. The ASPEED Fan Tacho 4 controller can support upto 16 Fan tachometer inputs. 6 There can be upto 8 fans supported. Each fan can have one PWM output and 31 Under fan subnode there can upto 8 child nodes, with each child node
|
/openbmc/linux/scripts/dtc/ |
H A D | fdtput.c | 64 int upto; /* the number of bytes we have written to buf */ in encode_value() local 67 upto = 0; in encode_value() 75 for (; arg_count > 0; arg++, arg_count--, upto += len) { in encode_value() 83 if (upto + len > value_size) { in encode_value() 84 value_size = (upto + len) + 500; in encode_value() 93 ptr = value + upto; in encode_value() 113 *value_len = upto; in encode_value() 116 fprintf(stderr, "Value size %d\n", upto); in encode_value()
|
/openbmc/u-boot/lib/ |
H A D | trace.c | 151 int upto; in trace_list_functions() local 161 for (func = upto = 0; func < hdr->func_count; func++) { in trace_list_functions() 172 upto++; in trace_list_functions() 179 output_hdr->rec_count = upto; in trace_list_functions() 194 int rec, upto; in trace_list_calls() local 208 for (rec = upto = 0; rec < count; rec++) { in trace_list_calls() 216 upto++; in trace_list_calls() 223 output_hdr->rec_count = upto; in trace_list_calls()
|
/openbmc/u-boot/drivers/input/ |
H A D | key_matrix.c | 58 int valid, upto; in key_matrix_decode() local 63 for (valid = upto = 0; upto < num_keys; upto++) { in key_matrix_decode() 64 struct key_matrix_key *key = &keys[upto]; in key_matrix_decode()
|
/openbmc/u-boot/drivers/gpio/ |
H A D | s5p_gpio.c | 49 unsigned int upto; in s5p_gpio_get_bank() local 54 upto = 0; in s5p_gpio_get_bank() 57 debug("i=%d, upto=%d\n", i, upto); in s5p_gpio_get_bank() 61 bank += (gpio - upto) / GPIO_PER_BANK; in s5p_gpio_get_bank() 66 upto = data->max_gpio; in s5p_gpio_get_bank()
|
/openbmc/u-boot/arch/arm/mach-exynos/ |
H A D | spl_boot.c | 108 int upto, todo; in exynos_spi_copy() local 152 for (upto = 0, i = 0; upto < uboot_size; upto += todo, i++) { in exynos_spi_copy() 153 todo = min(uboot_size - upto, (unsigned int)(1 << 15)); in exynos_spi_copy()
|
/openbmc/u-boot/arch/arm/lib/ |
H A D | cache-cp15.c | 61 unsigned long upto, end; in mmu_set_region_dcache_behaviour() local 72 for (upto = start; upto < end; upto++) in mmu_set_region_dcache_behaviour() 73 set_section_dcache(upto, option); in mmu_set_region_dcache_behaviour()
|
/openbmc/linux/include/linux/ |
H A D | prime_numbers.h | 11 * for_each_prime_number - iterate over each prime upto a value 25 * for_each_prime_number_from - iterate over each prime upto a value
|
/openbmc/u-boot/cmd/ |
H A D | efi.c | 129 int upto, i; in efi_print_mem_table() local 138 for (upto = 0; desc->type != EFI_TABLE_END; in efi_print_mem_table() 139 upto++, desc = efi_get_next_mem_desc(map, desc)) { in efi_print_mem_table() 153 printf("%2d %x:%-12s %010llx %010llx %010llx ", upto, in efi_print_mem_table()
|
/openbmc/u-boot/test/trace/ |
H A D | test-trace.sh | 49 '/traced function calls/ { diff = $1 - upto; upto = $1; \
|
/openbmc/u-boot/drivers/spi/ |
H A D | exynos_spi.c | 326 int upto, todo; in exynos_spi_xfer() local 346 for (upto = 0; !ret && upto < bytelen; upto += todo) { in exynos_spi_xfer() 347 todo = min(bytelen - upto, (1 << 16) - 4); in exynos_spi_xfer()
|
/openbmc/u-boot/board/freescale/t1040qds/ |
H A D | README | 35 - Upto two QSGMII interface 36 - Upto six SGMII interface supporting 1000 Mbps 37 - One SGMII interface supporting upto 2500 Mbps
|
/openbmc/u-boot/drivers/misc/ |
H A D | cros_ec_sandbox.c | 194 int upto; in keyscan_read_fdt_matrix() local 206 for (upto = 0; upto < ec->matrix_count; upto++) { in keyscan_read_fdt_matrix() 207 struct ec_keymatrix_entry *matrix = &ec->matrix[upto]; in keyscan_read_fdt_matrix() 224 if (upto != ec->matrix_count) { in keyscan_read_fdt_matrix()
|
/openbmc/u-boot/tools/ |
H A D | fit_image.c | 196 int upto; in fit_write_images() local 226 upto = 0; in fit_write_images() 230 snprintf(str, sizeof(str), "%s-%d", FIT_FDT_PROP, ++upto); in fit_write_images() 282 int upto; in fit_write_configs() local 287 upto = 0; in fit_write_configs() 292 snprintf(str, sizeof(str), "conf-%d", ++upto); in fit_write_configs() 307 snprintf(str, sizeof(str), FIT_FDT_PROP "-%d", upto); in fit_write_configs() 312 if (!upto) { in fit_write_configs()
|
/openbmc/u-boot/tools/buildman/ |
H A D | board.py | 130 for upto in range(len(fields)): 131 if fields[upto] == '-': 132 fields[upto] = ''
|
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/subdev/bios/ |
H A D | shadow.c | 39 shadow_fetch(struct nvkm_bios *bios, struct shadow *mthd, u32 upto) in shadow_fetch() argument 41 const u32 limit = (upto + 3) & ~3; in shadow_fetch() 48 return bios->size >= upto; in shadow_fetch()
|
/openbmc/u-boot/tools/patman/ |
H A D | series.py | 113 for upto in range(len(args)): 114 commit = self.commits[upto] 115 print(col.Color(col.GREEN, ' %s' % args[upto]))
|
/openbmc/linux/arch/arc/include/asm/ |
H A D | shmparam.h | 9 /* Handle upto 2 cache bins */
|
/openbmc/linux/arch/powerpc/platforms/pseries/ |
H A D | firmware.c | 36 * entry ends in a '*', only upto the '*' is matched. Otherwise the entire 93 * upto there in fw_hypertas_feature_init()
|
/openbmc/linux/Documentation/ABI/testing/ |
H A D | sysfs-class-fc | 18 <appid> is user provided string upto 128 characters
|
/openbmc/linux/drivers/net/wwan/iosm/ |
H A D | iosm_ipc_chnl_cfg.h | 54 * @index: Channel index (upto MAX_CHANNELS)
|
/openbmc/linux/fs/ext4/ |
H A D | mballoc.h | 89 * The maximum order upto which CR_BEST_AVAIL_LEN can trim a particular 91 * of 3, we can trim this request upto order 4.
|
/openbmc/u-boot/doc/ |
H A D | README.NDS32 | 16 - Upto 1024 User Special Registers (USR) for existing and extension
|
/openbmc/linux/drivers/hwtracing/coresight/ |
H A D | coresight-catu.c | 48 * Each 4K table pages have upto 256 data page pointers, taking upto 2K 206 * upto 1MB data buffer. The last table may have fewer in catu_populate_table() 267 * Each table can address upto 1MB and we can have in catu_init_sg_table()
|