Searched refs:first (Results 1 - 25 of 71) sorted by relevance

123

/u-boot/cmd/
H A Dconitrace.c15 bool first = true; local
27 if (first && (c == 'x' || c == 'X'))
31 first = false;
37 first = true;
H A Dcpu.c32 bool first = true; local
52 printf("%s%s", first ? ": " : ", ",
54 first = false;
H A Dsound.c42 bool first = true; local
49 while (argc || first) {
50 first = false;
H A Dbootmenu.c117 iter = menu->first;
123 iter = menu->first;
139 struct bootmenu_entry *iter = menu->first;
209 menu->first = entry;
299 menu->first = entry;
336 menu->first = NULL;
396 menu->first = entry;
488 /* If delay is 0 do not create menu, just run first entry */
516 for (iter = bootmenu->first; iter; iter = iter->next) {
521 /* Default menu entry is always first */
[all...]
/u-boot/arch/powerpc/lib/
H A Dextable.c12 * The exception table consists of pairs of addresses: the first is the
33 search_one_table(const struct exception_table_entry *first, argument
38 while (first <= last) {
39 diff = first->insn - value;
41 return first->fixup;
42 first++;
/u-boot/tools/binman/test/
H A Dembed_data.c9 int first[10] = {1}; variable
/u-boot/arch/arm/include/asm/
H A Dopcodes.h146 #define __opcode_thumb32_compose(first, second) ( \
147 (___opcode_identity32(___opcode_identity16(first)) << 16) \
152 #define ___asm_opcode_thumb32_compose(first, second) ( \
153 (___asm_opcode_identity32(___asm_opcode_identity16(first)) << 16) \
220 #define ___inst_thumb32(first, second) .short first, second
224 #define ___inst_thumb32(first, second) \
225 ".short " __stringify(first) ", " __stringify(second) "\n\t"
/u-boot/drivers/pinctrl/meson/
H A Dpinctrl-meson-axg.h14 unsigned int first; member in struct:meson_pmx_bank
28 .first = f, \
H A Dpinctrl-meson.h88 * @first: first pin of the bank
95 * the @regs array refers to the first pin of the bank.
99 unsigned int first; member in struct:meson_bank
117 .first = f, \
/u-boot/board/emulation/common/
H A Dqemu_dfu.c17 bool first = true; local
31 if (!first)
33 first = false;
/u-boot/include/jffs2/
H A Dmini_inflate.h26 int *first; /* the first code of this bit length */ member in struct:huffman_set
27 int *pos; /* the symbol that first represents (in the symbols
/u-boot/cmd/x86/
H A Dmtrr.c84 bool first; local
92 first = true;
94 if (!first)
104 first = false;
/u-boot/lib/efi_loader/
H A Defi_unicode_collation.c36 * @s1: first string
74 * Return: first codepoint of string converted to lower case
103 s32 first, s, p; local
127 first = p;
128 if (first == ']')
135 if (s < first || s > p)
144 if (s == first)
/u-boot/test/dm/
H A Dblkmap.c142 struct udevice *first, *second; local
144 ut_assertok(blkmap_create("first", &first));
146 /* Can't have two "first"s */
147 ut_asserteq(-EBUSY, blkmap_create("first", &second));
152 /* Once "first" is destroyed, we should be able to create it
155 ut_assertok(blkmap_destroy(first));
156 ut_assertok(blkmap_create("first", &first));
158 ut_assertok(blkmap_destroy(first));
[all...]
/u-boot/arch/powerpc/cpu/mpc8xxx/
H A Dsrio.c79 int idx, first, last; local
137 first = serdes_get_first_lane(SRIO2);
139 first = serdes_get_first_lane(SRIO1);
140 if (unlikely(first < 0))
143 last = first;
145 last = first + 3;
150 for (idx = first; idx <= last; idx++)
157 for (idx = first; idx <= last; idx++)
167 for (idx = first; idx <= last; idx++)
174 for (idx = first; id
[all...]
/u-boot/include/linux/
H A Dlist.h253 struct list_head *first = list->next; local
256 first->prev = prev;
257 prev->next = first;
266 * @head: the place to add it in the first list.
278 * @head: the place to add it in the first list.
290 * @head: the place to add it in the first list.
306 * @head: the place to add it in the first list.
330 * list_first_entry - get the first element from a list
352 * list_first_entry_or_null - get the first element from a list
558 struct hlist_node *first; member in struct:hlist_head
610 struct hlist_node *first = h->first; local
[all...]
/u-boot/fs/jffs2/
H A Dmini_inflate.c32 stream->bit = 0; /* The first bit of the stream is the lsb of the
33 * first byte */
42 stream->codes.first = stream->code_first;
50 stream->lengths.first = stream->length_first;
58 stream->distance.first = stream->distance_first;
125 while (!(set->count[bits] && code < set->first[bits] +
134 return set->symbols[set->pos[bits] + code - set->first[bits]];
186 /* fill in the first code of each bit length, and the pos pointer */
190 set->first[i] = code;
208 cramfs_memset(set->first,
[all...]
/u-boot/arch/x86/lib/
H A Dcrt0_ia32_efi.S29 pushl %eax # pass ldbase as first argument
/u-boot/include/
H A Dmenu.h43 struct bootmenu_entry *first; /* first menu entry */ member in struct:bootmenu_data
70 * of the first menu option.
/u-boot/drivers/demo/
H A Ddemo-shape.c48 int first = 0; local
61 first = 1;
65 putc(first ? *colour++ : ch);
67 first = 0;
/u-boot/board/st/common/
H A Dstm32mp_dfu.c25 bool first = true; local
58 first = false;
64 if (!first)
66 first = false;
/u-boot/drivers/power/pmic/
H A Dda9063.c30 u16 first; member in struct:da9063_reg_hole
56 if (reg >= hole->first && reg <= hole->last)
/u-boot/arch/arm/mach-uniphier/
H A DMakefile23 obj-$(CONFIG_MMC) += mmc-first-dev.o
/u-boot/arch/powerpc/cpu/mpc85xx/
H A Dfsl_corenet_serdes.c203 int first)
207 for (lane = first; lane < SRDS_MAX_LANES; lane++) {
212 return lane - first;
219 int lane, idx, first, last; local
224 first = serdes_get_lane_idx(lane);
225 last = first + __serdes_get_lane_count(prtcl, device, lane);
231 for (idx = first; idx < last; idx++)
241 for (idx = first; idx < last; idx++)
613 /* Set the first bit to indicate serdes has been initialized */
669 /* Determine the first lan
202 __serdes_get_lane_count(uint32_t prtcl, enum srds_prtcl device, int first) argument
[all...]
/u-boot/tools/
H A Drkmux.py56 self.first = True
64 if not self.first:
96 if self.first:
97 self.first = False

Completed in 333 milliseconds

123