Home
last modified time | relevance | path

Searched refs:pageIndex (Results 1 – 25 of 31) sorted by relevance

12

/external/dng_sdk/source/
Ddng_memory_stream.cpp95 uint32 pageIndex = (uint32) (offset / fPageSize); in DoRead() local
100 const uint8 *sPtr = fPageList [pageIndex]->Buffer_uint8 () + in DoRead()
199 uint32 pageIndex = (uint32) (offset / fPageSize); in DoWrite() local
206 uint8 *dPtr = fPageList [pageIndex]->Buffer_uint8 () + in DoWrite()
248 uint32 pageIndex = (uint32) (offset / fPageSize); in CopyToStream() local
253 const uint8 *sPtr = fPageList [pageIndex]->Buffer_uint8 () + in CopyToStream()
/external/jsoncpp/src/lib_json/
Djson_internalarray.inl215 PageIndex pageIndex = index / itemsPerPage; local
217 pages_[pageIndex] = value;
240 for (PageIndex pageIndex = 0; pageIndex < lastPageIndex; ++pageIndex) local
241 arrayAllocator()->releaseArrayPage(pages_[pageIndex]);
275 PageIndex pageIndex = (newSize + itemsPerPage - 1) / itemsPerPage; local
277 for (; pageIndex < lastPageIndex; ++pageIndex)
278 arrayAllocator()->releaseArrayPage(pages_[pageIndex]);
298 PageIndex pageIndex = nextPageIndex / itemsPerPage; local
300 for (; pageToAllocate-- > 0; ++pageIndex)
301 pages_[pageIndex] = arrayAllocator()->allocateArrayPage();
/external/skia/src/gpu/
DGrDrawOpAtlas.cpp58 GrDrawOpAtlas::Plot::Plot(int pageIndex, int plotIndex, uint64_t genID, int offX, int offY, in Plot() argument
63 , fPageIndex(pageIndex) in Plot()
379 for (uint32_t pageIndex = 0; pageIndex < fNumActivePages; ++pageIndex) { in compact() local
380 plotIter.init(fPages[pageIndex].fPlotList, PlotList::Iter::kHead_IterStart); in compact()
402 for (uint32_t pageIndex = 0; pageIndex < lastPageIndex; ++pageIndex) { in compact() local
405 SkDebugf("page %d: ", pageIndex); in compact()
408 plotIter.init(fPages[pageIndex].fPlotList, PlotList::Iter::kHead_IterStart); in compact()
DGrGlyph.h91 uint32_t pageIndex() const { return GrDrawOpAtlas::GetPageIndexFromID(fID); } in pageIndex() function
DGrDrawOpAtlas.h299 … Plot(int pageIndex, int plotIndex, uint64_t genID, int offX, int offY, int width, int height,
/external/skqp/src/gpu/
DGrDrawOpAtlas.cpp58 GrDrawOpAtlas::Plot::Plot(int pageIndex, int plotIndex, uint64_t genID, int offX, int offY, in Plot() argument
63 , fPageIndex(pageIndex) in Plot()
379 for (uint32_t pageIndex = 0; pageIndex < fNumActivePages; ++pageIndex) { in compact() local
380 plotIter.init(fPages[pageIndex].fPlotList, PlotList::Iter::kHead_IterStart); in compact()
402 for (uint32_t pageIndex = 0; pageIndex < lastPageIndex; ++pageIndex) { in compact() local
405 SkDebugf("page %d: ", pageIndex); in compact()
408 plotIter.init(fPages[pageIndex].fPlotList, PlotList::Iter::kHead_IterStart); in compact()
DGrGlyph.h91 uint32_t pageIndex() const { return GrDrawOpAtlas::GetPageIndexFromID(fID); } in pageIndex() function
DGrDrawOpAtlas.h299 … Plot(int pageIndex, int plotIndex, uint64_t genID, int offX, int offY, int width, int height,
/external/skqp/src/gpu/text/
DGrTextBlobVertexRegenerator.cpp67 uint32_t pageIndex = glyph->pageIndex(); in regen_texcoords() local
68 SkASSERT(pageIndex < 4); in regen_texcoords()
69 uint16_t uBit = (pageIndex >> 1) & 0x1; in regen_texcoords()
70 uint16_t vBit = pageIndex & 0x1; in regen_texcoords()
97 switch (pageIndex) { in regen_texcoords()
/external/skia/src/gpu/text/
DGrTextBlobVertexRegenerator.cpp67 uint32_t pageIndex = glyph->pageIndex(); in regen_texcoords() local
68 SkASSERT(pageIndex < 4); in regen_texcoords()
69 uint16_t uBit = (pageIndex >> 1) & 0x1; in regen_texcoords()
70 uint16_t vBit = pageIndex & 0x1; in regen_texcoords()
97 switch (pageIndex) { in regen_texcoords()
/external/skqp/src/pdf/
DSkPDFTag.cpp122 int SkPDFTagTree::getMarkIdForNodeId(int nodeId, unsigned pageIndex) { in getMarkIdForNodeId() argument
132 while (fMarksPerPage.size() < pageIndex + 1) { in getMarkIdForNodeId()
135 SkTArray<SkPDFTagNode*>& pageMarks = fMarksPerPage[pageIndex]; in getMarkIdForNodeId()
137 tag->fMarkedContent.push_back({pageIndex, markId}); in getMarkIdForNodeId()
DSkPDFTag.h25 int getMarkIdForNodeId(int nodeId, unsigned pageIndex);
DSkPDFDocument.cpp434 SkPDFIndirectReference SkPDFDocument::getPage(size_t pageIndex) const { in getPage()
435 SkASSERT(pageIndex < fPageRefs.size()); in getPage()
436 return fPageRefs[pageIndex]; in getPage()
DSkPDFDocumentPriv.h86 SkPDFIndirectReference getPage(size_t pageIndex) const;
/external/skia/src/pdf/
DSkPDFTag.cpp122 int SkPDFTagTree::getMarkIdForNodeId(int nodeId, unsigned pageIndex) { in getMarkIdForNodeId() argument
132 while (fMarksPerPage.size() < pageIndex + 1) { in getMarkIdForNodeId()
135 SkTArray<SkPDFTagNode*>& pageMarks = fMarksPerPage[pageIndex]; in getMarkIdForNodeId()
137 tag->fMarkedContent.push_back({pageIndex, markId}); in getMarkIdForNodeId()
DSkPDFTag.h25 int getMarkIdForNodeId(int nodeId, unsigned pageIndex);
DSkPDFDocument.cpp433 SkPDFIndirectReference SkPDFDocument::getPage(size_t pageIndex) const { in getPage()
434 SkASSERT(pageIndex < fPageRefs.size()); in getPage()
435 return fPageRefs[pageIndex]; in getPage()
DSkPDFDocumentPriv.h86 SkPDFIndirectReference getPage(size_t pageIndex) const;
/external/skia/tools/flags/
DSkCommonFlagsConfig.cpp500 const SkTArray<SkString>& viaParts, int pageIndex) in SkCommandLineConfigSvg() argument
501 : SkCommandLineConfig(tag, SkString("svg"), viaParts), fPageIndex(pageIndex) {} in SkCommandLineConfigSvg()
507 int pageIndex = 0; in parse_command_line_config_svg() local
515 bool validOptions = extendedOptions.get_option_int("page", &pageIndex); in parse_command_line_config_svg()
521 return new SkCommandLineConfigSvg(tag, vias, pageIndex); in parse_command_line_config_svg()
DSkCommonFlagsConfig.h97 SkCommandLineConfigSvg(const SkString& tag, const SkTArray<SkString>& viaParts, int pageIndex);
/external/skqp/tools/flags/
DSkCommonFlagsConfig.cpp496 const SkTArray<SkString>& viaParts, int pageIndex) in SkCommandLineConfigSvg() argument
497 : SkCommandLineConfig(tag, SkString("svg"), viaParts), fPageIndex(pageIndex) {} in SkCommandLineConfigSvg()
503 int pageIndex = 0; in parse_command_line_config_svg() local
511 bool validOptions = extendedOptions.get_option_int("page", &pageIndex); in parse_command_line_config_svg()
517 return new SkCommandLineConfigSvg(tag, vias, pageIndex); in parse_command_line_config_svg()
DSkCommonFlagsConfig.h97 SkCommandLineConfigSvg(const SkString& tag, const SkTArray<SkString>& viaParts, int pageIndex);
/external/skqp/src/gpu/ops/
DGrSmallPathRenderer.cpp630 uint16_t pageIndex = GrDrawOpAtlas::GetPageIndexFromID(id); in addDFPathToAtlas() local
631 SkASSERT(pageIndex < 4); in addDFPathToAtlas()
632 uint16_t uBit = (pageIndex >> 1) & 0x1; in addDFPathToAtlas()
633 uint16_t vBit = pageIndex & 0x1; in addDFPathToAtlas()
728 uint16_t pageIndex = GrDrawOpAtlas::GetPageIndexFromID(id); in addBMPathToAtlas() local
729 SkASSERT(pageIndex < 4); in addBMPathToAtlas()
730 uint16_t uBit = (pageIndex >> 1) & 0x1; in addBMPathToAtlas()
731 uint16_t vBit = pageIndex & 0x1; in addBMPathToAtlas()
/external/skia/src/gpu/ops/
DGrSmallPathRenderer.cpp629 uint16_t pageIndex = GrDrawOpAtlas::GetPageIndexFromID(id); in addDFPathToAtlas() local
630 SkASSERT(pageIndex < 4); in addDFPathToAtlas()
631 uint16_t uBit = (pageIndex >> 1) & 0x1; in addDFPathToAtlas()
632 uint16_t vBit = pageIndex & 0x1; in addDFPathToAtlas()
727 uint16_t pageIndex = GrDrawOpAtlas::GetPageIndexFromID(id); in addBMPathToAtlas() local
728 SkASSERT(pageIndex < 4); in addBMPathToAtlas()
729 uint16_t uBit = (pageIndex >> 1) & 0x1; in addBMPathToAtlas()
730 uint16_t vBit = pageIndex & 0x1; in addBMPathToAtlas()
/external/libunwind_llvm/src/
DUnwindCursor.hpp1584 UnwindSectionRegularArray<A> pageIndex( in getInfoFromCompactEncodingSection() local
1596 if (pageIndex.functionOffset(mid) <= targetFunctionOffset) { in getInfoFromCompactEncodingSection()
1602 } else if (pageIndex.functionOffset(mid + 1) > targetFunctionOffset) { in getInfoFromCompactEncodingSection()
1605 funcEnd = pageIndex.functionOffset(low + 1) + sects.dso_base; in getInfoFromCompactEncodingSection()
1614 encoding = pageIndex.encoding(low); in getInfoFromCompactEncodingSection()
1615 funcStart = pageIndex.functionOffset(low) + sects.dso_base; in getInfoFromCompactEncodingSection()
1636 UnwindSectionCompressedArray<A> pageIndex( in getInfoFromCompactEncodingSection() local
1651 if (pageIndex.functionOffset(mid) <= targetFunctionPageOffset) { in getInfoFromCompactEncodingSection()
1653 (pageIndex.functionOffset(mid + 1) > targetFunctionPageOffset)) { in getInfoFromCompactEncodingSection()
1663 funcStart = pageIndex.functionOffset(low) + firstLevelFunctionOffset in getInfoFromCompactEncodingSection()
[all …]

12