Searched refs:text (Results 26 - 50 of 861) sorted by relevance

1234567891011>>

/linux-master/tools/testing/kunit/
H A Dkunit_printer.py29 def _color(self, code: str, text: str) -> str:
31 return text
32 return code + text + _RESET
34 def red(self, text: str) -> str:
35 return self._color('\033[1;31m', text)
37 def yellow(self, text: str) -> str:
38 return self._color('\033[1;33m', text)
40 def green(self, text: str) -> str:
41 return self._color('\033[1;32m', text)
/linux-master/lib/kunit/
H A Dassert.c80 ptr_assert->text);
84 ptr_assert->text,
91 /* Checks if `text` is a literal representing `value`, e.g. "5" and 5 */
92 static bool is_literal(const char *text, long long value) argument
99 if (strlen(text) != len)
107 ret = strncmp(buffer, text, len) == 0;
125 binary_assert->text->left_text,
126 binary_assert->text->operation,
127 binary_assert->text->right_text);
128 if (!is_literal(binary_assert->text
169 is_str_literal(const char *text, const char *value) argument
[all...]
/linux-master/arch/arm/mach-s5pv210/
H A Dsleep.S13 .text
/linux-master/arch/xtensa/boot/boot-elf/
H A Dboot.lds.S18 .ResetVector.text XCHAL_RESET_VECTOR_VADDR :
20 *(.ResetVector.text)
/linux-master/arch/arm64/kernel/vdso32/
H A Dvdso.lds.S27 .hash : { *(.hash) } :text
35 .note : { *(.note.*) } :text :note
37 .dynamic : { *(.dynamic) } :text :dynamic
47 } :text
49 .text : {
50 *(.text*)
55 } :text =0xe7f001f2
77 text PT_LOAD FLAGS(5) FILEHDR PHDRS; /* PF_R|PF_X */
/linux-master/arch/s390/kernel/
H A Dkprobes_insn_page.S11 * the text section of the kernel and mapped read-only/executable from
15 .section .kprobes.text, "ax"
/linux-master/arch/arm64/kernel/probes/
H A Dkprobes_trampoline.S10 .text
/linux-master/arch/x86/realmode/rm/
H A Drealmode.lds.S38 .text : {
39 *(.text)
40 *(.text.*)
/linux-master/arch/powerpc/boot/
H A Dmotload-head.S4 .text
/linux-master/arch/arm64/kernel/vdso/
H A Dsigreturn.S19 .text
H A Dvdso.lds.S27 .hash : { *(.hash) } :text
42 .note : { *(.note.*) } :text :note
46 .text : { *(.text*) } :text =0xd503201f
56 .dynamic : { *(.dynamic) } :text :dynamic
68 } :text
89 text PT_LOAD FLAGS(5) FILEHDR PHDRS; /* PF_R|PF_X */
/linux-master/arch/arm64/kvm/hyp/nvhe/
H A Dhyp.lds.S15 HYP_SECTION(.idmap.text)
16 HYP_SECTION(.text)
/linux-master/arch/arm/lib/
H A Dtestclearbit.S10 .text
H A Dtestchangebit.S10 .text
H A Dtestsetbit.S10 .text
/linux-master/tools/perf/bench/
H A Dmem-memset-x86-64-asm.S6 #define altinstr_replacement text
/linux-master/arch/powerpc/kernel/vdso/
H A Dvdso32.lds.S22 .hash : { *(.hash) } :text
30 .note : { *(.note.*) } :text :note
33 .text : {
34 *(.text .stub .text.* .gnu.linkonce.t.* __ftr_alt_*)
35 } :text
63 * Other stuff is appended to the text segment:
68 .eh_frame_hdr : { *(.eh_frame_hdr) } :text :eh_frame_hdr
69 .eh_frame : { KEEP (*(.eh_frame)) } :text
73 .dynamic : { *(.dynamic) } :text
[all...]
/linux-master/arch/sparc/lib/
H A DU3copy_from_user.S12 .text; \
20 .text; \
/linux-master/arch/csky/kernel/vdso/
H A Drt_sigreturn.S7 .text
/linux-master/arch/s390/include/asm/
H A Dpci_debug.h13 #define zpci_err(text...) \
16 snprintf(debug_buffer, 16, text); \
/linux-master/arch/riscv/kernel/vdso/
H A Drt_sigreturn.S9 .text
H A Dgetcpu.S9 .text
H A Dsys_hwprobe.S7 .text
/linux-master/drivers/s390/cio/
H A Dqdio_debug.h14 /* that gives us 15 characters in the text event views */
28 #define DBF_EVENT(text...) \
31 snprintf(debug_buffer, QDIO_DBF_LEN, text); \
40 #define DBF_ERROR(text...) \
43 snprintf(debug_buffer, QDIO_DBF_LEN, text); \
52 #define DBF_DEV_EVENT(level, device, text...) \
56 snprintf(debug_buffer, QDIO_DBF_LEN, text); \
/linux-master/arch/powerpc/kernel/
H A Dvmlinux.lds.S43 text PT_LOAD FLAGS(7); /* RWX */
66 * Head text.
72 .head.text : AT(ADDR(.head.text) - LOAD_OFFSET) {
74 KEEP(*(.head.text.first_256B));
77 KEEP(*(.head.text.real_vectors));
78 *(.head.text.real_trampolines);
79 KEEP(*(.head.text.virt_vectors));
80 *(.head.text.virt_trampolines);
88 } :text
[all...]

Completed in 254 milliseconds

1234567891011>>