HomeSort by relevance Sort by last modified time
    Searched defs:section (Results 101 - 125 of 572) sorted by null

1 2 3 45 6 7 8 91011>>

  /system/media/camera/tests/
camera_metadata_tests_fake_vendor.h 163 int section; local
168 for (section = 0; section < FAKEVENDOR_SECTION_COUNT; section++) {
169 start = fakevendor_section_bounds[section][0];
170 end = fakevendor_section_bounds[section][1];
177 int section; local
181 for (section = 0; section < FAKEVENDOR_SECTION_COUNT; section++)
    [all...]
  /system/netd/bpfloader/
BpfLoader.cpp 118 MemBlock getProgFromMem(Slice buffer, Elf64_Shdr* section) {
119 uint64_t progSize = (uint64_t)section->sh_size;
120 Slice progSection = take(drop(buffer, section->sh_offset), progSize);
152 // Find section names string table. This is the section whose index is e_shstrndx.
176 Slice section = take(drop(sections, i * sizeof(Elf64_Shdr)), sizeof(Elf64_Shdr)); local
177 if (section.size() < sizeof(Elf64_Shdr)) {
178 FAIL("section %d is out of bound, section size: %zu, header size: %zu, total size: %zu",
179 i, section.size(), sizeof(Elf64_Shdr), sections.size())
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
liboasys.h 39 asection *section; member in struct:_oasys_per_section
nlm32-alpha.c 154 reloc always seems to be against the .lita section. */
171 use this to eliminate a portion of the .lita section. The symbol
471 or .data section. R_NW_RELOC relocs don't really have a section,
495 /* The PC relative relocs do not seem to use the section VMA as
545 to the absolute section so that the reloc is ignored. For
547 the section vma. We record the gp value for this object file
556 the addend to the size of the .lita section (this is
623 sym -> symbol.section = bfd_und_section_ptr;
636 asection *section;
634 asection *section; local
    [all...]
nlm32-ppc.c 634 sym -> symbol.section = bfd_und_section_ptr;
646 asection *section;
648 if (! nlm_powerpc_read_reloc (abfd, sym, &section, &nlm_relocs -> reloc))
650 nlm_relocs -> section = section;
686 segment, rightshifted by two. This offset is the section vma,
687 adjusted by the vma of the lowest section in that segment, plus
697 /* The high bit is 0 if the reloc is in the data section, or 1 if
698 the reloc is in the code section. */
891 /* Set the section for a public symbol. *
645 asection *section; local
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/
addr2line.c 62 {"section", required_argument, NULL, 'j'},
90 -j --section=<name> Read section-relative offsets instead of addresses\n\
166 /* Look for an address in a section. This is called via
170 find_address_in_section (bfd *abfd, asection *section,
179 if ((bfd_get_section_flags (abfd, section) & SEC_ALLOC) == 0)
182 vma = bfd_get_section_vma (abfd, section);
186 size = bfd_get_section_size (section);
190 found = bfd_find_nearest_line_discriminator (abfd, section, syms, pc - vma,
195 /* Look for an offset in a section. This is directly called. *
364 asection *section; local
    [all...]
od-elf32_avr.c 56 avr-prop Display contents of .avr.prop section\n\
83 asection *section; local
85 if ((section = bfd_get_section_by_name (abfd, ".note.gnu.avr.deviceinfo")) == NULL)
88 *size = bfd_get_section_size (section);
90 bfd_get_section_contents (abfd, section, contents, 0, *size);
162 asection *section; local
164 if ((section = bfd_get_section_by_name (abfd, ".data")) != NULL)
165 avr_datasize = bfd_section_size (abfd, section);
166 if ((section = bfd_get_section_by_name (abfd, ".text")) != NULL)
167 avr_textsize = bfd_section_size (abfd, section);
    [all...]
  /toolchain/binutils/binutils-2.27/include/
dis-asm.h 86 /* Some targets need information about the current section to accurately
89 asection *section; member in struct:disassemble_info
181 /* The number of zeroes we want to see at the end of a section before we
185 /* The number of zeroes to skip at the end of a section. If the number
189 attempt to avoid disassembling zeroes inserted by section
  /tools/apksig/src/main/java/com/android/apksig/internal/jar/
ManifestParser.java 29 * <p>These files consist of a main section followed by individual sections. Individual sections
61 public List<Section> readAllSections() {
62 List<Section> sections = new ArrayList<>();
63 Section section; local
64 while ((section = readSection()) != null) {
65 sections.add(section);
71 * Returns the next section from this file or {@code null} if end of file has been reached.
73 public Section readSection() {
87 // Read attributes until end of section reache
    [all...]
  /tools/tradefederation/core/prod-tests/src/com/android/performance/tests/
GeekbenchTest.java 172 JSONObject section = arr.getJSONObject(i); local
173 String sectionName = section.getString("name");
174 String sectionScore = section.getString("score");
175 String sectionScoreMulticore = section.getString("multicore_score");
  /art/dexlayout/
dexdiag.cc 53 static constexpr char kSectionHeader[] = "Section name";
147 // Computes the width of the section header column in the table (for fixed formatting).
181 for (const auto& section : sections) {
182 size_t first_page_of_section = section.offset / kPageSize;
184 if (section.size == 0) {
187 // Attribute the page to the highest-offset section that starts before the page.
189 return section.type;
192 // If there's no non-zero sized section with an offset below offset we're looking for, it
244 const dex_ir::DexFileSection& section = sections[i - 1]; local
245 const uint16_t type = section.type
    [all...]
  /development/samples/Vault/src/com/example/android/vault/
EncryptedDocument.java 53 * encrypted metadata section, followed by an encrypted content section. The
54 * content section always starts at a specific offset {@link #CONTENT_OFFSET} to
57 * Each section is encrypted using AES-128 with a random IV, and authenticated
71 * Offset in file at which content section starts. Magic and metadata
72 * section must fully fit before this offset.
129 * Decrypt and return parsed metadata section from this document.
140 // Only interested in metadata section
166 * Decrypt and read content section of this document, writing it into the
188 // Skip over metadata section
274 final Section section = new Section(); local
312 final Section section = new Section(); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DOMBuilder.java 561 * section 2.10): non-validating parsers may also use this method
607 * section 2.8) or a text declaration (XML 1.0, section 4.3.1)
636 /** Flag indicating that we are processing a CData section */
640 * Report the start of a CDATA section.
651 * Report the end of a CDATA section.
691 CDATASection section =(CDATASection) m_currentNode.getLastChild(); local
692 section.appendData(s);
  /external/boringssl/src/crypto/conf/
conf.c 77 return (lh_strhash(v->section) << 2) ^ lh_strhash(v->name);
83 if (a->section != b->section) {
84 i = strcmp(a->section, b->section);
131 if (value->section) {
132 OPENSSL_free(value->section);
161 static CONF_VALUE *NCONF_new_section(const CONF *conf, const char *section) {
171 v->section = OPENSSL_strdup(section);
526 char *section = NULL, *buf; local
    [all...]
  /external/boringssl/win-x86/crypto/fipsmodule/
vpaes-x86.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/fipsmodule/
sha1-x86_64.asm 5 section .text code align=64 label
3740 section .pdata rdata align=4 label
3751 section .xdata rdata align=8 label
    [all...]
sha256-x86_64.asm 5 section .text code align=64 label
4057 section .pdata rdata align=4 label
4068 section .xdata rdata align=8 label
    [all...]
sha512-x86_64.asm 5 section .text code align=64 label
4187 section .pdata rdata align=4 label
4198 section .xdata rdata align=8 label
    [all...]
  /external/icu/icu4c/source/tools/makeconv/
gencnvex.c 394 * One function invocation generates one section table.
399 * 2. Allocate the section table with possible optimization for linear access.
400 * 3. Write temporary version of the section table with start indexes of
403 * 0: write 0 as a result value (unused byte in linear-access section table)
421 uint32_t *section; local
444 /* step 2: allocate the section; set count, section */
460 fprintf(stderr, "error: toUnicode extension table section overflow: %ld section entries\n", (long)count);
464 /* allocate the section: 1 entry for the header + count for the items *
    [all...]
  /external/skia/src/sksl/
SkSLCPPCodeGenerator.cpp 364 const Section* s = fSectionAndParameterHelper.getSection(name);
561 const Section* section = fSectionAndParameterHelper.getSection(SET_DATA_SECTION); local
562 const char* pdman = section ? section->fArgument.c_str() : "pdman";
598 if (section) {
656 for (const Section* s : fSectionAndParameterHelper.getSections(COORD_TRANSFORM_SECTION)) {
672 for (const Section* s : fSectionAndParameterHelper.getSections(COORD_TRANSFORM_SECTION)) {
686 const Section* test = fSectionAndParameterHelper.getSection(TEST_CODE_SECTION);
    [all...]
  /external/skqp/src/sksl/
SkSLCPPCodeGenerator.cpp 364 const Section* s = fSectionAndParameterHelper.getSection(name);
561 const Section* section = fSectionAndParameterHelper.getSection(SET_DATA_SECTION); local
562 const char* pdman = section ? section->fArgument.c_str() : "pdman";
598 if (section) {
656 for (const Section* s : fSectionAndParameterHelper.getSections(COORD_TRANSFORM_SECTION)) {
672 for (const Section* s : fSectionAndParameterHelper.getSections(COORD_TRANSFORM_SECTION)) {
686 const Section* test = fSectionAndParameterHelper.getSection(TEST_CODE_SECTION);
    [all...]
  /frameworks/av/camera/
CameraMetadata.cpp 715 // First, find the section by the longest string match
716 const char *section = NULL; local
725 ALOGV("%s: Trying to match against section '%s'", __FUNCTION__, str);
727 if (strstr(name, str) == name) { // name begins with the section name
730 ALOGV("%s: Name begins with section name", __FUNCTION__);
732 // section name is the longest we've found so far
733 if (section == NULL || sectionLength < strLength) {
734 section = str;
738 ALOGV("%s: Found new best section (%s)", __FUNCTION__, section);
    [all...]
  /frameworks/native/libs/vr/libpdx/
encoder_performance_test.cpp 187 auto section = reader->GetNextReadBufferSection(); local
188 memcpy(dummy_data.data(), section.first, dummy_data.size());
190 AdvancePointer(section.first, dummy_data.size()));
  /hardware/interfaces/camera/common/1.0/default/
CameraMetadata.cpp 483 // First, find the section by the longest string match
484 const char *section = NULL; local
493 ALOGV("%s: Trying to match against section '%s'", __FUNCTION__, str);
495 if (strstr(name, str) == name) { // name begins with the section name
498 ALOGV("%s: Name begins with section name", __FUNCTION__);
500 // section name is the longest we've found so far
501 if (section == NULL || sectionLength < strLength) {
502 section = str;
506 ALOGV("%s: Found new best section (%s)", __FUNCTION__, section);
    [all...]
  /packages/apps/TV/src/com/android/tv/dvr/ui/list/
ScheduleRowAdapter.java 97 ArrayList<ScheduledRecording> section = new ArrayList<>(); local
99 section.add(recordingList.get(i++));
101 if (!section.isEmpty()) {
108 section.size(),
109 section.size()),
110 section.size(),
113 for (ScheduledRecording recording : section) {

Completed in 891 milliseconds

1 2 3 45 6 7 8 91011>>