HomeSort by relevance Sort by last modified time
    Searched full:sects (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /external/libunwind_llvm/src/
UnwindCursor.hpp 444 bool getInfoFromEHABISection(pint_t pc, const UnwindInfoSections &sects);
462 bool getInfoFromDwarfSection(pint_t pc, const UnwindInfoSections &sects,
474 const UnwindInfoSections &sects);
728 static _Self begin(A& addressSpace, const UnwindInfoSections& sects) {
729 return _Self(addressSpace, sects, 0);
731 static _Self end(A& addressSpace, const UnwindInfoSections& sects) {
732 return _Self(addressSpace, sects,
733 sects.arm_section_length / sizeof(EHABIIndexEntry));
736 EHABISectionIterator(A& addressSpace, const UnwindInfoSections& sects, size_t i)
737 : _i(i), _addressSpace(&addressSpace), _sects(&sects) {}
1263 UnwindInfoSections sects; local
    [all...]
AddressSpace.hpp 405 UnwindInfoSections *sects;
417 assert(cbdata->sects);
457 cbdata->sects->dso_base = begin;
468 cbdata->sects->dwarf_index_section = eh_frame_hdr_start;
469 cbdata->sects->dwarf_index_section_length = phdr->p_memsz;
473 cbdata->sects->dwarf_section = hdrInfo.eh_frame_ptr;
479 cbdata->sects->dwarf_section_length = object_length;
494 cbdata->sects->arm_section = exidx_start;
495 cbdata->sects->arm_section_length = phdr->p_memsz;
  /toolchain/binutils/binutils-2.27/gold/testsuite/
eh_test_2.sh 25 sections="eh_test_2.sects"
Makefile.am 406 check_DATA += eh_test_2.sects
407 MOSTLYCLEANFILES += eh_test_2 eh_test_2.sects
412 eh_test_2.sects: eh_test_2
    [all...]
  /toolchain/binutils/binutils-2.27/etc/
texi2pod.pl 28 %sects = ();
120 $sects{$sect} = "" unless exists $sects{$sect};
121 $sects{$sect} .= postprocess($section);
340 $sects{NAME} = "$fn \- $tl\n";
341 $sects{FOOTNOTES} .= "=back\n" if exists $sects{FOOTNOTES};
345 if(exists $sects{$sect}) {
349 print scalar unmunge ($sects{$sect});
459 unless (exists $sects{FOOTNOTES})
    [all...]
  /external/e2fsprogs/lib/ext2fs/
dosio.c 97 chs->cyl = abss / (part->sects * part->heads);
98 chs->head = (abss / part->sects) % part->heads;
99 chs->sector = (abss % part->sects) + 1;
296 part->sects = sec[0] & 0x3F;
332 part->start = fsec + fhead * part->sects + fcyl *
333 (part->heads * part->sects) - 1;
dosio.h 51 unsigned short sects; member in struct:__anon19037
  /toolchain/binutils/binutils-2.27/binutils/
od-xcoff.c 389 struct xcoff32_section *sects; member in struct:xcoff_dump
594 data->sects = xmalloc (data->nscns * sizeof (struct xcoff32_section));
598 struct xcoff32_section *s = &data->sects[i];
603 free (data->sects);
604 data->sects = NULL;
621 data->sects[s->nreloc - 1].nreloc =
624 data->sects[s->nlnno - 1].nlnno =
783 if (data->sects != NULL)
784 printf ("%-8s", data->sects[s->sym.scnum - 1].name);
923 if (data->sects == NULL
    [all...]
  /external/llvm/test/Object/
macho-invalid.test 39 RUN: | FileCheck -check-prefix TOO-MANY-SECTS %s
40 TOO-MANY-SECTS: truncated or malformed object (load command 0 inconsistent cmdsize in LC_SEGMENT for the number of sections)
42 RUN: | FileCheck -check-prefix TOO-MANY-SECTS-64 %s
43 TOO-MANY-SECTS-64: truncated or malformed object (load command 0 inconsistent cmdsize in LC_SEGMENT_64 for the number of sections)
  /external/syslinux/memdisk/
eltorito.h 77 uint8_t geom2; /* Sects/track 0 thru 5, cyls 8, 9 */
memdisk.inc 1172 .geom2 db 0 ; Sects/track 0 thru 5, cyls 8, 9
  /external/skia/tools/
pathops_sorter.htm 682 var sects = ray_curve_intersect(origin, hullEnds[opp], curve);
683 intersect.push(sects);
684 if (sects.length > 1) {
685 var intersection = sects[0];
687 intersection = sects[1];
709 var sects = intersect[sIndex];
710 var intersection = sects[0];
712 intersection = sects[1];
    [all...]
  /external/skqp/tools/
pathops_sorter.htm 688 var sects = ray_curve_intersect(origin, hullEnds[opp], curve);
689 intersect.push(sects);
690 if (sects.length > 1) {
691 var intersection = sects[0];
693 intersection = sects[1];
715 var sects = intersect[sIndex];
716 var intersection = sects[0];
718 intersection = sects[1];
    [all...]
  /prebuilts/go/darwin-x86/src/debug/plan9obj/
file.go 170 var sects = []struct {
185 for i, sect := range sects {
  /prebuilts/go/linux-x86/src/debug/plan9obj/
file.go 170 var sects = []struct {
185 for i, sect := range sects {
  /system/extras/simpleperf/scripts/script_testdata/
simpleperf_runtest_two_functions_arm 
  /external/skia/src/pathops/
SkPathOpsTSect.h 1372 int sects = this->linesIntersect(span, opp, oppSpan, &i); local
1851 int oppSects, sects = this->intersects(span, opp, test, &oppSects); local
    [all...]
  /external/skqp/src/pathops/
SkPathOpsTSect.h 1372 int sects = this->linesIntersect(span, opp, oppSpan, &i); local
1851 int oppSects, sects = this->intersects(span, opp, test, &oppSects); local
    [all...]
  /external/syslinux/extlinux/
main.c 100 uint32_t sects; local
107 if (!ioctl(devfd, BLKGETSIZE, &sects))
108 return (uint64_t) sects << 9;
    [all...]
  /system/core/libbacktrace/testdata/arm/
libbacktrace_test_debug_frame.so 
  /toolchain/binutils/binutils-2.27/gold/
dwp.cc 2033 const Section_bounds* sects = (*tbl)->sections; local
2053 const Section_bounds* sects = (*tbl)->sections; local
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
macho.go 216 Exitf("too many sects in segment %s", seg.name)
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
macho.go 216 Exitf("too many sects in segment %s", seg.name)
  /toolchain/binutils/binutils-2.27/libiberty/
simple-object-mach-o.c 385 contain: a 'sects' wrapper, an index, and a name table, we expand this into
    [all...]
  /external/f2fs-tools/mkfs/
f2fs_format.c 203 MSG(1, "\ti.e., start sector: %d, ofs:%d (sects/page: %d)\n",
    [all...]

Completed in 1218 milliseconds

1 2 3 4