Home
last modified time | relevance | path

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

12

/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/antlr/antlr-3.4/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/pdfium/core/src/fpdfapi/fpdf_parser/
Dfpdf_parser_utility.cpp58 void CPDF_SimpleParser::ParseWord(FX_LPCBYTE& pStart, FX_DWORD& dwSize, int& type) in ParseWord() argument
60 pStart = NULL; in ParseWord()
93 pStart = m_pData + start_pos; in ParseWord()
156 FX_LPCBYTE pStart; in GetWord() local
159 ParseWord(pStart, dwSize, type); in GetWord()
160 if (dwSize == 1 && pStart[0] == '<') { in GetWord()
167 return CFX_ByteStringC(pStart, (FX_STRSIZE)(m_dwCurPos - (pStart - m_pData))); in GetWord()
168 } else if (dwSize == 1 && pStart[0] == '(') { in GetWord()
193 return CFX_ByteStringC(pStart, (FX_STRSIZE)(m_dwCurPos - (pStart - m_pData))); in GetWord()
195 return CFX_ByteStringC(pStart, dwSize); in GetWord()
/external/icu/icu4c/source/samples/layout/
Dpflow.c116 LEUnicode *pStart; in pf_create() local
153 pStart = &flow->fChars[0]; in pf_create()
155 while (*pStart != 0) { in pf_create()
156 LEUnicode *pEnd = u_strpbrk(pStart, separators); in pf_create()
164 if (pEnd != pStart) { in pf_create()
165 subsetFontRuns(fontRuns, pStart - flow->fChars, pEnd - flow->fChars, fr); in pf_create()
169 pl_addLocaleRun(locales, TEST_LOCALE, pEnd - pStart); in pf_create()
172 …paragraphLayout = pl_create(pStart, pEnd - pStart, fr, NULL, NULL, locales, flow->fParagraphLevel,… in pf_create()
210 pStart = skipLineEnd(pEnd); in pf_create()
Dparagraph.cpp101 LEUnicode *pStart = &fChars[0]; in Paragraph() local
103 while (*pStart != 0) { in Paragraph()
104 LEUnicode *pEnd = u_strpbrk(pStart, separators); in Paragraph()
112 if (pEnd != pStart) { in Paragraph()
113 subsetFontRuns(fontRuns, pStart - fChars, pEnd - fChars, &fr); in Paragraph()
115 …paragraphLayout = new ParagraphLayout(pStart, pEnd - pStart, &fr, NULL, NULL, locales, fParagraphL… in Paragraph()
153 pStart = skipLineEnd(pEnd); in Paragraph()
/external/icu/icu4c/source/tools/toolutil/
Duparse.c297 uint32_t *pStart, uint32_t *pEnd, in u_parseCodePointRangeAnyTerminator() argument
306 if(s==NULL || pStart==NULL || pEnd==NULL) { in u_parseCodePointRangeAnyTerminator()
318 *pStart=*pEnd=value; in u_parseCodePointRangeAnyTerminator()
337 if(value<*pStart) { in u_parseCodePointRangeAnyTerminator()
343 return value-*pStart+1; in u_parseCodePointRangeAnyTerminator()
348 uint32_t *pStart, uint32_t *pEnd, in u_parseCodePointRange() argument
352 u_parseCodePointRangeAnyTerminator(s, pStart, pEnd, &terminator, pErrorCode); in u_parseCodePointRange()
Duparse.h132 uint32_t *pStart, uint32_t *pEnd,
142 uint32_t *pStart, uint32_t *pEnd,
Ducbuf.c59 const char* pStart; in ucbuf_autodetect_fs() local
82 pStart = start; in ucbuf_autodetect_fs()
83 ucnv_toUnicode(*conv, &pTarget, target+1, &pStart, start+*signatureLength, NULL, FALSE, error); in ucbuf_autodetect_fs()
84 *signatureLength = (int32_t)(pStart - start); in ucbuf_autodetect_fs()
589 const char* pStart; in ucbuf_rewind() local
597 pStart = start; in ucbuf_rewind()
598 … ucnv_toUnicode(buf->conv, &pTarget, target+1, &pStart, start+numRead, NULL, FALSE, error); in ucbuf_rewind()
/external/pdfium/core/src/fxcrt/
Dfx_basic_bstring.cpp888 FX_LPCSTR pStart = m_pData->m_String; in Replace() local
891 … FX_LPCSTR pTarget = FX_strstr(pStart, (FX_STRSIZE)(pEnd - pStart), lpszOld.GetCStr(), nSourceLen); in Replace()
896 pStart = pTarget + nSourceLen; in Replace()
910 pStart = m_pData->m_String; in Replace()
913 … FX_LPCSTR pTarget = FX_strstr(pStart, (FX_STRSIZE)(pEnd - pStart), lpszOld.GetCStr(), nSourceLen); in Replace()
914 FXSYS_memcpy32(pDest, pStart, pTarget - pStart); in Replace()
915 pDest += pTarget - pStart; in Replace()
918 pStart = pTarget + nSourceLen; in Replace()
920 FXSYS_memcpy32(pDest, pStart, pEnd - pStart); in Replace()
/external/icu/icu4c/source/common/
Duset.cpp476 UChar32* pStart, UChar32* pEnd) { in uset_getSerializedRange() argument
480 if(set==NULL || rangeIndex<0 || pStart==NULL || pEnd==NULL) { in uset_getSerializedRange()
490 *pStart=array[rangeIndex++]; in uset_getSerializedRange()
505 *pStart=(((int32_t)array[rangeIndex])<<16)|array[rangeIndex+1]; in uset_getSerializedRange()
/external/pdfium/fpdfsdk/src/javascript/
DJS_Runtime.cpp318 void CJS_Runtime::RemoveEventsInLoop(CJS_FieldEvent* pStart) in RemoveEventsInLoop() argument
320 CJS_FieldEvent* p = pStart; in RemoveEventsInLoop()
DPublicMethods.cpp269 FX_LPCWSTR pStart = NULL; in ParseNumber() local
274 if (!pStart && c != L' ') in ParseNumber()
276 pStart = p; in ParseNumber()
283 if (!pStart) in ParseNumber()
289 while (pEnd != pStart) in ParseNumber()
298 p = pStart; in ParseNumber()
360 if (p != pStart && !bDot && bDigitExist) in ParseNumber()
/external/pdfium/fpdfsdk/include/javascript/
DJS_Runtime.h51 void RemoveEventsInLoop(CJS_FieldEvent* pStart);
/external/gptfdisk/
Dbasicmbr.cc779 uint64_t firstLogical, lastLogical, lStart, pStart; in UpdateCanBeLogical() local
801 pStart = partitions[j].GetStartLBA(); in UpdateCanBeLogical()
802 if (((pStart < lStart) && (firstLogical < pStart)) || in UpdateCanBeLogical()
803 ((pStart > lStart) && (firstLogical > pStart))) { in UpdateCanBeLogical()
/external/icu/icu4c/source/common/unicode/
Duset.h1124 UChar32* pStart, UChar32* pEnd);
/external/lz4/lib/
Dlz4.c396 const BYTE* const pStart = pIn; in LZ4_count() local
403 return (unsigned)(pIn - pStart); in LZ4_count()
409 return (unsigned)(pIn - pStart); in LZ4_count()
/external/sqlite/dist/orig/
Dshell.c208 static double timeDiff(struct timeval *pStart, struct timeval *pEnd){ in timeDiff() argument
209 return (pEnd->tv_usec - pStart->tv_usec)*0.000001 + in timeDiff()
210 (double)(pEnd->tv_sec - pStart->tv_sec); in timeDiff()
286 static double timeDiff(FILETIME *pStart, FILETIME *pEnd){ in timeDiff() argument
287 sqlite_int64 i64Start = *((sqlite_int64 *) pStart); in timeDiff()
Dsqlite3.c10958 void *pStart; /* First byte of available memory space */ member
20963 return p>=db->lookaside.pStart && p<db->lookaside.pEnd;
40054 void *pStart, *pEnd; /* Bounds of pagecache malloc range */
40098 pcache1.pStart = pBuf;
40161 if( p>=pcache1.pStart && p<pcache1.pEnd ){
40191 if( p>=pcache1.pStart && p<pcache1.pEnd ){
40937 if( pcache1.pStart==0 ){
59307 u8 * const pStart = &aData[pPg->hdrOffset + 8 + pPg->childPtrSize];
59315 if( pCell>=pStart && pCell<pEnd ){
93641 Token *pStart, /* The CREATE token that begins this statement */
[all …]
/external/sqlite/dist/
Dshell.c214 static double timeDiff(struct timeval *pStart, struct timeval *pEnd){ in timeDiff() argument
215 return (pEnd->tv_usec - pStart->tv_usec)*0.000001 + in timeDiff()
216 (double)(pEnd->tv_sec - pStart->tv_sec); in timeDiff()
292 static double timeDiff(FILETIME *pStart, FILETIME *pEnd){ in timeDiff() argument
293 sqlite_int64 i64Start = *((sqlite_int64 *) pStart); in timeDiff()
Dsqlite3.c10958 void *pStart; /* First byte of available memory space */ member
20963 return p>=db->lookaside.pStart && p<db->lookaside.pEnd;
40072 void *pStart, *pEnd; /* Bounds of pagecache malloc range */
40116 pcache1.pStart = pBuf;
40179 if( p>=pcache1.pStart && p<pcache1.pEnd ){
40209 if( p>=pcache1.pStart && p<pcache1.pEnd ){
40955 if( pcache1.pStart==0 ){
59325 u8 * const pStart = &aData[pPg->hdrOffset + 8 + pPg->childPtrSize];
59333 if( pCell>=pStart && pCell<pEnd ){
93659 Token *pStart, /* The CREATE token that begins this statement */
[all …]
/external/pdfium/core/include/fpdfapi/
Dfpdf_parser.h232 void ParseWord(FX_LPCBYTE& pStart, FX_DWORD& dwSize, int& type);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.team.core_3.5.100.R36x_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...

12