Home
last modified time | relevance | path

Searched refs:text (Results 1 – 25 of 1070) sorted by relevance

12345678910>>...43

/linux/scripts/gdb/linux/
H A Dtimerlist.py38 text = " #{}: <{}>, {}, ".format(idx, timer, function)
39 text += "S:{:02x}\n".format(int(timer['state']))
40 text += " # expires at {}-{} nsecs [in {} to {} nsecs]\n".format(
42 return text
55 text = " .base: {}\n".format(base.address)
56 text += " .index: {}\n".format(base['index'])
58 text += " .resolution: {} nsecs\n".format(constants.LX_hrtimer_resolution)
60 text += " .get_time: {}\n".format(base['get_time'])
62 text += " .offset: {} nsecs\n".format(base['offset'])
63 text
[all...]
H A Dinterrupts.py24 text = ""
28 return text
32 return text
35 return text
43 return text;
45 text += "%*d: " % (prec, irq)
51 text += "%10u" % (count)
61 text += " %8s" % (name)
64 text += " %*lu" % (prec, desc['irq_data']['hwirq'])
66 text
[all...]
/linux/arch/xtensa/kernel/
H A Dvmlinux.lds.S83 /* .text section */
88 .text :
98 SECTION_VECTOR2 (.WindowVectors.text, WINDOW_VECTORS_VADDR) argument
101 SECTION_VECTOR2 (.Level2InterruptVector.text, INTLEVEL2_VECTOR_VADDR)
104 SECTION_VECTOR2 (.Level3InterruptVector.text, INTLEVEL3_VECTOR_VADDR)
107 SECTION_VECTOR2 (.Level4InterruptVector.text, INTLEVEL4_VECTOR_VADDR)
110 SECTION_VECTOR2 (.Level5InterruptVector.text, INTLEVEL5_VECTOR_VADDR)
113 SECTION_VECTOR2 (.Level6InterruptVector.text, INTLEVEL6_VECTOR_VADDR)
115 SECTION_VECTOR2 (.DebugInterruptVector.text, DEBUG_VECTOR_VADDR)
116 SECTION_VECTOR2 (.KernelExceptionVector.text, KERNEL_VECTOR_VADD
[all...]
/linux/lib/kunit/
H A Dassert.c82 ptr_assert->text); in kunit_ptr_not_err_assert_format()
86 ptr_assert->text, in kunit_ptr_not_err_assert_format()
93 /* Checks if `text` is a literal representing `value`, e.g. "5" and 5 */
94 VISIBLE_IF_KUNIT bool is_literal(const char *text, long long value) in is_literal() argument
101 if (strlen(text) != len) in is_literal()
109 ret = strncmp(buffer, text, len) == 0; in is_literal()
127 binary_assert->text->left_text, in kunit_binary_assert_format()
128 binary_assert->text->operation, in kunit_binary_assert_format()
129 binary_assert->text->right_text); in kunit_binary_assert_format()
130 if (!is_literal(binary_assert->text in kunit_binary_assert_format()
171 is_str_literal(const char * text,const char * value) is_str_literal() argument
[all...]
/linux/drivers/s390/net/
H A Dctcm_dbug.h69 void ctcm_dbf_longtext(enum ctcm_dbf_names dbf_nix, int level, char *text, ...);
79 #define CTCM_DBF_TEXT(name, level, text) \ argument
81 debug_text_event(ctcm_dbf[CTCM_DBF_##name].id, level, text); \
90 #define CTCM_DBF_TEXT_(name, level, text...) \ argument
91 ctcm_dbf_longtext(CTCM_DBF_##name, level, text)
96 * text: any text string.
98 #define CTCM_DBF_DEV_NAME(cat, dev, text) \ argument
101 CTCM_FUNTAIL, dev->name, text); \
104 #define MPC_DBF_DEV_NAME(cat, dev, text) \ argument
110 CTCMY_DBF_DEV_NAME(cat,dev,text) global() argument
123 CTCM_DBF_DEV(cat,dev,text) global() argument
129 MPC_DBF_DEV(cat,dev,text) global() argument
135 CTCMY_DBF_DEV(cat,dev,text) global() argument
[all...]
/linux/tools/testing/selftests/proc/
H A Dproc-maps-race.c49 char text[LINE_MAX_SIZE]; member
159 copy_last_line(&self->page1, last_line->text); in read_boundary_lines()
160 copy_first_line(&self->page2, first_line->text); in read_boundary_lines()
162 return sscanf(last_line->text, "%lx-%lx", &last_line->start_addr, in read_boundary_lines()
164 sscanf(first_line->text, "%lx-%lx", &first_line->start_addr, in read_boundary_lines()
192 static void print_first_lines(char *text, int nr) in print_first_lines() argument
194 const char *end = text; in print_first_lines()
202 int offs = end - text; in print_first_lines()
204 text[offs] = '\0'; in print_first_lines()
205 printf("%s", text); in print_first_lines()
213 print_last_lines(char * text,int nr) print_last_lines() argument
[all...]
/linux/arch/x86/entry/vdso/
H A Dvdso-layout.lds.S29 .hash : { *(.hash) } :text
37 .dynamic : { *(.dynamic) } :text :dynamic
48 } :text
57 .note : { *(.note.*) } :text :note
59 .eh_frame_hdr : { *(.eh_frame_hdr) } :text :eh_frame_hdr
60 .eh_frame : { KEEP (*(.eh_frame)) } :text
68 .text : {
69 *(.text*)
70 } :text =0x90909090,
74 .altinstructions : { *(.altinstructions) } :text
[all...]
/linux/arch/powerpc/kernel/
H A Dvmlinux.lds.S37 text PT_LOAD FLAGS(7); /* RWX */
60 * Head text.
66 .head.text : AT(ADDR(.head.text) - LOAD_OFFSET) {
68 KEEP(*(.head.text.first_256B));
71 KEEP(*(.head.text.real_vectors));
72 *(.head.text.real_trampolines);
73 KEEP(*(.head.text.virt_vectors));
74 *(.head.text.virt_trampolines);
82 } :text
263 _sinittext.init.text global() argument
267 _einittext.init.text global() argument
274 __exittext_begin.exit.text global() argument
276 __exittext_end.exit.text global() argument
[all...]
/linux/tools/perf/Documentation/
H A Dbuild-docdep.perl6 for my $text (<*.txt>) {
7 open I, '<', $text || die "cannot read: $text";
13 $include{$text}{$_} = 1;
24 while (my ($text, $included) = each %include) {
26 # $text has include::$i; if $i includes $j
27 # $text indirectly includes $j.
30 if (!exists $include{$text}{$j}) {
31 $include{$text}{$j} = 1;
41 while (my ($text,
[all...]
/linux/arch/powerpc/platforms/44x/
H A Dppc476_modules.lds3 .text : ALIGN(4096)
5 *(.text .text.* .fixup)
7 .init.text : ALIGN(4096)
9 *(.init.text .init.text.*)
11 .exit.text : ALIGN(4096)
13 *(.exit.text .exit.text.*)
/linux/arch/mips/vdso/
H A Dvdso.lds.S34 .mips_abiflags : { *(.mips_abiflags) } :text :abiflags
36 .reginfo : { *(.reginfo) } :text :reginfo
38 .hash : { *(.hash) } :text
46 .note : { *(.note.*) } :text :note
48 .text : { *(.text*) } :text
53 .eh_frame_hdr : { *(.eh_frame_hdr) } :text :eh_frame_hdr
54 .eh_frame : { KEEP (*(.eh_frame)) } :text
56 .dynamic : { *(.dynamic) } :text
[all...]
/linux/arch/sparc/vdso/
H A Dvdso-layout.lds.S31 .hash : { *(.hash) } :text
39 .dynamic : { *(.dynamic) } :text :dynamic
58 } :text
60 .fake_shstrtab : { *(.fake_shstrtab) } :text
63 .note : { *(.note.*) } :text :note
65 .eh_frame_hdr : { *(.eh_frame_hdr) } :text :eh_frame_hdr
66 .eh_frame : { KEEP (*(.eh_frame)) } :text
74 .text : { *(.text*) } :text
[all...]
/linux/tools/testing/selftests/bpf/prog_tests/
H A Dctx_rewrite.c395 char *text = text_origin; in print_match_error() local
396 int middle = max_line_len(text) + 2; in print_match_error()
399 while (*pattern || *text) { in print_match_error()
404 /* Print one line from text */ in print_match_error()
405 while (*text && *text != '\n') { in print_match_error()
406 if (text == text_pos) in print_match_error()
408 fputc(*text, out); in print_match_error()
409 ++text; in print_match_error()
412 if (text in print_match_error()
490 match_pattern(struct btf * btf,char * pattern,char * text,char * reg_map[][2]) match_pattern() argument
650 char *text = NULL; match_program() local
[all...]
/linux/arch/x86/um/vdso/
H A Dvdso-layout.lds.S12 .hash : { *(.hash) } :text
20 .note : { *(.note.*) } :text :note
22 .eh_frame_hdr : { *(.eh_frame_hdr) } :text :eh_frame_hdr
23 .eh_frame : { KEEP (*(.eh_frame)) } :text
25 .dynamic : { *(.dynamic) } :text :dynamic
27 .rodata : { *(.rodata*) } :text
47 .text : { *(.text*) } :text =0x90909090
61 text PT_LOA
[all...]
/linux/arch/arm/vdso/
H A Dvdso.lds.S27 .hash : { *(.hash) } :text
35 .note : { *(.note.*) } :text :note
38 .eh_frame_hdr : { *(.eh_frame_hdr) } :text :eh_frame_hdr
39 .eh_frame : { KEEP (*(.eh_frame)) } :text
41 .dynamic : { *(.dynamic) } :text :dynamic
43 .rodata : { *(.rodata*) } :text
45 .text : { *(.text*) } :text =0xe7f001f2
63 text PT_LOA
[all...]
/linux/arch/csky/kernel/vdso/
H A Dvdso.lds.S12 .hash : { *(.hash) } :text
20 .note : { *(.note.*) } :text :note
21 .dynamic : { *(.dynamic) } :text :dynamic
23 .eh_frame_hdr : { *(.eh_frame_hdr) } :text :eh_frame_hdr
24 .eh_frame : { KEEP (*(.eh_frame)) } :text
29 .text : { *(.text .text.*) } :text
41 text PT_LOA
[all...]
/linux/arch/sh/kernel/vsyscall/
H A Dvsyscall.lds.S23 .hash : { *(.hash) } :text
39 .text : { *(.text) } :text =0x90909090
40 .note : { *(.note.*) } :text :note
41 .eh_frame_hdr : { *(.eh_frame_hdr ) } :text :eh_frame_hdr
45 } :text
46 .dynamic : { *(.dynamic) } :text :dynamic
52 } :text
66 text PT_LOA
[all...]
/linux/arch/loongarch/vdso/
H A Dvdso.lds.S20 .hash : { *(.hash) } :text
28 .note : { *(.note.*) } :text :note
30 .text : { *(.text*) } :text
35 .eh_frame_hdr : { *(.eh_frame_hdr) } :text :eh_frame_hdr
36 .eh_frame : { KEEP (*(.eh_frame)) } :text
38 .dynamic : { *(.dynamic) } :text :dynamic
40 .rodata : { *(.rodata*) } :text
55 text PT_LOA
[all...]
/linux/tools/testing/kunit/
H A Dkunit_printer.py34 def _color(self, code: str, text: str) -> str:
36 return text
37 return code + text + _RESET
39 def red(self, text: str) -> str:
40 return self._color('\033[1;31m', text)
42 def yellow(self, text: str) -> str:
43 return self._color('\033[1;33m', text)
45 def green(self, text: str) -> str:
46 return self._color('\033[1;32m', text)
/linux/arch/powerpc/kernel/vdso/
H A Dvdso32.lds.S24 .hash : { *(.hash) } :text
32 .note : { *(.note.*) } :text :note
35 .text : {
36 *(.text .stub .text.* .gnu.linkonce.t.* __ftr_alt_*)
37 } :text
65 * Other stuff is appended to the text segment:
70 .eh_frame_hdr : { *(.eh_frame_hdr) } :text :eh_frame_hdr
71 .eh_frame : { KEEP (*(.eh_frame)) } :text
75 .dynamic : { *(.dynamic) } :text
[all...]
H A Dvdso64.lds.S24 .hash : { *(.hash) } :text
32 .note : { *(.note.*) } :text :note
35 .text : {
36 *(.text .stub .text.* .gnu.linkonce.t.* __ftr_alt_*)
38 } :text
64 * Other stuff is appended to the text segment:
69 .dynamic : { *(.dynamic) } :text :dynamic
71 .eh_frame_hdr : { *(.eh_frame_hdr) } :text :eh_frame_hdr
72 .eh_frame : { KEEP (*(.eh_frame)) } :text
[all...]
/linux/Documentation/input/
H A Dinteractive.svg18 <text x="2775" y="7725" font-family="sans-serif" font-size="144px" stroke="#000000" stroke-width=".025in" text-anchor="middle" xml:space="preserve">Dead band</text>
19 <text x="5400" y="5700" font-family="sans-serif" font-size="144px" stroke="#000000" stroke-width=".025in" xml:space="preserve">right saturation</text>
20 <text x="5400" y="3600" font-family="sans-serif" font-size="144px" stroke="#000000" stroke-width=".025in" xml:space="preserve">left saturation</text>
21 <text x="5400" y="3900" font-family="sans-serif" font-size="144px" stroke="#000000" stroke-width=".025in" xml:space="preserve">left coeff ( positive in that case )</text>
22 <text
[all...]
/linux/arch/arm64/kernel/vdso32/
H A Dvdso.lds.S26 .hash : { *(.hash) } :text
34 .note : { *(.note.*) } :text :note
36 .dynamic : { *(.dynamic) } :text :dynamic
46 } :text
48 .text : {
49 *(.text*)
54 } :text =0xe7f001f2
76 text PT_LOAD FLAGS(5) FILEHDR PHDRS; /* PF_R|PF_X */
/linux/arch/parisc/kernel/
H A Dvmlinux.lds.S41 #define EXIT_TEXT_SECTIONS() .exit.text : { EXIT_TEXT }
85 .text ALIGN(PAGE_SIZE) : {
92 *(.text.do_softirq)
93 *(.text.sys_exit)
94 *(.text.do_sigaltstack)
95 *(.text.do_fork)
96 *(.text.div)
98 *(.text.*)
100 *(.lock.text) /* out-of-line lock text */
[all...]
/linux/arch/arm64/kernel/vdso/
H A Dvdso.lds.S27 .hash : { *(.hash) } :text
43 .note : { *(.note.*) } :text :note
47 .text : { *(.text*) } :text =0xd503201f
57 .dynamic : { *(.dynamic) } :text :dynamic
69 } :text
90 text PT_LOAD FLAGS(5) FILEHDR PHDRS; /* PF_R|PF_X */

12345678910>>...43