Home
last modified time | relevance | path

Searched refs:needed (Results 1 – 25 of 231) sorted by relevance

12345678910

/u-boot/cmd/
A Dtrace.c34 size_t buff_size, avail, buff_ptr, needed, used; in create_func_list() local
42 err = trace_list_functions(buff + buff_ptr, avail, &needed); in create_func_list()
44 printf("Error: truncated (%#zx bytes needed)\n", needed); in create_func_list()
45 used = min(avail, (size_t)needed); in create_func_list()
57 size_t buff_size, avail, buff_ptr, needed, used; in create_call_list() local
65 err = trace_list_calls(buff + buff_ptr, avail, &needed); in create_call_list()
67 printf("Error: truncated (%#zx bytes needed)\n", needed); in create_call_list()
68 used = min(avail, (size_t)needed); in create_call_list()
/u-boot/lib/
A Dtrace.c230 *needed = ptr - buff; in trace_list_functions()
290 *needed = ptr - buff; in trace_list_calls()
364 size_t needed; in trace_init() local
404 if (needed > buff_size) { in trace_init()
406 buff_size, needed); in trace_init()
411 memset(hdr, '\0', needed); in trace_init()
418 hdr->ftrace = (struct trace_call *)(buff + needed); in trace_init()
439 size_t needed; in trace_early_init() local
449 if (needed > buff_size) { in trace_early_init()
451 buff_size, needed); in trace_early_init()
[all …]
/u-boot/scripts/coccinelle/free/
A Difnullfree.cocci2 /// NULL check before some freeing functions is not needed.
50 cocci.print_main("NULL check before that freeing function is not needed", p)
56 msg = "WARNING: NULL check before some freeing functions is not needed."
/u-boot/include/
A Dtrace.h70 int trace_list_functions(void *buff, size_t buff_size, size_t *needed);
90 int trace_list_calls(void *buff, size_t buff_size, size_t *needed);
/u-boot/arch/arm/dts/
A Dfsl-lx2160a-rdb.dts52 /* AR8035 PHY - "compatible" property not strictly needed */
58 /* AR8035 PHY - "compatible" property not strictly needed */
64 /* AQR107 PHY - "compatible" property not strictly needed */
70 /* AQR107 PHY - "compatible" property not strictly needed */
A Dskeleton.dtsi2 * Skeleton device tree; the bare minimum needed to boot; just include and
A Dmeson-g12b-odroid-n2-u-boot.dtsi9 /* SARADC is needed for proper board variant detection */
A Dskeleton64.dtsi3 * needed to boot; just include and add a compatible value. The
A Dmeson-sm1-odroid-c4-u-boot.dtsi15 /* SARADC is needed for proper board variant detection */
A Dmeson-sm1-odroid-hc4-u-boot.dtsi15 /* SARADC is needed for proper board variant detection */
A Dexynos54xx-pinctrl-uboot.dtsi12 * numbers are not needed in U-Boot for exynos.
/u-boot/doc/board/intel/
A Dgalileo.rst7 Only one binary blob is needed for Remote Management Unit (RMU) within Intel
9 needed by the Quark SoC itself.
/u-boot/include/xen/interface/io/
A Dprotocols.h25 # error arch fixup needed here
/u-boot/arch/x86/dts/
A Dskeleton.dtsi2 * Skeleton device tree; the bare minimum needed to boot; just include and
/u-boot/arch/mips/dts/
A Dskeleton.dtsi3 * Skeleton device tree; the bare minimum needed to boot; just include and
/u-boot/arch/mips/mach-jz47xx/jz4780/
A DTODO3 - reduce the hundreds of definitions of register addresses to the ones really needed in assembly or…
/u-boot/drivers/scsi/
A DKconfig35 This is deprecated and is not needed when BLK is enabled.
44 This is deprecated and is not needed when CONFIG_DM_SCSI is enabled.
/u-boot/arch/arc/dts/
A Dskeleton.dtsi2 * Skeleton device tree; the bare minimum needed to boot; just include and
/u-boot/doc/build/
A Dgcc.rst22 Depending on the build targets further packages maybe needed
49 Depending on the build targets further packages maybe needed.
59 For building U-Boot on Alpine Linux at least the following packages are needed:
141 in the U-Boot tree in `scripts/dtc` and built automatically as needed.
150 of dtc is new enough. It also makes sure that pylibfdt is present, if needed
/u-boot/fs/squashfs/
A DKconfig11 embedded systems) where low overhead is needed.
/u-boot/doc/
A Dindex.rst49 as needed (or at least as we managed to add it - probably *not* all that is
50 needed).
A DREADME.VLAN11 Note: In order to enable CDP support a small change is needed in the
A DREADME.bitbangMII16 MDIO_DECLARE - Declaration needed to access to the MDIO pin (optional)
21 MDC_DECLARE - Declaration needed to access to the MDC pin (optional)
/u-boot/tools/binman/
A Dentry.py524 needed = self.pad_before + self.contents_size + self.pad_after
525 needed = max(needed, self.min_size)
526 needed = tools.align(needed, self.align_size)
529 size = needed
539 if self.size < needed:
541 "%#x (%d)" % (needed, needed, self.size, self.size))
/u-boot/doc/board/ti/
A Dk3.rst42 boot media needed to load the binaries packaged inside `tiboot3.bin`,
52 any peripherals needed load the larger binaries inside the `tispl.bin`
65 initialize even more peripherals needed to load in the `u-boot.img`
97 Security (TIFS), needed to operate the Security Management Subsystem,
108 All scripts and code needed to build the `tiboot3.bin`, `tispl.bin` and
200 At this point you should have all the needed binaries to boot the wakeup
268 At this point you should have every binary needed initialize both the

Completed in 36 milliseconds

12345678910