Home
last modified time | relevance | path

Searched refs:pStart (Results 1 – 25 of 29) sorted by relevance

12

/external/pdfium/core/fpdfapi/parser/
Dcpdf_simple_parser.cpp18 const uint8_t* pStart = nullptr; in ParseWord() local
23 return std::make_pair(pStart, dwSize); in ParseWord()
27 return std::make_pair(pStart, dwSize); in ParseWord()
36 return std::make_pair(pStart, dwSize); in ParseWord()
44 pStart = m_pData + start_pos; in ParseWord()
49 return std::make_pair(pStart, dwSize); in ParseWord()
54 return std::make_pair(pStart, dwSize); in ParseWord()
61 return std::make_pair(pStart, dwSize); in ParseWord()
69 return std::make_pair(pStart, dwSize); in ParseWord()
77 return std::make_pair(pStart, dwSize); in ParseWord()
[all …]
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
DBlockRealMatrix.java228 final int pStart = iBlock * BLOCK_SIZE; in toBlocksLayout() local
229 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows); in toBlocksLayout()
230 final int iHeight = pEnd - pStart; in toBlocksLayout()
242 for (int p = pStart; p < pEnd; ++p) { in toBlocksLayout()
276 final int pStart = iBlock * BLOCK_SIZE; in createBlocksLayout() local
277 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows); in createBlocksLayout()
278 final int iHeight = pEnd - pStart; in createBlocksLayout()
336 final int pStart = iBlock * BLOCK_SIZE; in add()
337 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows); in add()
341 for (int p = pStart; p < pEnd; ++p) { in add()
[all …]
DBlockFieldMatrix.java234 final int pStart = iBlock * BLOCK_SIZE; in toBlocksLayout() local
235 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows); in toBlocksLayout()
236 final int iHeight = pEnd - pStart; in toBlocksLayout()
248 for (int p = pStart; p < pEnd; ++p) { in toBlocksLayout()
286 final int pStart = iBlock * BLOCK_SIZE; in createBlocksLayout() local
287 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows); in createBlocksLayout()
288 final int iHeight = pEnd - pStart; in createBlocksLayout()
346 final int pStart = iBlock * BLOCK_SIZE; in add()
347 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows); in add()
351 for (int p = pStart; p < pEnd; ++p) { in add()
[all …]
/external/pdfium/core/fxcrt/css/
Dcfx_cssvaluelistparser.cpp19 const wchar_t** pStart, in NextValue() argument
28 *pStart = m_pCur; in NextValue()
39 *iLength = m_pCur - *pStart; in NextValue()
42 ++(*pStart); in NextValue()
63 const wchar_t* pStart = m_pCur; in SkipTo() local
86 return m_pCur - pStart; in SkipTo()
Dcfx_cssselector.cpp17 const wchar_t* pStart = psz; in GetCSSNameLen() local
24 return psz - pStart; in GetCSSNameLen()
56 const wchar_t* pStart = psz; in FromString() local
68 for (psz = pStart; psz < pEnd;) { in FromString()
Dcfx_cssvaluelistparser.h18 const wchar_t** pStart,
/external/antlr/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/java/
DMain.java155 long pStart = System.currentTimeMillis(); local
158 System.out.println(" Parsed in " + (stop - pStart) + "ms.");
182 pStart = System.currentTimeMillis();
185 … System.out.println("${symbol_escape}n AST Walked in " + (stop - pStart) + "ms.");
228 pStart = System.currentTimeMillis();
232 System.out.println(" PNG graphic produced in " + (stop - pStart) + "ms.");
/external/icu/icu4c/source/samples/layout/
Dpflow.c119 LEUnicode *pStart; in pf_create() local
156 pStart = &flow->fChars[0]; in pf_create()
158 while (*pStart != 0) { in pf_create()
159 LEUnicode *pEnd = u_strpbrk(pStart, separators); in pf_create()
167 if (pEnd != pStart) { in pf_create()
168 subsetFontRuns(fontRuns, pStart - flow->fChars, pEnd - flow->fChars, fr); in pf_create()
172 pl_addLocaleRun(locales, TEST_LOCALE, pEnd - pStart); in pf_create()
175 …paragraphLayout = pl_create(pStart, pEnd - pStart, fr, NULL, NULL, locales, flow->fParagraphLevel,… in pf_create()
213 pStart = skipLineEnd(pEnd); in pf_create()
Dparagraph.cpp107 LEUnicode *pStart = &fChars[0]; in Paragraph() local
109 while (*pStart != 0) { in Paragraph()
110 LEUnicode *pEnd = u_strpbrk(pStart, separators); in Paragraph()
118 if (pEnd != pStart) { in Paragraph()
119 subsetFontRuns(fontRuns, pStart - fChars, pEnd - fChars, &fr); in Paragraph()
121 …paragraphLayout = new ParagraphLayout(pStart, pEnd - pStart, &fr, NULL, NULL, locales, fParagraphL… in Paragraph()
160 pStart = skipLineEnd(pEnd); in Paragraph()
/external/icu/icu4c/source/tools/toolutil/
Duparse.cpp299 uint32_t *pStart, uint32_t *pEnd, in u_parseCodePointRangeAnyTerminator() argument
308 if(s==NULL || pStart==NULL || pEnd==NULL) { in u_parseCodePointRangeAnyTerminator()
320 *pStart=*pEnd=value; in u_parseCodePointRangeAnyTerminator()
339 if(value<*pStart) { in u_parseCodePointRangeAnyTerminator()
345 return value-*pStart+1; in u_parseCodePointRangeAnyTerminator()
350 uint32_t *pStart, uint32_t *pEnd, in u_parseCodePointRange() argument
354 u_parseCodePointRangeAnyTerminator(s, pStart, pEnd, &terminator, pErrorCode); in u_parseCodePointRange()
Duparse.h134 uint32_t *pStart, uint32_t *pEnd,
144 uint32_t *pStart, uint32_t *pEnd,
Ducbuf.cpp61 const char* pStart; in ucbuf_autodetect_fs() local
84 pStart = start; in ucbuf_autodetect_fs()
85 ucnv_toUnicode(*conv, &pTarget, target+1, &pStart, start+*signatureLength, NULL, FALSE, error); in ucbuf_autodetect_fs()
86 *signatureLength = (int32_t)(pStart - start); in ucbuf_autodetect_fs()
591 const char* pStart; in ucbuf_rewind() local
599 pStart = start; in ucbuf_rewind()
600 … ucnv_toUnicode(buf->conv, &pTarget, target+1, &pStart, start+numRead, NULL, FALSE, error); in ucbuf_rewind()
/external/pdfium/core/fxcrt/
Dbytestring.cpp652 const char* pStart = m_pData->m_String; in Replace() local
655 const char* pTarget = FX_strstr(pStart, static_cast<int>(pEnd - pStart), in Replace()
661 pStart = pTarget + nSourceLen; in Replace()
675 pStart = m_pData->m_String; in Replace()
678 const char* pTarget = FX_strstr(pStart, static_cast<int>(pEnd - pStart), in Replace()
680 memcpy(pDest, pStart, pTarget - pStart); in Replace()
681 pDest += pTarget - pStart; in Replace()
684 pStart = pTarget + nSourceLen; in Replace()
686 memcpy(pDest, pStart, pEnd - pStart); in Replace()
Dwidestring.cpp822 const wchar_t* pStart = m_pData->m_String; in Replace() local
826 FX_wcsstr(pStart, static_cast<size_t>(pEnd - pStart), in Replace()
832 pStart = pTarget + nSourceLen; in Replace()
846 pStart = m_pData->m_String; in Replace()
850 FX_wcsstr(pStart, static_cast<size_t>(pEnd - pStart), in Replace()
852 wmemcpy(pDest, pStart, pTarget - pStart); in Replace()
853 pDest += pTarget - pStart; in Replace()
856 pStart = pTarget + nSourceLen; in Replace()
858 wmemcpy(pDest, pStart, pEnd - pStart); in Replace()
/external/pdfium/core/fxcrt/xml/
Dcfx_xmlnode.cpp88 const wchar_t* pStart = pPath; in GetPath() local
91 while (pStart < pEnd) { in GetPath()
92 ch = *pStart++; in GetPath()
97 iLength -= pStart - pPath; in GetPath()
119 pFind = pNode->GetPath(pStart, iLength, bQualifiedName); in GetPath()
130 return pFind->GetPath(pStart, iLength, bQualifiedName); in GetPath()
/external/swiftshader/third_party/PowerVR_SDK/Tools/
DPVRTUnicode.cpp236 const PVRTuint8* pStart = pC; in PVRTUnicodeUTF8Length() local
240 charCount += (unsigned int) (pC - pStart); in PVRTUnicodeUTF8Length()
/external/icu/icu4c/source/common/
Duset.cpp478 UChar32* pStart, UChar32* pEnd) { in uset_getSerializedRange() argument
482 if(set==NULL || rangeIndex<0 || pStart==NULL || pEnd==NULL) { in uset_getSerializedRange()
492 *pStart=array[rangeIndex++]; in uset_getSerializedRange()
507 *pStart=(((int32_t)array[rangeIndex])<<16)|array[rangeIndex+1]; in uset_getSerializedRange()
Dumutablecptrie.cpp586 int32_t findSameBlock(const uint16_t *p, int32_t pStart, int32_t length, in findSameBlock() argument
592 while (pStart <= length) { in findSameBlock()
593 if (equalBlocks(p + pStart, q, blockLength)) { in findSameBlock()
594 return pStart; in findSameBlock()
596 ++pStart; in findSameBlock()
/external/gptfdisk/
Dbasicmbr.cc781 uint64_t firstLogical, lastLogical, lStart, pStart; in UpdateCanBeLogical() local
803 pStart = partitions[j].GetStartLBA(); in UpdateCanBeLogical()
804 if (((pStart < lStart) && (firstLogical < pStart)) || in UpdateCanBeLogical()
805 ((pStart > lStart) && (firstLogical > pStart))) { in UpdateCanBeLogical()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DMutableCodePointTrie.java547 private static int findSameBlock(char[] p, int pStart, int length, in findSameBlock() argument
552 while (pStart <= length) { in findSameBlock()
553 if (equalBlocks(p, pStart, q, qStart, blockLength)) { in findSameBlock()
554 return pStart; in findSameBlock()
556 ++pStart; in findSameBlock()
/external/icu/android_icu4j/src/main/java/android/icu/util/
DMutableCodePointTrie.java540 private static int findSameBlock(char[] p, int pStart, int length, in findSameBlock() argument
545 while (pStart <= length) { in findSameBlock()
546 if (equalBlocks(p, pStart, q, qStart, blockLength)) { in findSameBlock()
547 return pStart; in findSameBlock()
549 ++pStart; in findSameBlock()
/external/icu/icu4c/source/common/unicode/
Duset.h1132 UChar32* pStart, UChar32* pEnd);
/external/icu/libandroidicu/include/unicode/
Duset.h1132 UChar32* pStart, UChar32* pEnd);
/external/lz4/lib/
Dlz4.c423 const BYTE* const pStart = pIn; in LZ4_count() local
437 return (unsigned)(pIn - pStart); in LZ4_count()
443 return (unsigned)(pIn - pStart); in LZ4_count()
/external/sqlite/dist/orig/
Dshell.c261 static double timeDiff(struct timeval *pStart, struct timeval *pEnd){ in timeDiff() argument
262 return (pEnd->tv_usec - pStart->tv_usec)*0.000001 + in timeDiff()
263 (double)(pEnd->tv_sec - pStart->tv_sec); in timeDiff()
337 static double timeDiff(FILETIME *pStart, FILETIME *pEnd){ in timeDiff() argument
338 sqlite_int64 i64Start = *((sqlite_int64 *) pStart); in timeDiff()

12