Searched refs:text (Results 1 - 25 of 182) sorted by relevance

12345678

/u-boot/arch/x86/cpu/tangier/
H A Dcar.S8 .section .text
/u-boot/arch/x86/cpu/coreboot/
H A Dcar.S8 .section .text
/u-boot/cmd/
H A Dpanic.c12 char *text = (argc < 2) ? "" : argv[1]; local
14 panic(text);
/u-boot/tools/u_boot_pylib/
H A Dterminal.py30 """A line of text output
33 text: Text line that was printed
34 newline: True to output a newline after the text
37 def __init__(self, text, colour, newline=True, bright=True):
38 self.text = text
44 return (self.text == other.text and
50 return ("newline=%s, colour=%s, bright=%d, text='%s'" %
51 (self.newline, self.colour, self.bright, self.text))
[all...]
/u-boot/arch/x86/cpu/slimbootloader/
H A Dcar.S8 .section .text
/u-boot/arch/arm/cpu/arm1136/mx31/
H A Drelocate.S16 .section .text.relocate_vectors,"ax",%progbits
/u-boot/test/dm/
H A Dsoc.c23 char text[128]; local
93 ut_assertok(soc_get_machine(dev, text, sizeof(text)));
94 ut_assertok(strcmp(text, "SANDBOX123"));
96 ut_assertok(soc_get_family(dev, text, sizeof(text)));
97 ut_assertok(strcmp(text, "SANDBOX1xx"));
99 ut_assertok(soc_get_revision(dev, text, sizeof(text)));
100 ut_asserteq_str(text, "1.
[all...]
H A Dcpu.c19 char text[128]; local
34 ut_assertok(cpu_get_desc(dev, text, sizeof(text)));
35 ut_assertok(strcmp(text, "LEG Inc. SuperMegaUltraTurbo CPU No. 1"));
44 ut_assertok(cpu_get_vendor(dev, text, sizeof(text)));
45 ut_assertok(strcmp(text, "Languid Example Garbage Inc."));
H A Dosd.c20 static void split(u8 *mem, uint size, u8 *text, u8 *colors) argument
27 text[i] = p[i] / 0x100;
35 u8 text[memsize / 2]; local
38 split(mem, memsize / 2, text, colors);
41 printf("%c", text[i]);
60 u8 text[memsize / 2]; local
73 split(mem, memsize / 2, text, colors);
75 ut_asserteq_mem(text,
104 split(mem, memsize / 2, text, colors);
106 ut_asserteq_mem(text,
142 u8 text[memsize / 2]; local
[all...]
/u-boot/fs/yaffs2/
H A Dyaffs_error.c18 const char *text; member in struct:error_entry
52 while (e->code && e->text) {
54 return e->text;
/u-boot/arch/arm/cpu/armv8/fsl-layerscape/
H A Dls1043a_psci.S12 .pushsection ._secure.text, "ax"
/u-boot/arch/arm/cpu/armv8/
H A Dtransition.S12 .pushsection .text.armv8_switch_to_el2, "ax"
35 .pushsection .text.armv8_switch_to_el1, "ax"
47 .pushsection .text.armv8_el2_to_aarch32, "ax"
H A Dcache.S26 .pushsection .text.__asm_dcache_level, "ax"
76 .pushsection .text.__asm_dcache_all, "ax"
115 .pushsection .text.__asm_flush_dcache_all, "ax"
122 .pushsection .text.__asm_invalidate_dcache_all, "ax"
129 .pushsection .text.__asm_flush_l3_dcache, "ax"
136 .pushsection .text.__asm_invalidate_l3_icache, "ax"
150 .pushsection .text.__asm_invalidate_l3_icache, "ax"
156 .pushsection .text.__asm_flush_l3_dcache, "ax"
172 .pushsection .text.__asm_flush_dcache_range, "ax"
198 .pushsection .text
[all...]
/u-boot/arch/riscv/lib/
H A Dsemihosting.S9 .pushsection .text.smh_trap, "ax"
/u-boot/arch/arm/lib/
H A Dbitops.S10 .pushsection .text.__fls
18 .pushsection .text.__ffs
28 .pushsection .text.fls
37 .pushsection .text.ffs
H A Dsetjmp.S10 .pushsection .text.setjmp, "ax"
24 .pushsection .text.longjmp, "ax"
H A Dsemihosting.S10 .pushsection .text.smh_trap, "ax"
/u-boot/board/freescale/ls1021aiot/
H A Dpsci.S13 .pushsection ._secure.text, "ax"
/u-boot/board/freescale/ls1021atwr/
H A Dpsci.S13 .pushsection ._secure.text, "ax"
/u-boot/arch/arm/cpu/armv7/
H A Dlowlevel_init.S18 .pushsection .text.s_init, "ax"
24 .pushsection .text.lowlevel_init, "ax"
/u-boot/test/py/tests/
H A Dtest_efi_selftest.py69 This function calls the text input EFI selftest.
71 u_boot_console.run_command(cmd='setenv efi_selftest text input')
74 raise Exception('No prompt for \'text input\' test')
80 raise Exception('EOT failed in \'text input\' test')
86 raise Exception('BS failed in \'text input\' test')
92 raise Exception('BS failed in \'text input\' test')
98 raise Exception('\'a\' failed in \'text input\' test')
104 raise Exception('UP failed in \'text input\' test')
110 raise Exception('Euro sign failed in \'text input\' test')
124 This function calls the extended text inpu
[all...]
/u-boot/scripts/kconfig/
H A Dzconf.l26 static char *text;
45 text = xmalloc(START_STRSIZE);
48 *text = 0;
57 text = xrealloc(text, new_size);
60 memcpy(text + text_size, str, size);
62 text[text_size] = 0;
67 text = xmalloc(size + 1);
68 memcpy(text, str, size);
69 text[siz
[all...]
H A Dnconf.h83 int get_line_no(const char *text);
84 const char *get_line(const char *text, int line_no);
85 void fill_window(WINDOW *win, const char *text);
93 const char *text);
/u-boot/arch/x86/cpu/
H A Dstart64.S11 .section .text.start
/u-boot/examples/api/
H A Dcrt0.S10 .text
29 .text
44 .text

Completed in 120 milliseconds

12345678