Home
last modified time | relevance | path

Searched refs:check (Results 1 – 25 of 136) sorted by relevance

123456

/u-boot/scripts/dtc/
A Dchecks.c41 struct check;
45 struct check { struct
53 struct check **prereq; argument
57 static struct check *nm_##_prereqs[] = { __VA_ARGS__ }; \
58 static struct check nm_ = { \
141 struct check *prq = c->prereq[i]; in run_check()
1280 static void check_gpios_property(struct check *c, in check_gpios_property()
1554 static struct check *check_table[] = {
1641 struct check *cc = check_table[i]; in disable_warning_error()
1667 struct check *c = check_table[i]; in parse_checks_option()
[all …]
A Dupdate-dtc-source.sh50 make check
/u-boot/lib/zlib/
A Dinflate.c152 # define UPDATE(check, buf, len) \ argument
153 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
155 # define UPDATE(check, buf, len) adler32(check, buf, len) argument
160 # define CRC2(check, word) \ argument
164 check = crc32(check, hbuf, 2); \
167 # define CRC4(check, word) \ argument
173 check = crc32(check, hbuf, 4); \
465 state->check = crc32(state->check, next, copy); in inflate()
486 state->check = crc32(state->check, next, copy); in inflate()
507 state->check = crc32(state->check, next, copy); in inflate()
[all …]
A Dinflate.h84 unsigned long check; /* protected copy of check value */ member
/u-boot/scripts/coccinelle/free/
A Difnullfree.cocci2 /// NULL check before some freeing functions is not needed.
5 /// "kfree(NULL) is safe this check is probably not required"
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/arch/powerpc/cpu/mpc85xx/
A Dmp.c190 u32 granule_size, check; in determine_mp_bootpg() local
225 check = bootpg >> 13; in determine_mp_bootpg()
226 while ((check % 3) != 1) in determine_mp_bootpg()
227 check--; in determine_mp_bootpg()
228 bootpg = check << 13; in determine_mp_bootpg()
233 check = bootpg >> 12; in determine_mp_bootpg()
234 while ((check % 3) != 0) in determine_mp_bootpg()
235 check--; in determine_mp_bootpg()
236 bootpg = check << 12; in determine_mp_bootpg()
/u-boot/drivers/memory/
A Dstm32-fmc2-ebi.c168 int (*check)(struct stm32_fmc2_ebi *ebi, member
705 .check = stm32_fmc2_ebi_check_cclk,
713 .check = stm32_fmc2_ebi_check_mux,
733 .check = stm32_fmc2_ebi_check_waitcfg,
741 .check = stm32_fmc2_ebi_check_sync_trans,
749 .check = stm32_fmc2_ebi_check_async_trans,
754 .check = stm32_fmc2_ebi_check_cpsize,
766 .check = stm32_fmc2_ebi_check_async_trans,
803 .check = stm32_fmc2_ebi_check_clk_period,
809 .check = stm32_fmc2_ebi_check_sync_trans,
[all …]
/u-boot/drivers/bios_emulator/include/x86emu/
A Ddebug.h52 # define CHECK_IP_FETCH() (M.x86.check & CHECK_IP_FETCH_F)
53 # define CHECK_SP_ACCESS() (M.x86.check & CHECK_SP_ACCESS_F)
54 # define CHECK_MEM_ACCESS() (M.x86.check & CHECK_MEM_ACCESS_F)
55 # define CHECK_DATA_ACCESS() (M.x86.check & CHECK_DATA_ACCESS_F)
/u-boot/doc/
A DREADME.sha15 This SHA1 sum is used, to check, if the U-Boot Image in Flash is not
13 -c check the U-Boot image in flash
19 check, if the SHA1 sum from the Image stored in Flash is correct
/u-boot/doc/driver-model/
A Ddebugging.rst43 before relocation in U-Boot, check CONFIG_SPL_SYS_MALLOC_F_LEN and
51 If there is no error, you should check if the device is actually bound. Call
54 If it does not exist, check your device tree compatible strings match up with
57 If you are using of-platdata (e.g. CONFIG_SPL_OF_PLATDATA), check that the
/u-boot/include/linux/mtd/
A Dubi.h256 int len, int check);
258 int offset, int len, int check);
/u-boot/drivers/net/fsl-mc/dpio/
A Dqbman_portal.c77 p->mc.check = swp_mc_can_start; in qbman_swp_init()
123 BUG_ON(p->mc.check != swp_mc_can_start); in qbman_swp_mc_start()
129 p->mc.check = swp_mc_can_submit; in qbman_swp_mc_start()
138 BUG_ON(p->mc.check != swp_mc_can_submit); in qbman_swp_mc_submit()
150 p->mc.check = swp_mc_can_poll; in qbman_swp_mc_submit()
158 BUG_ON(p->mc.check != swp_mc_can_poll); in qbman_swp_mc_result()
166 p->mc.check = swp_mc_can_start; in qbman_swp_mc_result()
/u-boot/board/samsung/common/bootscripts/
A Dautoboot.cmd17 #### Routine: check_dtb - check that target.dtb exists on boot partition
27 #### Routine: check_ramdisk - check that uInitrd exists on boot partition
38 #### Routine: boot_fit - check that env $board_name is set and boot proper config of ITB image
/u-boot/fs/squashfs/
A Dsqfs_utils.h37 bool check; member
/u-boot/drivers/input/
A DKconfig20 includes methods to start/stop the device, check for available
29 includes methods to start/stop the device, check for available
38 includes methods to start/stop the device, check for available
/u-boot/scripts/
A DKbuild.include42 # filechk is used to check if the content of a generated file is updated.
239 # string if equal. User may override this check using make KBUILD_NOCMDDEP=1
240 arg-check = $(filter-out $(subst $(space),$(space_escape),$(strip $(cmd_$@))), \
243 arg-check = $(if $(strip $(cmd_$@)),,1)
260 if_changed = $(if $(strip $(any-prereq) $(arg-check)), \
266 if_changed_dep = $(if $(strip $(any-prereq) $(arg-check) ), \
274 # Will check if $(cmd_foo) or any of the prerequisites changed,
276 if_changed_rule = $(if $(strip $(any-prereq) $(arg-check) ), \
304 $(if $(arg-check), \
/u-boot/tools/binman/test/
A D071_gbb.dts17 disable-fw-rollback-check;
/u-boot/arch/x86/include/asm/arch-apollolake/acpi/
A Dpcie_port.asl83 } /* End PDS condition check */
108 } /* End PDS condition check */
/u-boot/lib/
A Dlist_sort.c176 static int __init check(struct debug_el *ela, struct debug_el *elb) in check() function
212 check(ela, elb); in cmp()
275 if (check(el, el1)) { in list_sort_test()
/u-boot/doc/device-tree-bindings/w1-eeprom/
A Dds2502.txt7 Also check doc/device-tree-bindings/w1 for onewire bus drivers
A Deep_sandbox.txt7 Also check doc/device-tree-bindings/w1 for onewire bus drivers
A Dds24xxx.txt7 Also check doc/device-tree-bindings/w1 for onewire bus drivers
/u-boot/doc/device-tree-bindings/w1/
A Dw1-gpio.txt9 Also check doc/device-tree-bindings/w1-eeprom for possible child nodes drivers
/u-boot/arch/arm/mach-uniphier/arm32/
A Dlowlevel_init.S64 mov r0, #-1 @ manager for all domains (No permission check)
111 cmp r0, #0 @ check if the command is successfully set
/u-boot/include/linux/
A Dcompiler.h257 #define __READ_ONCE(x, check) \ argument
260 if (check) \

Completed in 30 milliseconds

123456