Searched refs:sect (Results 1 - 25 of 36) sorted by relevance

12

/external/llvm/tools/llvm-c-test/
H A Dobject.c24 LLVMSectionIteratorRef sect; local
38 sect = LLVMGetSections(O);
39 while (!LLVMIsSectionIteratorAtEnd(O, sect)) {
40 printf("'%s': @0x%08" PRIx64 " +%" PRIu64 "\n", LLVMGetSectionName(sect),
41 LLVMGetSectionAddress(sect), LLVMGetSectionSize(sect));
43 LLVMMoveToNextSection(sect);
46 LLVMDisposeSectionIterator(sect);
56 LLVMSectionIteratorRef sect; local
71 sect
[all...]
/external/elfutils/tests/
H A Drun-dwfl-addr-sect.sh22 testrun_compare ${abs_builddir}/dwfl-addr-sect -e testfile43 0x64 0x8 0x98 <<\EOF
28 testrun_compare ${abs_builddir}/dwfl-addr-sect -e testfile50 0x1 <<\EOF
/external/openssh/
H A Dkrl.c554 struct sshbuf *sect; local
557 if ((sect = sshbuf_new()) == NULL)
601 if ((r = put_bitmap(sect, bitmap)) != 0)
608 (r = sshbuf_put_stringb(buf, sect)) != 0)
610 sshbuf_reset(sect);
618 sshbuf_reset(sect);
629 if ((r = sshbuf_put_u64(sect,
640 if ((r = sshbuf_put_u64(sect, rs->lo + i)) != 0)
645 if ((r = sshbuf_put_u64(sect, rs->lo)) != 0 ||
646 (r = sshbuf_put_u64(sect, r
712 struct sshbuf *sect; local
926 struct sshbuf *copy = NULL, *sect = NULL; local
[all...]
/external/lldb/source/Symbol/
H A DUnwindTable.cpp50 SectionSP sect = sl->FindSectionByType (eSectionTypeEHFrame, true); local
51 if (sect.get())
53 m_eh_frame = new DWARFCallFrameInfo(m_object_file, sect, eRegisterKindGCC, true);
/external/boringssl/src/crypto/x509v3/
H A Dv3_pci.c271 STACK_OF(CONF_VALUE) *sect;
274 sect = X509V3_get_section(ctx, cnf->name + 1);
275 if (!sect)
281 for (j = 0; success_p && j < sk_CONF_VALUE_num(sect); j++)
284 process_pci_value(sk_CONF_VALUE_value(sect, j),
287 X509V3_section_free(ctx, sect);
H A Dv3_crld.c96 static STACK_OF(GENERAL_NAME) *gnames_from_sectname(X509V3_CTX *ctx, char *sect)
100 if (*sect == '@')
101 gnsect = X509V3_get_section(ctx, sect + 1);
103 gnsect = X509V3_parse_list(sect);
110 if (*sect == '@')
/external/skia/tests/
H A DPathOpsCubicLineIntersectionTest.cpp159 SkDPoint sect = cubic.ptAtT(cubicT); local
160 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", prev.fX, prev.fY, sect.fX, sect.fY);
161 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", sect.fX, sect.fY, cubic[3].fX, cubic[3].fY);
167 sect.distance(i.pt(0)), cubic[3].distance(prevL));
H A DPathOpsDebug.cpp375 const SkTSpan<TCurve, OppCurve>* DebugSpan(const SkTSect<TCurve, OppCurve>* sect, int id) { argument
376 return sect->debugSpan(id);
405 const SkTSpan<TCurve, OppCurve>* DebugT(const SkTSect<TCurve, OppCurve>* sect, double t) { argument
406 return sect->debugT(t);
435 void Dump(const SkTSect<TCurve, OppCurve>* sect) { argument
436 sect->dump();
615 void DumpCurves(const SkTSect<TCurve, OppCurve>* sect) { argument
616 sect->dumpCurves();
832 SkDebugf(" sect=%d/%d ", fSectorStart, fSectorEnd);
/external/llvm/include/llvm/Support/
H A DMachO.h1057 inline void swapStruct(section_64 &sect) { argument
1058 sys::swapByteOrder(sect.addr);
1059 sys::swapByteOrder(sect.size);
1060 sys::swapByteOrder(sect.offset);
1061 sys::swapByteOrder(sect.align);
1062 sys::swapByteOrder(sect.reloff);
1063 sys::swapByteOrder(sect.nreloc);
1064 sys::swapByteOrder(sect.flags);
1065 sys::swapByteOrder(sect.reserved1);
1066 sys::swapByteOrder(sect
1069 swapStruct(section &sect) argument
[all...]
/external/lldb/source/Core/
H A DSection.cpp334 SectionList::FindSectionIndex (const Section* sect) argument
341 if (sect_iter->get() == sect)
486 Section *sect = sect_iter->get(); local
487 if (sect->ContainsFileAddress (vm_addr))
493 sect_sp = sect->GetChildren().FindSectionContainingFileAddress(vm_addr, depth - 1);
495 if (sect_sp.get() == NULL && !sect->IsFake())
/external/boringssl/src/crypto/x509/
H A Dasn1_gen.c471 STACK_OF(CONF_VALUE) *sect = NULL;
482 sect = X509V3_get_section(cnf, (char *)section);
483 if (!sect)
485 for (i = 0; i < sk_CONF_VALUE_num(sect); i++)
487 ASN1_TYPE *typ = ASN1_generate_v3(sk_CONF_VALUE_value(sect, i)->value, cnf);
525 if (sect)
526 X509V3_section_free(cnf, sect);
/external/aac/libAACenc/src/
H A Dqc_main.cpp1490 INT sect, statBitsNew ; local
1500 for (sect = 0; sect < qcChannel[ch]->sectionData.noOfSections; sect++)
1503 INT codeBook = qcChannel[ch]->sectionData.huffsection[sect].codeBook ;
1505 for (sfb = qcChannel[ch]->sectionData.huffsection[sect].sfbStart;
1506 sfb < qcChannel[ch]->sectionData.huffsection[sect].sfbStart +
1507 qcChannel[ch]->sectionData.huffsection[sect].sfbCnt;
1518 sectionToScf[ch][sfb] = sect ;
1533 int sect local
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DHTMLEntities.properties40 sect=167
/external/lldb/source/Plugins/ObjectFile/PECOFF/
H A DObjectFilePECOFF.h219 uint16_t sect; member in struct:ObjectFilePECOFF::coff_symbol
235 bool GetSectionName(std::string& sect_name, const section_header_t& sect);
H A DObjectFilePECOFF.cpp491 ObjectFilePECOFF::GetSectionName(std::string& sect_name, const section_header_t& sect) argument
493 if (sect.name[0] == '/')
495 lldb::offset_t stroff = strtoul(&sect.name[1], NULL, 10);
506 sect_name = sect.name;
575 symbol.sect = symtab_data.GetU16 (&offset);
580 if ((int16_t)symbol.sect >= 1)
582 Address symbol_addr(sect_list->GetSectionAtIndex(symbol.sect-1), symbol.value);
/external/valgrind/coregrind/m_debuginfo/
H A Dreadmacho.c616 struct SECTION sect; local
617 ML_(cur_step_get)(&sect, &sects_cur, sizeof(sect));
618 if (0 == VG_(strncmp(sect.sectname, sectname,
619 sizeof(sect.sectname)))) {
621 res.ioff = sect.offset;
622 res.szB = sect.size;
623 if (svma) *svma = (Addr)sect.addr;
/external/kernel-headers/original/uapi/linux/
H A Dfd.h15 sect, /* sectors per track */ member in struct:floppy_struct
/external/valgrind/coregrind/
H A Dm_addrinfo.c91 VgSectKind sect; local
207 sect = VG_(DebugInfo_sect_kind)( &name, a);
208 if (sect != Vg_SectUnknown) {
211 ai->Addr.SectKind.kind = sect;
/external/aac/libSYS/include/
H A DgenericStds.h216 #define C_ALLOC_MEM_OVERLAY(name,type,num,sect,tag) C_AALLOC_MEM_L(name,type,num,sect)
/external/skia/src/core/
H A DSkRegion.cpp456 SkIRect sect; local
457 if (!sect.intersect(fBounds, r)) {
465 const RunType* scanline = fRunHead->findScanline(sect.fTop);
467 if (scanline_intersects(scanline, sect.fLeft, sect.fRight)) {
470 if (sect.fBottom <= scanline_bottom(scanline)) {
/external/llvm/tools/llvm-objdump/
H A DMachODump.cpp611 static void DumpCstringSection(MachOObjectFile *O, const char *sect, argument
621 for (; i < sect_size && sect[i] != '\0'; i++)
622 DumpCstringChar(sect[i]);
623 if (i < sect_size && sect[i] == '\0')
644 static void DumpLiteral4Section(MachOObjectFile *O, const char *sect, argument
655 memcpy(&f, sect + i, sizeof(float));
659 memcpy(&l, sect + i, sizeof(uint32_t));
688 static void DumpLiteral8Section(MachOObjectFile *O, const char *sect, argument
699 memcpy(&d, sect + i, sizeof(double));
703 memcpy(&l0, sect
720 DumpLiteral16Section(MachOObjectFile *O, const char *sect, uint32_t sect_size, uint64_t sect_addr, bool print_addresses) argument
745 DumpLiteralPointerSection(MachOObjectFile *O, const SectionRef &Section, const char *sect, uint32_t sect_size, uint64_t sect_addr, bool print_addresses) argument
912 DumpInitTermPointerSection(MachOObjectFile *O, const char *sect, uint32_t sect_size, uint64_t sect_addr, SymbolAddressMap *AddrMap, bool verbose) argument
945 DumpRawSectionContents(MachOObjectFile *O, const char *sect, uint32_t size, uint64_t addr) argument
1032 const char *sect = reinterpret_cast<const char *>(BytesStr.data()); local
1109 const char *sect = reinterpret_cast<const char *>(BytesStr.data()); local
5484 DumpProtocolSection(MachOObjectFile *O, const char *sect, uint32_t size, uint32_t addr) argument
[all...]
/external/lldb/include/lldb/Core/
H A DSection.h47 FindSectionIndex (const Section* sect);
/external/valgrind/helgrind/
H A Dhg_errors.c485 VgSectKind sect = VG_(DebugInfo_sect_kind)( NULL, data_addr ); local
487 data_addr, VG_(pp_SectKind)(sect));
489 if (sect == Vg_SectGOTPLT) return;
491 if (sect == Vg_SectPLT) return;
493 if (sect == Vg_SectGOT) return;
/external/iputils/doc/
H A Ddocbook2man-spec.pl1071 my ($title, $sect) = ($manref =~ /(.*)(\(.*\))/);
1075 output $sect;
/external/lldb/examples/python/
H A Dsymbolication.py528 for sect in module.section_iter():
529 print_module_section (sect, depth)
545 parser.add_option('--section', type='string', action='append', dest='section_strings', help='specify <sect-name>=<start-addr> or <sect-name>=<start-addr>-<end-addr>')

Completed in 1519 milliseconds

12