HomeSort by relevance Sort by last modified time
    Searched refs:section (Results 651 - 675 of 7765) sorted by null

<<21222324252627282930>>

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-cris/
pic-gc-72.d 15 Contents of section .hash:
17 Contents of section .dynsym:
19 Contents of section .dynstr:
21 Contents of section .text:
23 Contents of section .dynamic:
26 Contents of section .got:
28 Contents of section .data:
libdso-11.d 15 Contents of section \.rela\.plt:
17 Contents of section \.plt:
22 Contents of section \.text:
24 Contents of section \.dynamic:
26 Contents of section \.got:
tls-e-dtpoffd1.d 22 Contents of section .text:
24 Contents of section .tdata:
26 Contents of section .got:
29 Contents of section .debug_info:
31 Contents of section .debug_line:
tls-e-dtpoffd3.d 22 Contents of section .text:
24 Contents of section .tdata:
26 Contents of section .got:
29 Contents of section .debug_info:
31 Contents of section .debug_line:
  /development/ndk/platforms/android-9/arch-mips/src/
crtbegin.c 44 __attribute__ ((section (".preinit_array")))
47 __attribute__ ((section (".init_array")))
50 __attribute__ ((section (".fini_array")))
53 __attribute__ ((section (".ctors")))
56 __attribute__ ((section (".dtors")))
  /external/boringssl/src/util/fipstools/testdata/x86_64-BSS/
in.s 9 .section .bss,"awT",@nobits
22 .section .bss,"awT",@nobits
26 # Or a .section directive.
27 .section .rodata
31 .section .bss,"awT",@nobits
  /external/elfutils/tests/
newscn.c 34 Elf_Scn *section; local
58 section = elf_newscn (elf);
59 section = elf_nextscn (elf, section);
60 assert (section == NULL);
  /external/llvm/test/MC/X86/
x86-branch-relaxation.s 2 # RUN: llvm-objdump -r -D -section .text.bar -triple i386-unknown-unknown-code16 %t | FileCheck --check-prefix=CHECK16 %s
3 # RUN: llvm-objdump -r -D -section .text.baz -triple i386-unknown-unknown %t | FileCheck --check-prefix=CHECK32 %s
5 .section .text.foo,"",@progbits
12 .section .text.bar,"",@progbits
17 .section .text.baz,"",@progbits
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/
resource-func-unit-2.s 1 # Test parallel instructions on same functional unit, with section switching.
2 .section .text.f1,"ax",%progbits
8 .section .text.f2,"ax",%progbits
15 .section .text.f1,"ax",%progbits
18 .section .text.f2,"ax",%progbits
  /toolchain/binutils/binutils-2.25/gold/testsuite/
script_test_3.sh 60 # size of the .interp section.
61 section=`fgrep .interp script_test_3.stdout | grep PROGBITS`
62 if test "$section" = ""; then
63 echo "Did not find .interp section"
69 # Remove the brackets around the section number, since they can give
71 section=`echo "$section" | sed -e 's/[][]*//g'`
72 section_size=`echo "$section" | awk '{ print $6; }'`
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
unwind-3.s 3 @ section without unwind info
9 @ Section that will be placed first
10 .section .before, "xa"
18 @ section that will be placed last
19 .section .after, "xa"
28 .section .far
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-tic6x/
unwind-3.s 3 # section without unwind info
11 # Section that will be placed first
12 .section .before, "xa"
24 # section that will be placed last
25 .section .after, "xa"
38 .section .far
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-sh/
fdpic-funcdesc-static.d 9 Contents of section \.text:
11 Contents of section \.rofixup:
13 Contents of section \.data:
15 Contents of section \.got:
19 Disassembly of section \.text:
fdpic-goti20-static.d 9 Contents of section \.text:
11 Contents of section \.rofixup:
13 Contents of section \.data:
15 Contents of section \.got:
18 Disassembly of section \.text:
fdpic-gotoffi20-static.d 9 Contents of section \.text:
11 Contents of section \.rofixup:
13 Contents of section \.data:
15 Contents of section \.got:
18 Disassembly of section \.text:
  /external/llvm/test/MC/AsmParser/
section_names.s 3 .section .nobits
5 .section .nobits2
7 .section .nobitsfoo
9 .section .init_array
11 .section .init_array2
13 .section .init_arrayfoo
15 .section .fini_array
17 .section .fini_array2
19 .section .fini_arrayfoo
21 .section .preinit_arra
    [all...]
  /external/google-breakpad/src/common/
