Searched refs:section (Results 1 - 25 of 410) sorted by relevance

1234567891011>>

/external/llvm/test/MC/ELF/
H A Dsection-quoting.s4 .section bar-"foo"
5 .section "foo"
6 .section "foo bar"
8 // CHECK: .section "bar-\"foo\""
9 // CHECK: .section foo
10 // CHECK: .section "foo bar"
H A Dbad-section.s5 // CHECK: .section "foo"-bar
9 .section "foo"-bar
H A Dmany-section.s8 .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...]
H A Dsection.s5 .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, ""
70 .section .note.test,"",@note
86 .section
[all...]
H A Drelax-crash.s6 .section .debug_line,"",@progbits
9 .section foo
H A Dalign.s4 // previous section (.bss)
7 .section .rodata,"a",@progbits
H A Dcomdat.s75 .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
H A Ddebug-line.s1 // RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | elf-dump --dump-section-data | FileCheck %s
17 .section .debug_line,"",@progbits
/external/clang/test/Sema/
H A Dattr-section.c3 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("ba
[all...]
/external/llvm/test/MC/MachO/
H A Dsection-attributes.s6 .section __TEXT,__objc_opt_ro
H A Dpcrel-to-other-section.s1 // 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
H A Ddiff-with-two-sections.s1 // RUN: llvm-mc -triple i386-apple-darwin9 %s -filetype=obj -o - | macho-dump --dump-section-data | FileCheck %s
3 .section __TEXT,__text,regular,pure_instructions
5 .section __TEXT,__eh_frame,coalesced,no_toc+strip_static_syms+live_support
H A Dempty-dwarf-lines.s7 .section __DATA,__data
H A Dweakdef.s1 // RUN: llvm-mc -triple i386-apple-darwin9 %s -filetype=obj -o - | macho-dump --dump-section-data | FileCheck %s
3 .section __DATA,__datacoal_nt,coalesced
4 .section __TEXT,__const_coal,coalesced
10 .section __DATA,__datacoal_nt,coalesced
/external/elfutils/libebl/
H A Deblsectionname.c1 /* 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_LORESERV
[all...]
H A Deblsectiontypename.c1 /* 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
[all...]
/external/webkit/Source/WebCore/bindings/js/
H A DJSCDATASectionCustom.cpp35 JSValue toJSNewlyCreated(ExecState* exec, JSDOMGlobalObject* globalObject, CDATASection* section) argument
37 if (!section)
40 return CREATE_DOM_NODE_WRAPPER(exec, globalObject, CDATASection, section);
/external/clang/test/
H A Dmake_test_dirs.pl13 my $section = $1;
24 mkdir($section);
25 chdir($section);
/external/clang/test/CodeGen/
H A D2006-07-31-PR854.c9 __attribute__((section("__ksymtab_strings"))) = "loops_per_jiffy";
11 __attribute__((__used__)) __attribute__((section("__ksymtab"))) = { (unsigned
H A D2011-02-21-DATA-common.c5 __attribute__ ((section("__DATA, __common"))) static struct rtxc_snapshot rtxc_log_A[4];
H A Dattribute-section-data-common.c5 __attribute__ ((section("__DATA, __common"))) struct rtxc_snapshot rtxc_log_A[4];
/external/compiler-rt/lib/asan/
H A Dasan_android_stub.cc3 __attribute__((section(".preinit_array")))
/external/bluetooth/bluedroid/btif/include/
H A Dbtif_config.h52 int btif_config_exist(const char* section, const char* key, const char* name);
53 int btif_config_get_int(const char* section, const char* key, const char* name, int* value);
54 int btif_config_set_int(const char* section, const char* key, const char* name, int value);
55 int btif_config_get_str(const char* section, const char* key, const char* name, char* value, int* bytes);
56 int btif_config_set_str(const char* section, const char* key, const char* name, const char* value);
58 int btif_config_get(const char* section, const char* key, const char* name, char* value, int* bytes, int* type);
59 int btif_config_set(const char* section, const char* key, const char* name, const char* value, int bytes, int type);
61 int btif_config_remove(const char* section, const char* key, const char* name);
63 short btif_config_next_key(short current_key_pos, const char* section, char * key_name, int* key_name_bytes);
64 short btif_config_next_value(short pos, const char* section, cons
[all...]
/external/openssl/crypto/conf/
H A Dconf_api.h70 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/
H A Dconf_api.h70 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 262 milliseconds

1234567891011>>