HomeSort by relevance Sort by last modified time
    Searched refs:section (Results 1 - 25 of 783) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/MC/ELF/
section-quoting.s 4 .section bar-"foo"
5 .section "foo"
6 .section "foo bar"
8 // CHECK: .section "bar-\"foo\""
9 // CHECK: .section foo
10 // CHECK: .section "foo bar"
many-section.s 8 .section saaaa
9 .section saaab
10 .section saaba
11 .section saabb
12 .section saaca
13 .section saacb
14 .section saada
15 .section saadb
16 .section saaea
17 .section saae
    [all...]
bad-section.s 5 // CHECK: .section "foo"-bar
9 .section "foo"-bar
section.s 5 .section .note.GNU-stack,"",@progbits
6 .section .note.GNU-stack2,"",%progbits
7 .section .note.GNU-,"",@progbits
8 .section -.note.GNU,"",@progbits
17 .section .init
18 .section .fini
19 .section .rodata
20 .section zed, ""
33 // CHECK-NEXT: # Section 11
45 // CHECK-NEXT: # Section 1
    [all...]
relax-crash.s 6 .section .debug_line,"",@progbits
9 .section foo
align.s 4 // previous section (.bss)
7 .section .rodata,"a",@progbits
10 // CHECK: # Section 3
22 // CHECK-NEXT: # Section 4
comdat.s 6 // CHECK: # Section 1
18 // CHECK-NEXT: # Section 2
30 // CHECK-NEXT: # Section 3
75 .section .foo,"axG",@progbits,g1,comdat
79 .section .bar,"axG",@progbits,g1,comdat
82 .section .zed,"axG",@progbits,g2,comdat
85 .section .baz,"axG",@progbits,g3,comdat
  /bionic/libc/arch-arm/bionic/
crtend_so.S 33 .section .init_array, "aw"
36 .section .fini_array, "aw"
crtend.S 29 .section .preinit_array, "aw"
32 .section .init_array, "aw"
35 .section .fini_array, "aw"
38 .section .ctors, "aw"
  /bionic/libdl/arch-sh/
soend.S 29 .section .ctors, "aw"
  /external/clang/test/Sema/
attr-section.c 3 int x __attribute__((section(
4 42))); // expected-error {{argument to section attribute was not a string literal}}
8 int y __attribute__((section(
9 "sadf"))); // expected-error {{mach-o section specifier requires a segment and section separated by a comma}}
13 __attribute__((section("NEAR,x"))) int n1; // expected-error {{'section' attribute is not valid on local variables}}
14 __attribute__((section("NEAR,x"))) static int n2; // ok.
  /external/llvm/test/MC/MachO/
section-attributes.s 4 // CHECK: # Section 1
6 .section __TEXT,__objc_opt_ro
pcrel-to-other-section.s 1 // RUN: llvm-mc -triple i386-apple-darwin9 %s -filetype=obj -o - | macho-dump --dump-section-data | FileCheck %s
4 .section __TEXT,__StaticInit,regular,pure_instructions
27 // CHECK-NEXT: # Section 0
43 // CHECK-NEXT: # Section 1
  /bionic/libc/arch-x86/bionic/
crtend.S 1 .section .preinit_array, "aw"
4 .section .init_array, "aw"
7 .section .fini_array, "aw"
10 .section .eh_frame,"a",@progbits
crtend_so.S 1 .section .init_array, "aw"
4 .section .fini_array, "aw"
7 .section .eh_frame,"a",@progbits
  /development/ndk/platforms/android-9/arch-mips/src/
crtend_android.S 29 .section .preinit_array, "aw"
32 .section .init_array, "aw"
35 .section .fini_array, "aw"
38 .section .ctors, "aw"
43 .section .dtors, "aw"
48 .section .eh_frame,"a",@progbits
crtend_so.S 1 .section .init_array, "aw"
4 .section .fini_array, "aw"
7 .section .ctors, "aw", @progbits
12 .section .dtors, "aw", @progbits
17 .section .eh_frame,"a",@progbits
  /external/elfutils/libebl/
eblsectionname.c 1 /* Return section name.
60 ebl_section_name (ebl, section, xsection, buf, len, scnnames, shnum)
62 int section;
69 const char *res = ebl != NULL ? ebl->section_name (section, xsection,
74 if (section == SHN_UNDEF)
76 else if (section == SHN_ABS)
78 else if (section == SHN_COMMON)
80 else if (section == SHN_BEFORE)
82 else if (section == SHN_AFTER)
84 else if ((section < SHN_LORESERVE || section == SHN_XINDEX
    [all...]
eblsectiontypename.c 1 /* Return section type name.
60 ebl_section_type_name (ebl, section, buf, len)
62 int section;
66 const char *res = ebl->section_type_name (section, buf, len);
93 if ((size_t) section < sizeof (knowntypes) / sizeof (knowntypes[0])
94 && knowntypes[section] != NULL)
95 res = knowntypes[section];
97 else if (section >= SHT_LOSUNW && section <= SHT_HISUNW)
110 res = sunwtypes[section - SHT_LOSUNW]
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSCDATASectionCustom.cpp 35 JSValue toJSNewlyCreated(ExecState* exec, JSDOMGlobalObject* globalObject, CDATASection* section)
37 if (!section)
40 return CREATE_DOM_NODE_WRAPPER(exec, globalObject, CDATASection, section);
  /external/clang/test/CodeGen/
2006-07-31-PR854.c 9 __attribute__((section("__ksymtab_strings"))) = "loops_per_jiffy";
11 __attribute__((__used__)) __attribute__((section("__ksymtab"))) = { (unsigned
  /external/compiler-rt/lib/asan/
asan_android_stub.cc 3 __attribute__((section(".preinit_array")))
  /external/clang/test/
make_test_dirs.pl 13 my $section = $1;
24 mkdir($section);
25 chdir($section);
  /external/openssl/crypto/conf/
conf_api.h 70 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section);
72 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section);
75 const char *section);
77 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value);
78 char *_CONF_get_string(const CONF *conf, const char *section,
80 long _CONF_get_number(const CONF *conf, const char *section, const char *name);
  /external/openssl/include/openssl/
conf_api.h 70 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section);
72 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section);
75 const char *section);
77 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value);
78 char *_CONF_get_string(const CONF *conf, const char *section,
80 long _CONF_get_number(const CONF *conf, const char *section, const char *name);

Completed in 844 milliseconds

1 2 3 4 5 6 7 8 91011>>