| /u-boot/test/py/tests/ |
| A D | test_efi_fit.py | 213 def make_efi(fname, comp): argument 230 if comp: 235 def make_dtb(fdt_type, comp): argument 261 if comp: 266 def make_fit(comp): argument 279 'efi-bin': os.path.basename(make_efi('test-efi-fit-helloworld.efi', comp)), 280 'kernel-type': 'kernel' if comp else 'kernel_noload', 281 'efi-comp': 'gzip' if comp else 'none', 282 'fdt-bin': os.path.basename(make_dtb('user', comp)), 283 'fdt-comp': 'gzip' if comp else 'none',
|
| /u-boot/cmd/ |
| A D | ximg.c | 57 uint8_t comp; in do_imgextract() local 102 comp = image_get_comp(hdr); in do_imgextract() 103 if ((comp != IH_COMP_NONE) && (argc < 4)) { in do_imgextract() 174 if (fit_image_get_comp(fit_hdr, noffset, &comp)) in do_imgextract() 175 comp = IH_COMP_NONE; in do_imgextract() 187 switch (comp) { in do_imgextract() 247 printf("Unimplemented compression type %d\n", comp); in do_imgextract()
|
| A D | fpga.c | 293 u8 comp; in do_fpga_loadmk() local 295 comp = image_get_comp(hdr); in do_fpga_loadmk() 296 if (comp == IH_COMP_GZIP) { in do_fpga_loadmk()
|
| /u-boot/fs/btrfs/common/ |
| A D | rbtree-utils.c | 23 rb_compare_nodes comp) in rb_insert() argument 32 ret = comp(parent, node); in rb_insert() 46 struct rb_node *rb_search(struct rb_root *root, void *key, rb_compare_keys comp, in rb_search() argument 56 ret = comp(n, key); in rb_search()
|
| A D | rbtree-utils.h | 34 rb_compare_nodes comp); 39 struct rb_node *rb_search(struct rb_root *root, void *key, rb_compare_keys comp,
|
| /u-boot/arch/arm/mach-k3/ |
| A D | sysfw-loader.c | 177 struct extboot_comp *comp; in k3_sysfw_configure_using_fit() local 228 comp = &common_header->comps[0]; in k3_sysfw_configure_using_fit() 230 comp->comp_type = COMP_TYPE_SBL_DATA; in k3_sysfw_configure_using_fit() 231 comp->boot_core = 0x10; in k3_sysfw_configure_using_fit() 232 comp->comp_opts = 0; in k3_sysfw_configure_using_fit() 234 comp->dest_addr = addr; in k3_sysfw_configure_using_fit() 235 comp->comp_size = sizeof(*bcfg_header); in k3_sysfw_configure_using_fit() 247 comp->comp_size += desc->size; in k3_sysfw_configure_using_fit() 269 comp->comp_size += desc->size; in k3_sysfw_configure_using_fit()
|
| /u-boot/boot/ |
| A D | image.c | 341 const char __maybe_unused *os, *arch, *type, *comp; in image_print_type() local 346 comp = genimg_get_comp_name(image_get_comp(hdr)); in image_print_type() 348 printf("%s %s %s (%s)\n", arch, os, type, comp); in image_print_type() 443 int image_decomp(int comp, ulong load, ulong image_start, int type, in image_decomp() argument 450 print_decomp_msg(comp, type, load == image_start); in image_decomp() 457 switch (comp) { in image_decomp() 525 printf("Unimplemented compression type %d\n", comp); in image_decomp() 663 const char *genimg_get_comp_name(uint8_t comp) in genimg_get_comp_name() argument 666 comp)); in genimg_get_comp_name() 687 const char *genimg_get_comp_short_name(uint8_t comp) in genimg_get_comp_short_name() argument [all …]
|
| A D | image-fit.c | 480 uint8_t type, arch, os, comp = IH_COMP_NONE; in fit_image_print() local 513 fit_image_get_comp(fit, image_noffset, &comp); in fit_image_print() 514 printf("%s Compression: %s\n", p, genimg_get_comp_name(comp)); in fit_image_print() 801 *comp = genimg_get_comp_id(data); in fit_image_get_comp() 1624 return (comp == image_comp); in fit_image_check_comp() 2070 uint8_t os, comp; in fit_image_load() local 2262 comp = IH_COMP_NONE; in fit_image_load() 2265 if (!fit_image_get_comp(fit, noffset, &comp) && in fit_image_load() 2266 comp != IH_COMP_NONE && in fit_image_load() 2277 if (image_decomp(comp, load, data, image_type, in fit_image_load() [all …]
|
| A D | bootm.c | 136 images.os.comp = image_get_comp(os_hdr); in bootm_find_os() 156 &images.os.comp)) { in bootm_find_os() 195 images.os.comp = android_image_get_kcomp(boot_img, vendor_boot_img); in bootm_find_os() 430 err = image_decomp(os.comp, load, os.image_start, os.type, in bootm_load_os() 434 err = handle_decomp_error(os.comp, load_end - load, in bootm_load_os() 447 no_overlap = (os.comp == IH_COMP_NONE && load == image_start); in bootm_load_os()
|
| /u-boot/lib/ |
| A D | qsort.c | 27 int (*comp)(const void *, const void *)) in qsort() 53 if ((*comp)(a, b) <= 0) { in qsort()
|
| /u-boot/include/ |
| A D | image.h | 340 uint8_t comp, type, os; /* compression, type of image, os type */ member 491 const char *genimg_get_os_short_name(uint8_t comp); 529 const char *genimg_get_comp_name(uint8_t comp); 537 const char *genimg_get_comp_short_name(uint8_t comp); 797 image_get_hdr_b(comp) /* image_get_comp */ 856 image_set_hdr_b(comp) /* image_set_comp */ 943 int image_decomp(int comp, ulong load, ulong image_start, int type, 1095 int fit_image_get_comp(const void *fit, int noffset, uint8_t *comp); 1279 int fit_image_check_comp(const void *fit, int noffset, uint8_t comp);
|
| /u-boot/fs/cbfs/ |
| A D | cbfs.c | 119 struct cbfs_file_attr_compression *comp; in fill_node() local 121 comp = start + offset; in fill_node() 122 node->comp_algo = be32_to_cpu(comp->compression); in fill_node() 124 be32_to_cpu(comp->decompressed_size); in fill_node()
|
| /u-boot/drivers/video/ |
| A D | stb_truetype.h | 1394 flags = ttSHORT(comp); comp+=2; in stbtt_GetGlyphShape() 1395 gidx = ttSHORT(comp); comp+=2; in stbtt_GetGlyphShape() 1399 mtx[4] = ttSHORT(comp); comp+=2; in stbtt_GetGlyphShape() 1400 mtx[5] = ttSHORT(comp); comp+=2; in stbtt_GetGlyphShape() 1402 mtx[4] = ttCHAR(comp); comp+=1; in stbtt_GetGlyphShape() 1403 mtx[5] = ttCHAR(comp); comp+=1; in stbtt_GetGlyphShape() 1414 mtx[0] = ttSHORT(comp)/16384.0f; comp+=2; in stbtt_GetGlyphShape() 1416 mtx[3] = ttSHORT(comp)/16384.0f; comp+=2; in stbtt_GetGlyphShape() 1418 mtx[0] = ttSHORT(comp)/16384.0f; comp+=2; in stbtt_GetGlyphShape() 1419 mtx[1] = ttSHORT(comp)/16384.0f; comp+=2; in stbtt_GetGlyphShape() [all …]
|
| /u-boot/arch/arm/dts/ |
| A D | uniphier-pxs2-vodka.dts | 53 comp-spdif-out {
|
| /u-boot/drivers/net/ |
| A D | bcm6368-eth.c | 583 const char *comp; in bcm6368_eth_probe() local 589 comp = ofnode_read_string(node, "compatible"); in bcm6368_eth_probe() 590 if (!comp || memcmp(comp, ETH_PORT_STR, sizeof(ETH_PORT_STR))) in bcm6368_eth_probe()
|
| /u-boot/include/linux/usb/ |
| A D | ch9.h | 670 usb_ss_max_streams(const struct usb_ss_ep_comp_descriptor *comp) in usb_ss_max_streams() argument 674 if (!comp) in usb_ss_max_streams() 677 max_streams = comp->bmAttributes & 0x1f; in usb_ss_max_streams()
|
| /u-boot/doc/develop/ |
| A D | commands.rst | 16 U_BOOT_CMD_COMPLETE(name, maxargs, repeatable, command, "usage, "help", comp) 39 comp 54 U_BOOT_CMD_MKENTCOMPLETE(name, maxargs, repeatable, command, "usage, "help", comp)
|
| /u-boot/arch/mips/mach-octeon/include/mach/ |
| A D | cvmx-xcv-defs.h | 214 u64 comp : 1; member
|
| /u-boot/drivers/net/octeontx/ |
| A D | xcv.c | 52 reset.s.comp = 1; in xcv_init_hw()
|
| /u-boot/fs/squashfs/ |
| A D | sqfs.c | 652 bool comp; in sqfs_count_metablks() local 655 ret = sqfs_read_metablock(table, offset + cur_size, &comp, in sqfs_count_metablks() 676 bool comp; in sqfs_get_metablk_pos() local 682 ret = sqfs_read_metablock(table, offset + cur_size, &comp, in sqfs_get_metablk_pos() 1268 finfo->comp = ret; in sqfs_get_regfile_info() 1306 finfo->comp = ret; in sqfs_get_lregfile_info() 1546 if (finfo.frag && finfo.comp) { in sqfs_read() 1567 } else if (finfo.frag && !finfo.comp) { in sqfs_read()
|
| /u-boot/arch/mips/mach-octeon/ |
| A D | cvmx-helper-agl.c | 143 agl_prtx_ctl.s.comp = 1; in __cvmx_helper_agl_probe()
|
| /u-boot/fs/zfs/ |
| A D | zfs.c | 564 unsigned int comp; in zio_read() local 570 comp = (zfs_to_cpu64((bp)->blk_prop, endian)>>32) & 0xff; in zio_read() 579 if (comp >= ZIO_COMPRESS_FUNCTIONS) { in zio_read() 580 printf("compression algorithm %u not supported\n", (unsigned int) comp); in zio_read() 584 if (comp != ZIO_COMPRESS_OFF && decomp_table[comp].decomp_func == NULL) { in zio_read() 585 printf("compression algorithm %s not supported\n", decomp_table[comp].name); in zio_read() 589 if (comp != ZIO_COMPRESS_OFF) { in zio_read() 604 if (comp != ZIO_COMPRESS_OFF) { in zio_read() 611 err = decomp_table[comp].decomp_func(compbuf, *buf, psize, lsize); in zio_read()
|
| /u-boot/fs/ubifs/ |
| A D | ubifs.c | 87 struct ubifs_compressor *comp; in crypto_alloc_comp() local 93 comp = ubifs_compressors[i]; in crypto_alloc_comp() 94 if (!comp) { in crypto_alloc_comp() 98 if (strncmp(alg_name, comp->capi_name, strlen(alg_name)) == 0) { in crypto_alloc_comp()
|
| /u-boot/tools/env/ |
| A D | fw_env.c | 1724 char comp[256]; in find_nvmem_device() local 1742 bytes = snprintf(comp, sizeof(comp), "%s/%s/of_node/compatible", path, dent->d_name); in find_nvmem_device() 1743 if (bytes < 0 || bytes == sizeof(comp)) { in find_nvmem_device() 1747 fp = fopen(comp, "r"); in find_nvmem_device() 1755 "read failed about %s\n", comp); in find_nvmem_device()
|
| /u-boot/tools/ |
| A D | imagetool.h | 69 int comp; member
|