/u-boot/lib/ |
A D | tpm-common.c | 23 int pack_byte_string(u8 *str, size_t size, const char *format, ...) in pack_byte_string() argument 30 va_start(args, format); in pack_byte_string() 31 for (; *format; format++) { in pack_byte_string() 32 switch (*format) { in pack_byte_string() 64 switch (*format) { in pack_byte_string() 84 int unpack_byte_string(const u8 *str, size_t size, const char *format, ...) in unpack_byte_string() argument 92 va_start(args, format); in unpack_byte_string() 93 for (; *format; format++) { in unpack_byte_string() 94 switch (*format) { in unpack_byte_string() 128 switch (*format) { in unpack_byte_string()
|
A D | tpm-utils.h | 36 int pack_byte_string(u8 *str, size_t size, const char *format, ...); 51 int unpack_byte_string(const u8 *str, size_t size, const char *format, ...);
|
A D | uuid.c | 211 const char *format; in uuid_bin_to_str() local 224 format = "%02X"; in uuid_bin_to_str() 226 format = "%02x"; in uuid_bin_to_str() 229 sprintf(uuid_str, format, uuid_bin[char_order[i]]); in uuid_bin_to_str()
|
/u-boot/drivers/video/ |
A D | simplefb.c | 20 const char *format; in simple_video_probe() local 48 format = fdt_getprop(blob, node, "format", NULL); in simple_video_probe() 49 debug("%s: %dx%d@%s\n", __func__, uc_priv->xsize, uc_priv->ysize, format); in simple_video_probe() 51 if (strcmp(format, "r5g6b5") == 0) { in simple_video_probe() 53 } else if (strcmp(format, "a8b8g8r8") == 0) { in simple_video_probe() 56 printf("%s: invalid format: %s\n", __func__, format); in simple_video_probe()
|
A D | mipi_dsi.c | 556 int mipi_dsi_dcs_get_pixel_format(struct mipi_dsi_device *dsi, u8 *format) in mipi_dsi_dcs_get_pixel_format() argument 560 err = mipi_dsi_dcs_read(dsi, MIPI_DCS_GET_PIXEL_FORMAT, format, in mipi_dsi_dcs_get_pixel_format() 561 sizeof(*format)); in mipi_dsi_dcs_get_pixel_format() 747 int mipi_dsi_dcs_set_pixel_format(struct mipi_dsi_device *dsi, u8 format) in mipi_dsi_dcs_set_pixel_format() argument 751 err = mipi_dsi_dcs_write(dsi, MIPI_DCS_SET_PIXEL_FORMAT, &format, in mipi_dsi_dcs_set_pixel_format() 752 sizeof(format)); in mipi_dsi_dcs_set_pixel_format()
|
/u-boot/include/linux/ |
A D | bug.h | 23 #define WARN(condition, format...) ({ \ argument 26 printf(format); \ 41 #define WARN_ONCE(condition, format...) ({ \ argument 47 WARN(1, format); \
|
/u-boot/include/ |
A D | vsprintf.h | 81 __attribute__ ((format (__printf__, 1, 2), noreturn)); 109 __attribute__ ((format (__printf__, 2, 3))); 142 __attribute__ ((format (__printf__, 3, 4))); 158 __attribute__ ((format (__printf__, 3, 4)));
|
A D | mipi_dsi.h | 122 u32 lanes, u32 format, unsigned int *lane_mbps); 209 enum mipi_dsi_pixel_format format; member 248 enum mipi_dsi_pixel_format format; member 367 int mipi_dsi_dcs_get_pixel_format(struct mipi_dsi_device *dsi, u8 *format); 456 int mipi_dsi_dcs_set_pixel_format(struct mipi_dsi_device *dsi, u8 format);
|
A D | fastboot.h | 73 const char *format, ...) 74 __attribute__ ((format (__printf__, 3, 4)));
|
/u-boot/drivers/fpga/ |
A D | Kconfig | 14 (in BIT format), fpga and device validation. 31 Enable FPGA driver for loading bitstream in BIT and BIN format 50 (in BIT format), fpga and device validation. 56 Enable FPGA driver for loading bitstream in BIT and BIN format 63 Enable FPGA driver for loading bitstream in PDI format on Xilinx 64 Versal device. PDI is a new programmable device image format for 72 Enable Spartan3 FPGA driver for loading in BIT format. 78 Enable Virtex-II FPGA driver for loading in BIT format. This driver 85 Enable FPGA driver for loading bitstream in BIT and BIN format
|
/u-boot/drivers/fastboot/ |
A D | fb_common.c | 43 const char *format, ...) in fastboot_response() argument 48 if (format) { in fastboot_response() 49 va_start(args, format); in fastboot_response() 52 format, args); in fastboot_response()
|
/u-boot/test/py/tests/test_efi_secboot/ |
A D | conftest.py | 33 check_call('rm -rf {}'.format(mnt_point), shell=True) 34 check_call('mkdir -p {}'.format(mnt_point), shell=True) 113 check_call('virt-make-fs --partition=gpt --size=+1M --type=vfat {} {}'.format( 115 check_call('rm -rf {}'.format(mnt_point), shell=True) 147 check_call('rm -rf {}'.format(mnt_point), shell=True) 148 check_call('mkdir -p {}'.format(mnt_point), shell=True) 230 …check_call('virt-make-fs --partition=gpt --size=+1M --type=vfat {} {}'.format(mnt_point, image_pat… 231 check_call('rm -rf {}'.format(mnt_point), shell=True)
|
/u-boot/tools/buildman/ |
A D | kconfiglib.py | 1223 .format(filename) 1226 .format(defconfig, filename) 2086 return "<{}>".format(", ".join(( 4742 return "<{}>".format(", ".join(fields)) 5346 return "<{}>".format(", ".join(fields)) 5763 return "<{}>".format(", ".join(fields)) 5947 .format(self.name, 6429 return "(defined at {})".format( 6688 .format(item.name_and_loc, item) 6730 "Reason: {}".format( [all …]
|
/u-boot/drivers/video/rockchip/ |
A D | rk_lvds.c | 43 int format; member 76 val = priv->format; in rk_lvds_enable() 192 priv->format = ret; in rk_lvds_of_to_plat() 196 priv->format = LVDS_FORMAT_JEIDA; in rk_lvds_of_to_plat() 203 priv->format |= LVDS_24BIT; in rk_lvds_of_to_plat() 205 priv->format |= LVDS_18BIT; in rk_lvds_of_to_plat() 212 priv->format |= LVDS_24BIT; in rk_lvds_of_to_plat()
|
/u-boot/drivers/usb/dwc3/ |
A D | linux-compat.h | 14 #define dev_WARN(dev, format, arg...) debug(format, ##arg) argument
|
/u-boot/doc/device-tree-bindings/video/ |
A D | simple-framebuffer.txt | 13 - format: The format of the framebuffer surface. Valid values are: 24 format = "r5g6b5";
|
/u-boot/test/py/tests/ |
A D | test_bind.py | 20 .format(uclass, drv, leaf)) 127 …response = u_boot_console.run_command('bind {} {} simple_bus'.format(child2_uclass, child2_index,… 139 response = u_boot_console.run_command('unbind simple_bus {}'.format(child_of_child2_index)) 148 …response = u_boot_console.run_command('bind {} {} simple_bus'.format(child2_uclass, child2_index,… 161 …response = u_boot_console.run_command('unbind {} {} simple_bus'.format(child2_uclass, child2_inde… 172 …response = u_boot_console.run_command('unbind {} {} simple_bus'.format(child2_uclass, child2_inde…
|
/u-boot/drivers/usb/musb-new/ |
A D | musb_debug.h | 13 #define yprintk(facility, format, args...) \ argument 14 do { printk(facility "%s %d: " format , \
|
/u-boot/drivers/video/nexell/ |
A D | s5pxx18_dp_lvds.c | 60 enum dp_lvds_format format = DP_LVDS_FORMAT_JEIDA; in lvds_setup() local 64 format = dev->lvds_format; in lvds_setup() 69 printf("%s, ", format == DP_LVDS_FORMAT_VESA ? "VESA" : in lvds_setup() 70 format == DP_LVDS_FORMAT_JEIDA ? "JEIDA" : "LOC"); in lvds_setup() 126 (format << 19) | /* JEiDA data packing */ in lvds_setup()
|
/u-boot/scripts/kconfig/tests/ |
A D | conftest.py | 100 print("[command]\n{}\n".format(' '.join(command))) 102 print("[retcode]\n{}\n".format(self.retcode)) 111 print("[output for '{}']".format(out_file)) 151 return self._run_conf('--defconfig={}'.format(defconfig_path)) 160 return self._run_conf('--{}config'.format(mode), extra_env=extra_env)
|
/u-boot/test/py/tests/test_fs/ |
A D | conftest.py | 274 pytest.skip('Creating failed for filesystem: ' + fs_type + '. {}'.format(err)) 280 pytest.skip('Preparing mount folder failed for filesystem: ' + fs_type + '. {}'.format(err)) 350 pytest.skip('Setup failed for filesystem: ' + fs_type + '. {}'.format(err)) 390 pytest.skip('Creating failed for filesystem: ' + fs_type + '. {}'.format(err)) 396 pytest.skip('Preparing mount folder failed for filesystem: ' + fs_type + '. {}'.format(err)) 513 pytest.skip('Creating failed for filesystem: ' + fs_type + '. {}'.format(err)) 519 pytest.skip('Preparing mount folder failed for filesystem: ' + fs_type + '. {}'.format(err)) 590 pytest.skip('Creating failed for filesystem: ' + fs_type + '. {}'.format(err)) 596 pytest.skip('Preparing mount folder failed for filesystem: ' + fs_type + '. {}'.format(err))
|
/u-boot/common/eeprom/ |
A D | eeprom_field.c | 208 char format[8]; in eeprom_field_print_ascii() local 210 sprintf(format, "%%.%ds\n", field->size); in eeprom_field_print_ascii() 212 printf(format, field->buf); in eeprom_field_print_ascii()
|
/u-boot/drivers/qe/ |
A D | uec_phy.c | 28 #define ugphy_printk(format, arg...) \ argument 29 printf(format "\n", ## arg) 31 #define ugphy_dbg(format, arg...) \ argument 32 ugphy_printk(format, ## arg) 33 #define ugphy_err(format, arg...) \ argument 34 ugphy_printk(format, ## arg) 35 #define ugphy_info(format, arg...) \ argument 36 ugphy_printk(format, ## arg) 37 #define ugphy_warn(format, arg...) \ argument 38 ugphy_printk(format, ## arg)
|
/u-boot/doc/android/ |
A D | boot-image.rst | 16 (``recovery.img``) also has Android Boot Image format. 18 Android Boot Image format is described at [1]_. At the moment it can have one of 29 other, or in Android DTBO image format) 33 The Android Boot Image format is represented by 42 command. In order to use Android Boot Image format support, next option should 63 Android Boot Image format, will parse that and boot the kernel from it, 139 C API for working with Android Boot Image format
|
/u-boot/arch/arm/dts/ |
A D | uniphier-pxs2-gentil.dts | 59 dai-format = "i2s"; 73 dai-format = "i2s";
|