HomeSort by relevance Sort by last modified time
    Searched refs:pStart (Results 1 - 25 of 42) sorted by null

1 2

  /external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/java/
Main.java 155 long pStart = System.currentTimeMillis();
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/
fpdf_parser_utility.cpp 73 void CPDF_SimpleParser::ParseWord(const uint8_t*& pStart,
76 pStart = NULL;
103 pStart = m_pData + start_pos;
158 const uint8_t* pStart;
161 ParseWord(pStart, dwSize, type);
162 if (dwSize == 1 && pStart[0] == '<') {
169 return CFX_ByteStringC(pStart,
170 (FX_STRSIZE)(m_dwCurPos - (pStart - m_pData)));
172 if (dwSize == 1 && pStart[0] == '(') {
197 return CFX_ByteStringC(pStart,
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
BlockFieldMatrix.java 234 final int pStart = iBlock * BLOCK_SIZE;
235 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows);
236 final int iHeight = pEnd - pStart;
248 for (int p = pStart; p < pEnd; ++p) {
286 final int pStart = iBlock * BLOCK_SIZE;
287 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows);
288 final int iHeight = pEnd - pStart;
346 final int pStart = iBlock * BLOCK_SIZE;
347 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows);
351 for (int p = pStart; p < pEnd; ++p)
    [all...]
BlockRealMatrix.java 228 final int pStart = iBlock * BLOCK_SIZE;
229 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows);
230 final int iHeight = pEnd - pStart;
242 for (int p = pStart; p < pEnd; ++p) {
276 final int pStart = iBlock * BLOCK_SIZE;
277 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows);
278 final int iHeight = pEnd - pStart;
336 final int pStart = iBlock * BLOCK_SIZE;
337 final int pEnd = FastMath.min(pStart + BLOCK_SIZE, rows);
341 for (int p = pStart; p < pEnd; ++p)
    [all...]
  /external/icu/icu4c/source/samples/layout/
paragraph.cpp 101 LEUnicode *pStart = &fChars[0];
103 while (*pStart != 0) {
104 LEUnicode *pEnd = u_strpbrk(pStart, separators);
112 if (pEnd != pStart) {
113 subsetFontRuns(fontRuns, pStart - fChars, pEnd - fChars, &fr);
115 paragraphLayout = new ParagraphLayout(pStart, pEnd - pStart, &fr, NULL, NULL, locales, fParagraphLevel, FALSE, status);
154 pStart = skipLineEnd(pEnd);
pflow.c 116 LEUnicode *pStart;
153 pStart = &flow->fChars[0];
155 while (*pStart != 0) {
156 LEUnicode *pEnd = u_strpbrk(pStart, separators);
164 if (pEnd != pStart) {
165 subsetFontRuns(fontRuns, pStart - flow->fChars, pEnd - flow->fChars, fr);
169 pl_addLocaleRun(locales, TEST_LOCALE, pEnd - pStart);
172 paragraphLayout = pl_create(pStart, pEnd - pStart, fr, NULL, NULL, locales, flow->fParagraphLevel, FALSE, status);
210 pStart = skipLineEnd(pEnd)
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
uparse.h 132 uint32_t *pStart, uint32_t *pEnd,
142 uint32_t *pStart, uint32_t *pEnd,
uparse.c 297 uint32_t *pStart, uint32_t *pEnd,
306 if(s==NULL || pStart==NULL || pEnd==NULL) {
318 *pStart=*pEnd=value;
337 if(value<*pStart) {
343 return value-*pStart+1;
348 uint32_t *pStart, uint32_t *pEnd,
352 u_parseCodePointRangeAnyTerminator(s, pStart, pEnd, &terminator, pErrorCode);
ucbuf.c 59 const char* pStart;
82 pStart = start;
83 ucnv_toUnicode(*conv, &pTarget, target+1, &pStart, start+*signatureLength, NULL, FALSE, error);
84 *signatureLength = (int32_t)(pStart - start);
589 const char* pStart;
597 pStart = start;
598 ucnv_toUnicode(buf->conv, &pTarget, target+1, &pStart, start+numRead, NULL, FALSE, error);
  /external/pdfium/xfa/src/fgas/src/crt/
fx_system.cpp 139 FX_DWORD* pStart = (FX_DWORD*)pBuf;
140 FX_DWORD* pEnd = pStart + (size >> 2);
141 while (pStart < pEnd) {
142 *pStart++ = iValue;
148 FX_DWORD* pStart = (FX_DWORD*)pDst;
149 FX_DWORD* pEnd = pStart + (size >> 2);
151 while (pStart < pEnd) {
152 *pStart++ = *pValue++;
fx_memory.cpp 145 uint8_t* pStart = NULL;
148 pStart = pChunk->FirstBlock();
149 if (pBlock >= pStart) {
150 pEnd = pStart + m_iBlockSize * pChunk->iChunkSize;
158 size_t iPos = ((uint8_t*)pBlock - pStart) / m_iBlockSize;
  /frameworks/av/media/libeffects/lvm/lib/Bundle/src/
LVM_Buffers.c 61 LVM_INT16 *pStart;
88 pStart = pInstance->pInputSamples; /* Pointer to the input samples */
149 Copy_16(pStart, /* Source */
152 pStart += NumChannels * NumSamples; /* Update the input pointer */
165 pInstance->pInputSamples = pStart; /* Update input sample pointer */
175 pStart = pBuffer->pScratch; /* Start of the buffer */
176 pStart += NumChannels*SampleCount; /* Offset by the number of processed samples */
179 Copy_16(pStart, /* Source */
535 LVM_INT16 *pStart;
543 pStart = pBuffer->pScratch
    [all...]
  /external/pdfium/xfa/src/fxfa/src/fm2js/
xfa_lexer.cpp 433 const FX_WCHAR* pStart = p;
441 t->m_wstring = CFX_WideStringC(pStart, (pEnd - pStart));
450 t->m_wstring = CFX_WideStringC(pStart, (pEnd - pStart));
466 t->m_wstring = CFX_WideStringC(pStart, (pEnd - pStart));
472 const FX_WCHAR* pStart = p;
478 t->m_wstring = CFX_WideStringC(pStart, (pEnd - pStart));
    [all...]
  /hardware/ti/omap4-aah/camera/
CameraHalUtilClasses.cpp 205 char *pStart = NULL;
235 pStart = pArea;
236 if ( NULL == pStart )
244 left = static_cast<ssize_t>(strtol(pStart, &pEnd, 10));
  /hardware/ti/omap4xxx/camera/
CameraHalUtilClasses.cpp 207 char *pStart = NULL;
237 pStart = pArea;
238 if ( NULL == pStart )
246 left = static_cast<ssize_t>(strtol(pStart, &pEnd, 10));
  /external/pdfium/xfa/src/fdp/src/css/
fde_cssstylesheet.cpp 387 const FX_WCHAR* pStart = psz;
396 return psz - pStart;
399 const FX_WCHAR* pStart = psz;
409 return psz - pStart;
415 const FX_WCHAR* pStart = psz;
427 for (psz = pStart; psz < pEnd;) {
430 if (psz == pStart || psz[-1] == ' ') {
fde_cssdatatable.h 107 const FX_WCHAR*& pStart,
  /external/pdfium/core/src/fxcrt/
fx_basic_bstring.cpp 857 const FX_CHAR* pStart = m_pData->m_String;
860 const FX_CHAR* pTarget = FX_strstr(pStart, (FX_STRSIZE)(pEnd - pStart),
866 pStart = pTarget + nSourceLen;
881 pStart = m_pData->m_String;
884 const FX_CHAR* pTarget = FX_strstr(pStart, (FX_STRSIZE)(pEnd - pStart),
886 FXSYS_memcpy(pDest, pStart, pTarget - pStart);
887 pDest += pTarget - pStart;
    [all...]
fx_arabic.cpp 320 FX_WCHAR* pStart = (FX_WCHAR*)(const FX_WCHAR*)wsText;
321 pStart += iStart;
322 FX_WCHAR* pEnd = pStart + iCount - 1;
323 while (pStart < pEnd) {
324 wch = *pStart;
325 *pStart++ = *pEnd;
827 baseType *pStart, *pEnd;
830 pStart = chars.GetDataPtr(iStart++);
832 iTemp = pStart->m_iBidiPos;
833 pStart->m_iBidiPos = pEnd->m_iBidiPos
    [all...]
  /system/bt/bta/dm/
bta_dm_sco.c 86 #define CONVERT_44100_TO_BLUETOOTH(pStart, pEnd) \
89 SRC_TYPE *pS = (SRC_TYPE *)pStart; \
140 #define CONVERT_22050_TO_BLUETOOTH(pStart, pEnd) \
143 SRC_TYPE *pS = (SRC_TYPE *)pStart; \
193 #define CONVERT_11025_TO_BLUETOOTH(pStart, pEnd) \
196 SRC_TYPE *pS = (SRC_TYPE *)pStart; \
  /external/icu/icu4c/source/common/
uset.cpp 303 // UChar32* pStart, UChar32* pEnd) {
308 // *pStart = us->getRangeStart(rangeIndex);
476 UChar32* pStart, UChar32* pEnd) {
480 if(set==NULL || rangeIndex<0 || pStart==NULL || pEnd==NULL) {
490 *pStart=array[rangeIndex++];
505 *pStart=(((int32_t)array[rangeIndex])<<16)|array[rangeIndex+1];
  /external/pdfium/xfa/src/fgas/include/
fx_utl.h 156 uint8_t** pStart = CFX_BaseArray::GetAt(iSize);
160 FXTARGET_NewWith((void*)pStart) baseType(src.GetAt(i));
161 pStart += iBlockSize;
185 uint8_t** pStart = CFX_BaseArray::GetAt(0);
189 new ((void*)pStart) baseType(src.GetAt(i));
190 pStart += iBlockSize;
  /external/gptfdisk/
basicmbr.cc 779 uint64_t firstLogical, lastLogical, lStart, pStart;
801 pStart = partitions[j].GetStartLBA();
802 if (((pStart < lStart) && (firstLogical < pStart)) ||
803 ((pStart > lStart) && (firstLogical > pStart))) {
    [all...]
  /external/pdfium/fpdfsdk/src/javascript/
PublicMethods.cpp 211 const FX_WCHAR* pStart = NULL;
215 if (!pStart && c != L' ') {
216 pStart = p;
223 if (!pStart) {
228 while (pEnd != pStart) {
236 p = pStart;
286 if (p != pStart && !bDot && bDigitExist) {
    [all...]
  /external/pdfium/xfa/src/fdp/src/xml/
fde_xml.cpp 130 const FX_WCHAR* pStart = pPath;
133 while (pStart < pEnd) {
134 ch = *pStart++;
141 iLength -= pStart - pPath;
163 pFind = pNode->GetPath(pStart, iLength, bQualifiedName);
176 return pFind->GetPath(pStart, iLength, bQualifiedName);
    [all...]

Completed in 1558 milliseconds

1 2