| /u-boot/arch/powerpc/lib/ |
| A D | extable.c | 33 search_one_table(const struct exception_table_entry *first, in search_one_table() argument 38 while (first <= last) { in search_one_table() 39 diff = first->insn - value; in search_one_table() 41 return first->fixup; in search_one_table() 42 first++; in search_one_table()
|
| /u-boot/cmd/ |
| A D | conitrace.c | 15 bool first = true; in do_conitrace() local 27 if (first && (c == 'x' || c == 'X')) in do_conitrace() 31 first = false; in do_conitrace() 37 first = true; in do_conitrace()
|
| A D | cpu.c | 32 bool first = true; in print_cpu_list() local 52 printf("%s%s", first ? ": " : ", ", in print_cpu_list() 54 first = false; in print_cpu_list()
|
| A D | sound.c | 42 bool first = true; in do_play() local 49 while (argc || first) { in do_play() 50 first = false; in do_play()
|
| A D | bootmenu.c | 117 iter = menu->first; in bootmenu_choice_entry() 123 iter = menu->first; in bootmenu_choice_entry() 139 struct bootmenu_entry *iter = menu->first; in bootmenu_destroy() 209 menu->first = entry; in prepare_bootmenu_entry() 299 menu->first = entry; in prepare_uefi_bootorder_entry() 336 menu->first = NULL; in bootmenu_create() 396 menu->first = entry; in bootmenu_create() 516 for (iter = bootmenu->first; iter; iter = iter->next) { in bootmenu_show()
|
| /u-boot/arch/arm/include/asm/ |
| A D | opcodes.h | 146 #define __opcode_thumb32_compose(first, second) ( \ argument 147 (___opcode_identity32(___opcode_identity16(first)) << 16) \ 152 #define ___asm_opcode_thumb32_compose(first, second) ( \ argument 153 (___asm_opcode_identity32(___asm_opcode_identity16(first)) << 16) \ 220 #define ___inst_thumb32(first, second) .short first, second argument 224 #define ___inst_thumb32(first, second) \ argument 225 ".short " __stringify(first) ", " __stringify(second) "\n\t"
|
| /u-boot/include/linux/ |
| A D | list.h | 253 struct list_head *first = list->next; in __list_splice() local 256 first->prev = prev; in __list_splice() 257 prev->next = first; in __list_splice() 558 struct hlist_node *first; member 581 return !h->first; in hlist_empty() 610 struct hlist_node *first = h->first; in hlist_add_head() local 611 n->next = first; in hlist_add_head() 612 if (first) in hlist_add_head() 613 first->pprev = &n->next; in hlist_add_head() 614 h->first = n; in hlist_add_head() [all …]
|
| /u-boot/arch/powerpc/cpu/mpc8xxx/ |
| A D | srio.c | 79 int idx, first, last; in srio_erratum_a004034() local 137 first = serdes_get_first_lane(SRIO2); in srio_erratum_a004034() 139 first = serdes_get_first_lane(SRIO1); in srio_erratum_a004034() 140 if (unlikely(first < 0)) in srio_erratum_a004034() 143 last = first; in srio_erratum_a004034() 145 last = first + 3; in srio_erratum_a004034() 150 for (idx = first; idx <= last; idx++) in srio_erratum_a004034() 157 for (idx = first; idx <= last; idx++) in srio_erratum_a004034() 167 for (idx = first; idx <= last; idx++) in srio_erratum_a004034() 174 for (idx = first; idx <= last; idx++) in srio_erratum_a004034()
|
| /u-boot/board/emulation/common/ |
| A D | qemu_dfu.c | 17 bool first = true; in board_get_alt_info() local 31 if (!first) in board_get_alt_info() 33 first = false; in board_get_alt_info()
|
| /u-boot/board/st/common/ |
| A D | stm32mp_dfu.c | 24 bool first = true; in board_get_alt_info_mmc() local 57 first = false; in board_get_alt_info_mmc() 63 if (!first) in board_get_alt_info_mmc() 65 first = false; in board_get_alt_info_mmc() 75 bool first = true; in board_get_alt_info_mtd() local 93 if (!first) in board_get_alt_info_mtd() 95 first = false; in board_get_alt_info_mtd()
|
| /u-boot/test/dm/ |
| A D | blkmap.c | 142 struct udevice *first, *second; in dm_test_blkmap_creation() local 144 ut_assertok(blkmap_create("first", &first)); in dm_test_blkmap_creation() 155 ut_assertok(blkmap_destroy(first)); in dm_test_blkmap_creation() 156 ut_assertok(blkmap_create("first", &first)); in dm_test_blkmap_creation() 158 ut_assertok(blkmap_destroy(first)); in dm_test_blkmap_creation()
|
| /u-boot/lib/efi_loader/ |
| A D | efi_unicode_collation.c | 104 s32 first, s, p; in metai_match() local 128 first = p; in metai_match() 129 if (first == ']') in metai_match() 136 if (s < first || s > p) in metai_match() 145 if (s == first) in metai_match()
|
| /u-boot/fs/jffs2/ |
| A D | mini_inflate.c | 42 stream->codes.first = stream->code_first; in init_stream() 50 stream->lengths.first = stream->length_first; in init_stream() 58 stream->distance.first = stream->distance_first; in init_stream() 125 while (!(set->count[bits] && code < set->first[bits] + in read_symbol() 134 return set->symbols[set->pos[bits] + code - set->first[bits]]; in read_symbol() 190 set->first[i] = code; in fill_code_tables() 208 cramfs_memset(set->first, 0, set->bits); in init_code_tables() 325 cramfs_memset(lengths->first, 0, 16); in decompress_fixed() 335 cramfs_memset(distance->first, 0, 16); in decompress_fixed()
|
| /u-boot/cmd/x86/ |
| A D | mtrr.c | 136 bool first; in do_mtrr() local 144 first = true; in do_mtrr() 146 if (!first) in do_mtrr() 156 first = false; in do_mtrr()
|
| /u-boot/doc/device-tree-bindings/misc/ |
| A D | intel,irq-router.txt | 23 first cell is the register offset that controls the first PIRQ link routing. 26 encoded as 2 cells a group for each link. The first cell is the PIRQ link 29 is omitted, it indicates a consecutive register offset from the first PIRQ 30 link, as specified by the first cell of intel,pirq-link. 34 encoded as 3 cells a group for a device. The first cell is the device's PCI
|
| /u-boot/drivers/pinctrl/meson/ |
| A D | pinctrl-meson-axg.h | 14 unsigned int first; member 28 .first = f, \
|
| /u-boot/drivers/demo/ |
| A D | demo-shape.c | 48 int first = 0; in shape_hello() local 61 first = 1; in shape_hello() 65 putc(first ? *colour++ : ch); in shape_hello() 67 first = 0; in shape_hello()
|
| /u-boot/doc/board/amlogic/ |
| A D | boot-flow.rst | 37 - Erasing the first sectors of SPI NOR flash 43 USB boot uses the first USB interface. On some boards this port is only available on a 72 * POC0 pin: `BOOT_4` (0 and all other 1 means SPI NAND boot first) 73 * POC1 pin: `BOOT_5` (0 and all other 1 means USB Device boot first 74 * POC2 pin: `BOOT_6` (0 and all other 1 means SPI NOR boot first) 92 The BootROM fetches the first SD card sectors in one sequence then checks the content of 97 The BootROM fetches the first sectors of the main partition in one sequence then checks 107 The BootROM fetches the first SPI NOR sectors in one sequence then checks the content of 135 If the SoC is booted with USB Device forced at first step, it will retain the forced boot
|
| /u-boot/doc/device-tree-bindings/gpio/ |
| A D | snps,creg-gpio.txt | 18 - gpio-first-shift: Shift (in bits) of the first GPIO field in register 38 gpio-first-shift = <5>;
|
| /u-boot/arch/powerpc/cpu/mpc85xx/ |
| A D | fsl_corenet_serdes.c | 203 int first) in __serdes_get_lane_count() argument 207 for (lane = first; lane < SRDS_MAX_LANES; lane++) { in __serdes_get_lane_count() 212 return lane - first; in __serdes_get_lane_count() 219 int lane, idx, first, last; in __serdes_reset_rx() local 224 first = serdes_get_lane_idx(lane); in __serdes_reset_rx() 225 last = first + __serdes_get_lane_count(prtcl, device, lane); in __serdes_reset_rx() 231 for (idx = first; idx < last; idx++) in __serdes_reset_rx() 241 for (idx = first; idx < last; idx++) in __serdes_reset_rx()
|
| /u-boot/tools/ |
| A D | rkmux.py | 56 self.first = True 64 if not self.first: 96 if self.first: 97 self.first = False
|
| /u-boot/drivers/video/ |
| A D | efi.c | 34 u8 first, len; in efi_find_pixel_bits() local 36 first = 0; in efi_find_pixel_bits() 42 first++; in efi_find_pixel_bits() 51 *pos = first; in efi_find_pixel_bits()
|
| /u-boot/doc/usage/cmd/ |
| A D | exit.rst | 32 => echo first; exit; echo last 33 first
|
| /u-boot/scripts/dtc/ |
| A D | livetree.c | 79 assert(first->next == NULL); in chain_property() 81 first->next = list; in chain_property() 82 return first; in chain_property() 85 struct property *reverse_properties(struct property *first) in reverse_properties() argument 87 struct property *p = first; in reverse_properties() 264 assert(first->next_sibling == NULL); in chain_node() 266 first->next_sibling = list; in chain_node() 267 return first; in chain_node() 374 assert(first->next == NULL); in chain_reserve_entry() 376 first->next = list; in chain_reserve_entry() [all …]
|
| /u-boot/tools/binman/test/ |
| A D | embed_data.c | 9 int first[10] = {1}; variable
|