/u-boot/lib/zstd/common/ |
A D | error_private.h | 43 #undef ERROR /* already defined on Visual Studio */ 44 #define ERROR(name) ZSTD_ERROR(name) macro 47 ERR_STATIC unsigned ERR_isError(size_t code) { return (code > ERROR(maxCode)); } in ERR_isError() 104 __FILE__, __LINE__, ERR_QUOTE(cond), ERR_QUOTE(ERROR(err))); \ 108 return ERROR(err); \ 119 __FILE__, __LINE__, ERR_QUOTE(ERROR(err))); \ 123 return ERROR(err); \
|
A D | entropy_common.c | 81 if (countSize > hbSize) return ERROR(corruption_detected); in FSE_readNCount_body() 90 if (nbBits > FSE_TABLELOG_ABSOLUTE_MAX) return ERROR(tableLog_tooLarge); in FSE_readNCount_body() 196 if (remaining != 1) return ERROR(corruption_detected); in FSE_readNCount_body() 198 if (charnum > maxSV1) return ERROR(maxSymbolValue_tooSmall); in FSE_readNCount_body() 199 if (bitCount > 32) return ERROR(corruption_detected); in FSE_readNCount_body() 271 if (!srcSize) return ERROR(srcSize_wrong); in HUF_readStats_body() 278 if (iSize+1 > srcSize) return ERROR(srcSize_wrong); in HUF_readStats_body() 279 if (oSize >= hwSize) return ERROR(corruption_detected); in HUF_readStats_body() 287 if (iSize+1 > srcSize) return ERROR(srcSize_wrong); in HUF_readStats_body() 301 if (weightTotal == 0) return ERROR(corruption_detected); in HUF_readStats_body() [all …]
|
A D | fse_decompress.c | 83 …if (FSE_BUILD_DTABLE_WKSP_SIZE(tableLog, maxSymbolValue) > wkspSize) return ERROR(maxSymbolValue_t… in FSE_buildDTable_internal() 84 if (maxSymbolValue > FSE_MAX_SYMBOL_VALUE) return ERROR(maxSymbolValue_tooLarge); in FSE_buildDTable_internal() 85 if (tableLog > FSE_MAX_TABLELOG) return ERROR(tableLog_tooLarge); in FSE_buildDTable_internal() 161 …if (position!=0) return ERROR(GENERIC); /* position must reach all cells once, otherwise normali… in FSE_buildDTable_internal() 217 if (nbBits < 1) return ERROR(GENERIC); /* min size */ in FSE_buildDTable_raw() 276 if (op>(omax-2)) return ERROR(dstSize_tooSmall); in FSE_decompress_usingDTable_generic() 283 if (op>(omax-2)) return ERROR(dstSize_tooSmall); in FSE_decompress_usingDTable_generic() 332 if (wkspSize < sizeof(*wksp)) return ERROR(GENERIC); in FSE_decompress_wksp_body() 338 if (tableLog > maxLog) return ERROR(tableLog_tooLarge); in FSE_decompress_wksp_body() 344 …if (FSE_DECOMPRESS_WKSP_SIZE(tableLog, maxSymbolValue) > wkspSize) return ERROR(tableLog_tooLarge); in FSE_decompress_wksp_body()
|
A D | bitstream.h | 177 if (dstCapacity <= sizeof(bitC->bitContainer)) return ERROR(dstSize_tooSmall); in BIT_initCStream() 260 if (srcSize < 1) { ZSTD_memset(bitD, 0, sizeof(*bitD)); return ERROR(srcSize_wrong); } in BIT_initDStream() 270 if (lastByte == 0) return ERROR(GENERIC); /* endMark not present */ } in BIT_initDStream() 298 if (lastByte == 0) return ERROR(corruption_detected); /* endMark not present */ in BIT_initDStream()
|
/u-boot/scripts/dtc/ |
A D | dtc-parser.y | 29 #define ERROR(loc, ...) \ macro 178 ERROR(&@2, "Label or path %s not found", $1); 189 ERROR(&@3, "Label or path %s not found", $3); 218 ERROR(&@3, "Label or path %s not found", $3); 230 ERROR(&@3, "Label or path %s not found", $3); 348 ERROR(&@2, "Array elements must be" 374 ERROR(&@2, "Value out of range for" 389 ERROR(&@2, "References are only allowed in " 476 ERROR(&@$, "Division by zero"); 485 ERROR(&@$, "Division by zero"); [all …]
|
A D | checks.c | 70 #define ERROR(nm_, fn_, d_, ...) \ macro 195 ERROR(nm, check_is_string, (propname)) 224 ERROR(nm, check_is_string_list, (propname)) 242 ERROR(nm, check_is_cell, (propname)) 260 ERROR(duplicate_node_names, check_duplicate_node_names, NULL); 276 ERROR(duplicate_property_names, check_duplicate_property_names, NULL); 293 ERROR(node_name_chars, check_node_name_chars, PROPNODECHARS "@"); 354 ERROR(property_name_chars, check_property_name_chars, PROPNODECHARS); 441 ERROR(duplicate_label, check_duplicate_label_node, NULL); 524 ERROR(explicit_phandles, check_explicit_phandles, NULL); [all …]
|
/u-boot/tools/ |
A D | ifwitool.c | 826 ERROR("Invalid header : %s\n", name); in bpdt_validate_header() 1183 ERROR("Image does not contain BPDT!!\n"); in ifwi_parse() 1556 ERROR("File write error\n"); in ifwi_write() 1781 ERROR("%s: -e option required\n", __func__); in ifwi_dir_add() 1800 ERROR("%s: -f option required\n", __func__); in ifwi_add() 1805 ERROR("%s: -n option required\n", __func__); in ifwi_add() 1836 ERROR("%s: -n option required\n", __func__); in ifwi_delete() 1926 ERROR("%s: -f option required\n", __func__); in ifwi_extract() 1931 ERROR("%s: -n option required\n", __func__); in ifwi_extract() 2288 ERROR("%s: failed execution\n", argv[0]); in main() [all …]
|
/u-boot/scripts/ |
A D | checkpatch.pl | 2431 sub ERROR { subroutine 2686 ERROR("PRE_SCHEMA", 4330 ERROR("OPEN_BRACE", 4514 ERROR("TEST_TYPE", 4525 ERROR("TEST_ATTR", 5413 if (ERROR("SPACING", 5568 ERROR("SPACING", 6914 ERROR("MEMSET", 7260 ERROR("DATE_TIME", 7386 ERROR("IN_ATOMIC", [all …]
|
/u-boot/lib/zstd/decompress/ |
A D | huf_decompress.c | 177 return ERROR(corruption_detected); in HUF_DecompressAsmArgs_init() 251 return ERROR(corruption_detected); in HUF_initRemainingDStream() 258 return ERROR(corruption_detected); in HUF_initRemainingDStream() 755 if (dtd.tableType != 0) return ERROR(GENERIC); in HUF_decompress1X1_usingDTable() 780 if (dtd.tableType != 0) return ERROR(GENERIC); in HUF_decompress4X1_usingDTable() 1422 return ERROR(corruption_detected); in HUF_decompress4X2_usingDTable_internal_bmi2_asm() 1461 if (dtd.tableType != 1) return ERROR(GENERIC); in HUF_DGEN() 1487 if (dtd.tableType != 1) return ERROR(GENERIC); in HUF_decompress4X2_usingDTable() 1620 if (dstSize == 0) return ERROR(dstSize_tooSmall); in HUF_decompress4X_hufOnly_wksp() 1645 if (dstSize == 0) return ERROR(dstSize_tooSmall); in HUF_decompress1X_DCtx_wksp() [all …]
|
A D | zstd_ddict.c | 96 return ERROR(dictionary_corrupted); /* only accept specified dictionaries */ in ZSTD_loadEntropy_intoDDict() 102 return ERROR(dictionary_corrupted); /* only accept specified dictionaries */ in ZSTD_loadEntropy_intoDDict() 130 if (!internalBuffer) return ERROR(memory_allocation); in ZSTD_initDDict_internal()
|
A D | zstd_decompress.c | 703 return ZSTD_errorFrameSizeInfo(ERROR(srcSize_wrong)); in ZSTD_findFrameSizeInfo() 717 return ZSTD_errorFrameSizeInfo(ERROR(srcSize_wrong)); in ZSTD_findFrameSizeInfo() 729 return ZSTD_errorFrameSizeInfo(ERROR(srcSize_wrong)); in ZSTD_findFrameSizeInfo() 1656 bounds.error = ERROR(parameter_unsupported); in ZSTD_dParam_getBounds()
|
/u-boot/tools/u_boot_pylib/ |
A D | tout.py | 12 ERROR, WARNING, NOTICE, INFO, DETAIL, DEBUG = range(6) variable 107 _output(ERROR, msg, _color.RED)
|
/u-boot/configs/ |
A D | am335x_shc_defconfig | 32 …n run emmc_setup; else echo ERROR: eMMC device not detected!; panic; fi; if run loaduimage; then r…
|
A D | am335x_shc_sdboot_defconfig | 33 … ERROR: SD/MMC-Card not detected!; panic; fi; if run loaduimage; then echo Bootable SD/MMC-Card in…
|
A D | am335x_shc_ict_defconfig | 30 CONFIG_BOOTCOMMAND="if mmc dev 0; mmc rescan; then run sd_setup; else echo ERROR: SD/MMC-Card not d…
|
A D | am335x_shc_netboot_defconfig | 33 CONFIG_BOOTCOMMAND="run fusecmd; if run netboot; then echo Booting from network; else echo ERROR: C…
|
/u-boot/doc/android/ |
A D | avb2.rst | 59 avb_slot_verify.c:175: ERROR: boot: Hash of data does not match digest in 67 avb_vbmeta_image.c:206: ERROR: Hash does not match! 68 avb_slot_verify.c:388: ERROR: vbmeta: Error verifying vbmeta image:
|
/u-boot/arch/arm/dts/ |
A D | stih407-pinctrl.dtsi | 741 ERROR = <&pio10 0 ALT1 IN SE_NICLK_IO 0 CLK_A>; 750 ERROR = <&pio10 0 ALT1 IN SE_NICLK_IO 0 CLK_A>; 769 ERROR = <&pio11 4 ALT1 IN SE_NICLK_IO 0 CLK_A>; 778 ERROR = <&pio11 4 ALT1 IN SE_NICLK_IO 0 CLK_A>; 797 ERROR = <&pio13 0 ALT1 IN SE_NICLK_IO 0 CLK_A>; 806 ERROR = <&pio13 0 ALT1 IN SE_NICLK_IO 0 CLK_A>; 818 ERROR = <&pio13 5 ALT1 IN SE_NICLK_IO 0 CLK_A>; 830 ERROR = <&pio14 2 ALT3 IN SE_NICLK_IO 0 CLK_B>; 842 ERROR = <&pio18 0 ALT1 IN SE_NICLK_IO 0 CLK_A>; 851 ERROR = <&pio19 0 ALT2 IN SE_NICLK_IO 0 CLK_A>; [all …]
|
/u-boot/board/hisilicon/hikey/ |
A D | build-tf.mak | 22 echo "ERROR: cross-compiler $(CROSS_COMPILE)gcc not in PATH=$$PATH!" ; \
|
/u-boot/scripts/coccinelle/iterators/ |
A D | itnull.cocci | 93 msg = "ERROR: iterator variable bound on line %s cannot be NULL" % (p1[0].line)
|
A D | use_after_iter.cocci | 146 msg = "ERROR: invalid reference to the index variable of the iterator on line %s" % (p1[0].line)
|
/u-boot/doc/ |
A D | README.rockchip | 141 ### ERROR ### Please RESET the board ### 184 ERROR: Error initializing runtime service opteed_fast 386 mmc: ERROR: SDHCI ERR:cmd:0x102,stat:0x18000 387 mmc: ERROR: Card did not respond to voltage select! 389 mmc: ERROR: SDHCI ERR:cmd:0x102,stat:0x18000 390 mmc: ERROR: Card did not respond to voltage select! 392 mmc: ERROR: SDHCI ERR:cmd:0x102,stat:0x18000 393 mmc: ERROR: Card did not respond to voltage select!
|
/u-boot/drivers/usb/gadget/ |
A D | storage_common.c | 117 #define ERROR(d, fmt, args...) do { } while (0) macro
|
A D | f_mass_storage.c | 395 ERROR(common, "common->fsg is NULL in %s at %u\n", func, line); in __fsg_is_set() 2162 ERROR(common, "can't enable %s, result %d\n", ep->name, rc); in enable_endpoint() 2172 ERROR(common, "can't allocate request for %s\n", ep->name); in alloc_request() 2703 ERROR(fsg, "unable to autoconfigure all endpoints\n"); in fsg_bind()
|
/u-boot/doc/develop/ |
A D | checkpatch.rst | 219 - ERROR 221 This is the most strict level. Messages of type ERROR must be taken 227 more careful review. But it is milder than an ERROR. 439 in_atomic() is not for driver use so any such use is reported as an ERROR.
|