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

1 2 3 4 5 6 7 8 91011>>

  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_ports/
x86_abi_support.asm 367 ; Name of the rodata section
372 %define SECTION_RODATA section .text
375 section .text label
378 %define SECTION_RODATA section .data
380 %define SECTION_RODATA section .rodata
386 section .note.GNU-stack noalloc noexec nowrite progbits label
387 section .text label
389 section .note.GNU-stack noalloc noexec nowrite progbits label
390 section .text label
392 section .note.GNU-stack noalloc noexec nowrite progbit label
393 section .text label
    [all...]
emms.asm 14 section .text label
  /external/libvpx/libvpx/vpx_ports/
emms.asm 14 section .text label
x86_abi_support.asm 367 ; Name of the rodata section
372 %define SECTION_RODATA section .text
375 section .text label
378 %define SECTION_RODATA section .data
380 %define SECTION_RODATA section .rodata
386 section .note.GNU-stack noalloc noexec nowrite progbits label
387 section .text label
389 section .note.GNU-stack noalloc noexec nowrite progbits label
390 section .text label
392 section .note.GNU-stack noalloc noexec nowrite progbit label
393 section .text label
    [all...]
  /ndk/tests/device/test-yasm/jni/
print_hello.asm 0 section .rodata
4 section .text label
1 section .rodata label
  /external/boringssl/win-x86_64/crypto/modes/
aesni-gcm-x86_64.asm 5 section .text code align=64 label
  /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/boringssl/win-x86/crypto/md5/
md5-586.asm 2 section code use32 class=code align=64 label
13 section .text code align=64 label
15 section .text code label
38 ; R0 section
202 ; R1 section
364 ; R2 section
510 ; R3 section
  /art/runtime/
image-inl.h 51 const ImageSection& section = GetImageSection(kSectionIMTConflictTables); local
52 for (size_t pos = 0; pos < section.Size(); ) {
53 auto* table = reinterpret_cast<ImtConflictTable*>(base + section.Offset() + pos);
  /system/bt/btif/src/
btif_config_transcode.cpp 52 const char *section = j->Attribute("Tag"); local
56 if (section && key && value)
57 config_set_string(config, section, key, value);
  /art/tools/ahat/src/
Doc.java 36 * Start a new section with the given title.
38 void section(String title); method in interface:Doc
  /external/autotest/frontend/
make_superuser.py 14 section = 'AUTOTEST_WEB' variable
15 host = config.get_config_value(section, "host")
16 db_name = config.get_config_value(section, "database")
17 user = config.get_config_value(section, "user")
18 password = config.get_config_value(section, "password")
  /external/boringssl/src/include/openssl/
conf.h 74 * # This key is in the default section.
83 char *section; member in struct:conf_value_st
110 /* NCONF_get_section returns a stack of values for a given section in |conf|.
111 * If |section| is NULL, the default section is returned. It returns NULL on
113 STACK_OF(CONF_VALUE) *NCONF_get_section(const CONF *conf, const char *section);
115 /* NCONF_get_string returns the value of the key |name|, in section |section|.
116 * The |section| argument may be NULL to indicate the default section. I
    [all...]
  /external/boringssl/win-x86/crypto/bn/
co-586.asm 2 section code use32 class=code align=64 label
13 section .text code align=64 label
15 section .text code label
  /external/boringssl/win-x86_64/crypto/bn/
rsaz-avx2.asm 5 section .text code align=64 label
  /external/libvpx/libvpx/third_party/libyuv/source/
x86inc.asm 59 ; Name of the .rodata section.
61 ; so use a different read-only section.
64 SECTION .text align=%1
66 SECTION .text align=%1
69 section .text
71 SECTION .rodata align=%1
78 SECTION .text
80 SECTION .text align=%1
551 SECTION .note.GNU-stack noalloc noexec nowrite progbits
554 section .note.GNU-stack noalloc noexec nowrite progbit label
557 section .note.GNU-stack noalloc noexec nowrite progbits label
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
ELFReaderIf.h 55 /// readSectionHeaders - read ELF section header table and create LDSections
59 /// readRegularSection - read a regular section and create fragments.
69 /// This is used to get the signature of a group section.
88 /// LinkInfo - some section needs sh_link and sh_info, remember them.
90 LDSection* section; member in struct:mcld::ELFReaderIF::LinkInfo
  /system/bt/osi/test/
config_test.cpp 148 EXPECT_FALSE(config_remove_section(config, "not a section"));
170 const config_section_node_t *section = config_section_begin(config); local
171 EXPECT_TRUE(section != NULL);
172 const char *section_name = config_section_name(section);
173 EXPECT_TRUE(section != NULL);
180 const config_section_node_t *section = config_section_begin(config); local
181 EXPECT_TRUE(section != NULL);
182 section = config_section_next(section);
183 EXPECT_TRUE(section != NULL)
192 const config_section_node_t * section = config_section_begin(config); local
    [all...]
  /toolchain/binutils/binutils-2.25/ld/
ldctor.h 45 asection *section; /* Section of value in set. */ member in struct:set_element
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
MapItem.java 37 /** {@code non-null;} section this instance covers */
38 private final Section section; field in class:MapItem
61 * given map section.
64 * @param mapSection {@code non-null;} the section that the resulting map
67 public static void addMap(Section[] sections,
80 for (Section section : sections) {
86 for (Item item : section.items()) {
90 items.add(new MapItem(currentType, section,
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
MapItem.java 36 /** {@code non-null;} section this instance covers */
37 private final Section section; field in class:MapItem
60 * given map section.
63 * @param mapSection {@code non-null;} the section that the resulting map
66 public static void addMap(Section[] sections,
79 for (Section section : sections) {
85 for (Item item : section.items()) {
89 items.add(new MapItem(currentType, section,
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
MapItem.java 37 /** {@code non-null;} section this instance covers */
38 private final Section section; field in class:MapItem
61 * given map section.
64 * @param mapSection {@code non-null;} the section that the resulting map
67 public static void addMap(Section[] sections,
80 for (Section section : sections) {
86 for (Item item : section.items()) {
90 items.add(new MapItem(currentType, section,
    [all...]
  /external/google-breakpad/src/common/linux/
elfutils.cc 67 const Shdr* section = local
72 if (section != NULL && section->sh_size > 0) {
73 *section_start = elf_base + section->sh_offset;
74 *section_size = section->sh_size;
  /packages/experimental/BugReportSender/src/com/android/bugreportsender/
BugReportPreviewActivity.java 15 * Provides a scrolling text view previewing a named section of a
40 String section = intent.getStringExtra("section"); local
41 if (section == null || section.length() == 0) {
42 section = "SYSTEM LOG";
49 String text = BugReportParser.extractSystemLogs(in, section);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiElementDetail.java 48 import org.eclipse.ui.forms.widgets.Section;
66 private Section mMasterSection;
190 * Creates a TableWrapLayout in the DetailsPage, which in turns contains a Section.
197 * + Section (with title/description && fill_grab horizontal)
204 * @return The new Section
206 private Section createMasterSection(Composite parent) {
212 Section section = toolkit.createSection(parent, Section.TITLE_BAR); local
213 section.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB, TableWrapData.TOP))
392 Section section = toolkit.createSection(masterTable, local
437 Section section = ((Section) unknownTable.getParent()); local
    [all...]

Completed in 1320 milliseconds

1 2 3 4 5 6 7 8 91011>>