test_assembler_unittest.cc 42 using google_breakpad::test_assembler::Section;
723 Section s;
727 Section s(kBigEndian);
730 // A fixture class for TestAssembler::Section tests.
733 Section section; member in class:SectionFixture
766 section.Append(data, sizeof(data));
767 ASSERT_TRUE(section.GetContents(&contents));
773 section.Append(data, sizeof(data));
774 section.Append(data, sizeof(data))
    [all...]
  /system/bt/btif/src/
btif_config.cc 210 LOG_ERROR(LOG_TAG, "Config is missing adapter section");
241 bool btif_config_has_section(const char* section) {
243 CHECK(section != NULL);
246 return config_has_section(config, section);
249 bool btif_config_exist(const char* section, const char* key) {
251 CHECK(section != NULL);
255 return config_has_key(config, section, key);
258 bool btif_config_get_int(const char* section, const char* key, int* value) {
260 CHECK(section != NULL);
265 bool ret = config_has_key(config, section, key)
472 const char* section = config_section_name(snode); local
530 const char* section = config_section_name(snode); local
    [all...]
  /frameworks/compile/mclinker/lib/LD/
ELFObjectReader.cpp 92 /// readHeader - read section header and create LDSections.
111 LDContext::sect_iterator section, sectEnd = pInput.context()->sectEnd(); local
112 for (section = pInput.context()->sectBegin(); section != sectEnd; ++section) {
113 // ignore the section if the LDSection* in input context is NULL
114 if (*section == NULL)
117 switch ((*section)->kind()) {
120 assert((*section)->getLink() != NULL);
122 pInput, *(*section)->getLink(), (*section)->getInfo())
    [all...]
  /external/clang/test/CodeGen/
attributes.c 7 // CHECK: @t13 = global %struct.s0 zeroinitializer, section "SECT"
9 struct s0 t13 __attribute__((section("SECT"))) = { 0 };
11 // CHECK: @t14.x = internal global i32 0, section "SECT"
13 static int x __attribute__((section("SECT"))) = 0;
26 // CHECK: @t12 = global i32 0, section "SECT"
27 int t12 __attribute__((section("SECT")));
59 // CHECK: define void @t10() [[NUW]] section "SECT" {
60 void t10(void) __attribute__((section("SECT")));
62 // CHECK: define void @t11() [[NUW]] section "SECT" {
63 void __attribute__((section("SECT"))) t11(void) {
    [all...]
  /external/llvm/test/ExecutionEngine/RuntimeDyld/X86/
ELF_x64-64_PC8_relocations.s 2 # RUN: llvm-rtdyld -triple=x86_64-pc-linux -verify -map-section test_ELF_x86-64_PC8.o,.text.bar=0x10000 -map-section test_ELF_x86-64_PC8.o,.text.baz=0x10040 %T/test_ELF_x86-64_PC8.o
3 # RUN: llvm-rtdyld -triple=x86_64-pc-linux -verify -map-section test_ELF_x86-64_PC8.o,.text.baz=0x10000 -map-section test_ELF_x86-64_PC8.o,.text.bar=0x10040 %T/test_ELF_x86-64_PC8.o
7 .section .text.bar,"ax"
15 .section .text.baz,"ax"
26 .section ".note.GNU-stack","",@progbits
  /external/llvm/test/MC/ELF/
relax-arith3.s 7 // CHECK: Disassembly of section imul:
12 .section imul,"x"
18 // CHECK: Disassembly of section and:
23 .section and,"x"
28 // CHECK: Disassembly of section or:
33 .section or,"x"
38 // CHECK: Disassembly of section xor:
43 .section xor,"x"
48 // CHECK: Disassembly of section add:
53 .section add,"x
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sparc-solaris/
sol-cc.s 1 .section ".text" ! [internal]
19 .section ".data" ! [internal]
22 .section ".bss" ! [internal]
24 .section ".rodata" ! [internal]
33 .section ".data1", #write, #alloc ! [internal]
38 .section "text" ! [internal]
73 .section "text" ! [internal]
  /external/autotest/client/cros/faft/
rpc_functions.py 28 @param image_operator: Method accepting one section as its argument.
31 def wrapper(self, section):
34 @param section: A list of sections of just a section.
36 if type(section) in (tuple, list):
37 for sec in section:
40 image_operator(self, section)
363 def _bios_get_preamble_flags(self, section):
364 """Get the preamble flags of a firmware section.
366 @param section: A firmware section, either 'a' or 'b'
    [all...]
  /external/autotest/utils/
read_config_var.py 13 print ("Usage: ./read_var_config.py SECTION.variable.\n"
26 section, var = entry.split('.')
28 print "Invalid SECTION.varable supplied: " + entry
32 print global_config.global_config.get_config_value(section, var)
34 print "Error reading %s.%s" % (section, var)

Completed in 3793 milliseconds

<<21222324252627282930>>