Searched defs:sect (Results 1 - 25 of 26) sorted by relevance

12

/external/llvm/tools/llvm-c-test/
H A Dobject.c23 LLVMSectionIteratorRef sect; local
37 sect = LLVMGetSections(O);
38 while (!LLVMIsSectionIteratorAtEnd(O, sect)) {
39 printf("'%s': @0x%08" PRIx64 " +%" PRIu64 "\n", LLVMGetSectionName(sect),
40 LLVMGetSectionAddress(sect), LLVMGetSectionSize(sect));
42 LLVMMoveToNextSection(sect);
45 LLVMDisposeSectionIterator(sect);
55 LLVMSectionIteratorRef sect; local
70 sect
[all...]
/external/skia/tests/
H A DPathOpsCubicLineIntersectionTest.cpp163 SkDPoint sect = cubic.ptAtT(cubicT); local
164 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", prev.fX, prev.fY, sect.fX, sect.fY);
165 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", sect.fX, sect.fY, cubic[3].fX, cubic[3].fY);
171 sect.distance(i.pt(0)), cubic[3].distance(prevL));
H A DPathOpsDebug.cpp408 const SkTSpan<TCurve, OppCurve>* DebugSpan(const SkTSect<TCurve, OppCurve>* sect, int id) { argument
409 return sect->debugSpan(id);
438 const SkTSpan<TCurve, OppCurve>* DebugT(const SkTSect<TCurve, OppCurve>* sect, double t) { argument
439 return sect->debugT(t);
468 void Dump(const SkTSect<TCurve, OppCurve>* sect) { argument
469 sect->dump();
648 void DumpCurves(const SkTSect<TCurve, OppCurve>* sect) { argument
649 sect->dumpCurves();
869 SkDebugf(" sect=%d/%d ", fSectorStart, fSectorEnd);
/external/skqp/tests/
H A DPathOpsCubicLineIntersectionTest.cpp163 SkDPoint sect = cubic.ptAtT(cubicT); local
164 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", prev.fX, prev.fY, sect.fX, sect.fY);
165 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", sect.fX, sect.fY, cubic[3].fX, cubic[3].fY);
171 sect.distance(i.pt(0)), cubic[3].distance(prevL));
H A DPathOpsDebug.cpp408 const SkTSpan<TCurve, OppCurve>* DebugSpan(const SkTSect<TCurve, OppCurve>* sect, int id) { argument
409 return sect->debugSpan(id);
438 const SkTSpan<TCurve, OppCurve>* DebugT(const SkTSect<TCurve, OppCurve>* sect, double t) { argument
439 return sect->debugT(t);
468 void Dump(const SkTSect<TCurve, OppCurve>* sect) { argument
469 sect->dump();
648 void DumpCurves(const SkTSect<TCurve, OppCurve>* sect) { argument
649 sect->dumpCurves();
869 SkDebugf(" sect=%d/%d ", fSectorStart, fSectorEnd);
/external/syslinux/com32/chain/
H A Doptions.h63 bool sect; member in struct:options
/external/syslinux/libinstaller/
H A Dsyslxmod.c40 sector_t sect, lba; local
49 sect = *sectp++;
54 if (sect == lba + len && xbytes < 65536 &&
67 lba = sect;
/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/skia/src/effects/
H A DSkArithmeticImageFilter.cpp135 SkIRect sect; local
136 if (!sect.intersect(dstR, srcR)) {
139 *dst = SkPixmap(dst->info().makeWH(sect.width(), sect.height()),
140 dst->addr(sect.fLeft, sect.fTop),
142 *src = SkPixmap(src->info().makeWH(sect.width(), sect.height()),
/external/skqp/src/effects/
H A DSkArithmeticImageFilter.cpp135 SkIRect sect; local
136 if (!sect.intersect(dstR, srcR)) {
139 *dst = SkPixmap(dst->info().makeWH(sect.width(), sect.height()),
140 dst->addr(sect.fLeft, sect.fTop),
142 *src = SkPixmap(src->info().makeWH(sect.width(), sect.height()),
/external/skqp/src/core/
H A DSkMaskFilter.cpp387 template <typename T> static inline T sect(const T& a, const T& b) { function
539 case SkCoverageMode::kIntersect: return sect(src, dst);
H A DSkRegion.cpp458 SkIRect sect; local
459 if (!sect.intersect(fBounds, r)) {
467 const RunType* scanline = fRunHead->findScanline(sect.fTop);
469 if (scanline_intersects(scanline, sect.fLeft, sect.fRight)) {
472 if (sect.fBottom <= scanline_bottom(scanline)) {
/external/valgrind/coregrind/m_debuginfo/
H A Dreadmacho.c617 struct SECTION sect; local
618 ML_(cur_step_get)(&sect, &sects_cur, sizeof(sect));
619 if (0 == VG_(strncmp)(sect.sectname, sectname,
620 sizeof(sect.sectname))) {
622 res.ioff = sect.offset;
623 res.szB = sect.size;
624 if (svma) *svma = (Addr)sect.addr;
/external/aac/libAACenc/src/
H A Dqc_main.cpp1422 INT sect, statBitsNew; local
1431 for (sect = 0; sect < qcChannel[ch]->sectionData.noOfSections; sect++) {
1432 INT codeBook = qcChannel[ch]->sectionData.huffsection[sect].codeBook;
1434 for (sfb = qcChannel[ch]->sectionData.huffsection[sect].sfbStart;
1435 sfb < qcChannel[ch]->sectionData.huffsection[sect].sfbStart +
1436 qcChannel[ch]->sectionData.huffsection[sect].sfbCnt;
1446 sectionToScf[ch][sfb] = sect;
1459 sect
[all...]
/external/skia/src/core/
H A DSkMaskFilter.cpp387 template <typename T> static inline T sect(const T& a, const T& b) { function
574 case SkCoverageMode::kIntersect: return sect(src, dst);
H A DSkRegion.cpp458 SkIRect sect; local
459 if (!sect.intersect(fBounds, r)) {
467 const RunType* scanline = fRunHead->findScanline(sect.fTop);
469 if (scanline_intersects(scanline, sect.fLeft, sect.fRight)) {
472 if (sect.fBottom <= scanline_bottom(scanline)) {
/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/kernel-headers/original/uapi/linux/
H A Dfd.h16 sect, /* sectors per track */ member in struct:floppy_struct
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DARMAsmPrinter.cpp554 const MCSection *sect = local
558 OutStreamer.SwitchSection(sect);
560 const MCSection *sect = local
564 OutStreamer.SwitchSection(sect);
/external/e2fsprogs/misc/
H A Dmke2fs.c556 static void zap_sector(ext2_filsys fs, int sect, int nsect) argument
565 sect, sect + nsect - 1);
569 if (sect == 0) {
586 retval = io_channel_write_blk64(fs->io, sect, -512*nsect, buf);
591 sect, error_message(retval));
/external/skia/src/pathops/
H A DSkPathOpsTSect.h972 // so that each quad sect has a pointer to the largest, and can update it as spans
2154 int oppSect, sect = sect1->intersects(span1, sect2, span2, &oppSect); local
2155 // SkASSERT(between(0, sect, 2));
2156 if (!sect) {
2159 if (sect == 2 && oppSect == 2) {
2284 SkASSERT(sect2->fCoincident); // courtesy check : coincidence only looks at sect 1
/external/skqp/src/pathops/
H A DSkPathOpsTSect.h972 // so that each quad sect has a pointer to the largest, and can update it as spans
2154 int oppSect, sect = sect1->intersects(span1, sect2, span2, &oppSect); local
2155 // SkASSERT(between(0, sect, 2));
2156 if (!sect) {
2159 if (sect == 2 && oppSect == 2) {
2284 SkASSERT(sect2->fCoincident); // courtesy check : coincidence only looks at sect 1
/external/llvm/include/llvm/Support/
H A DMachO.h1046 inline void swapStruct(section_64 &sect) { argument
1047 sys::swapByteOrder(sect.addr);
1048 sys::swapByteOrder(sect.size);
1049 sys::swapByteOrder(sect.offset);
1050 sys::swapByteOrder(sect.align);
1051 sys::swapByteOrder(sect.reloff);
1052 sys::swapByteOrder(sect.nreloc);
1053 sys::swapByteOrder(sect.flags);
1054 sys::swapByteOrder(sect.reserved1);
1055 sys::swapByteOrder(sect
1058 swapStruct(section &sect) argument
[all...]
/external/llvm/tools/llvm-objdump/
H A DMachODump.cpp665 static void DumpCstringSection(MachOObjectFile *O, const char *sect, argument
675 for (; i < sect_size && sect[i] != '\0'; i++)
676 DumpCstringChar(sect[i]);
677 if (i < sect_size && sect[i] == '\0')
698 static void DumpLiteral4Section(MachOObjectFile *O, const char *sect, argument
709 memcpy(&f, sect + i, sizeof(float));
713 memcpy(&l, sect + i, sizeof(uint32_t));
742 static void DumpLiteral8Section(MachOObjectFile *O, const char *sect, argument
753 memcpy(&d, sect + i, sizeof(double));
757 memcpy(&l0, sect
774 DumpLiteral16Section(MachOObjectFile *O, const char *sect, uint32_t sect_size, uint64_t sect_addr, bool print_addresses) argument
799 DumpLiteralPointerSection(MachOObjectFile *O, const SectionRef &Section, const char *sect, uint32_t sect_size, uint64_t sect_addr, bool print_addresses) argument
971 DumpInitTermPointerSection(MachOObjectFile *O, const char *sect, uint32_t sect_size, uint64_t sect_addr, SymbolAddressMap *AddrMap, bool verbose) argument
1004 DumpRawSectionContents(MachOObjectFile *O, const char *sect, uint32_t size, uint64_t addr) argument
1097 const char *sect = reinterpret_cast<const char *>(BytesStr.data()); local
1181 const char *sect = reinterpret_cast<const char *>(BytesStr.data()); local
5646 DumpProtocolSection(MachOObjectFile *O, const char *sect, uint32_t size, uint32_t addr) argument
5858 DumpBitcodeSection(MachOObjectFile *O, const char *sect, uint32_t size, bool verbose, bool PrintXarHeader, bool PrintXarFileHeaders, std::string XarMemberName) argument
[all...]
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DMachO.h1054 inline void swapStruct(section_64 &sect) { argument
1055 sys::swapByteOrder(sect.addr);
1056 sys::swapByteOrder(sect.size);
1057 sys::swapByteOrder(sect.offset);
1058 sys::swapByteOrder(sect.align);
1059 sys::swapByteOrder(sect.reloff);
1060 sys::swapByteOrder(sect.nreloc);
1061 sys::swapByteOrder(sect.flags);
1062 sys::swapByteOrder(sect.reserved1);
1063 sys::swapByteOrder(sect
1066 swapStruct(section &sect) argument
[all...]

Completed in 838 milliseconds

12