/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...] |
many-sections-2.s | 6 .section saaaa 7 .section saaab 8 .section saaba 9 .section saabb 10 .section saaca 11 .section saacb 12 .section saada 13 .section saadb 14 .section saaea 15 .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
|
/bionic/libc/arch-mips/bionic/ |
crtend_so.S | 1 .section .init_array, "aw" 4 .section .fini_array, "aw"
|
crtend.S | 29 .section .preinit_array, "aw" 32 .section .init_array, "aw" 35 .section .fini_array, "aw"
|
/development/ndk/platforms/android-3/arch-arm/src/ |
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"
|
__dso_handle_so.h | 35 __attribute__ ((section (".data")))
|
/development/ndk/platforms/android-9/arch-mips/src/ |
crtend_so.S | 1 .section .init_array, "aw" 4 .section .fini_array, "aw"
|
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
|
/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. 18 void __attribute__((section("foo,zed"))) test2(void); // expected-note {{previous attribute is here}} 19 void __attribute__((section("bar,zed"))) test2(void) {} // expected-warning {{section does not match previous declaration} [all...] |
/bionic/libc/arch-arm/bionic/ |
crtend.S | 29 .section .preinit_array, "aw" 32 .section .init_array, "aw" 35 .section .fini_array, "aw" 39 .section .note.GNU-stack,"",%progbits
|
crtend_so.S | 30 .section .note.GNU-stack,"",%progbits
|
/external/llvm/test/MC/MachO/ |
section-attributes.s | 4 // CHECK: # Section 1 6 .section __TEXT,__objc_opt_ro
|
/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-x86/src/ |
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
|
/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...] |
/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
|