Searched defs:pStart (Results 1 - 25 of 29) sorted by relevance

12

/external/icu/icu4c/source/tools/toolutil/
H A Duparse.c297 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);
296 u_parseCodePointRangeAnyTerminator(const char *s, uint32_t *pStart, uint32_t *pEnd, const char **terminator, UErrorCode *pErrorCode) argument
347 u_parseCodePointRange(const char *s, uint32_t *pStart, uint32_t *pEnd, UErrorCode *pErrorCode) argument
H A Ducbuf.c59 const char* pStart; local
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; local
597 pStart = start;
598 ucnv_toUnicode(buf->conv, &pTarget, target+1, &pStart, start+numRead, NULL, FALSE, error);
/external/icu/icu4c/source/samples/layout/
H A Dparagraph.cpp101 LEUnicode *pStart = &fChars[0]; local
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);
H A Dpflow.c116 LEUnicode *pStart; local
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
[all...]
/external/pdfium/core/src/fpdfapi/fpdf_parser/
H A Dfpdf_parser_utility.cpp73 void CPDF_SimpleParser::ParseWord(const uint8_t*& pStart, argument
76 pStart = NULL;
103 pStart = m_pData + start_pos;
158 const uint8_t* pStart; local
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/pdfium/xfa/src/fdp/src/css/
H A Dfde_cssstylesheet.cpp387 const FX_WCHAR* pStart = psz; local
396 return psz - pStart;
399 const FX_WCHAR* pStart = psz; local
409 return psz - pStart;
415 const FX_WCHAR* pStart = psz; local
427 for (psz = pStart; psz < pEnd;) {
430 if (psz == pStart || psz[-1] == ' ') {
H A Dfde_cssdatatable.cpp786 const FX_WCHAR*& pStart,
795 pStart = m_pCur;
808 iLength = m_pCur - pStart;
813 pStart++;
821 pStart += 5;
825 pStart += 4;
844 const FX_WCHAR* pStart = m_pCur; local
880 return m_pCur - pStart;
785 NextValue(FDE_CSSPRIMITIVETYPE& eType, const FX_WCHAR*& pStart, int32_t& iLength) argument
/external/pdfium/xfa/src/fgas/src/crt/
H A Dfx_memory.cpp145 uint8_t* pStart = NULL; local
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;
H A Dfx_system.cpp139 FX_DWORD* pStart = (FX_DWORD*)pBuf; local
140 FX_DWORD* pEnd = pStart + (size >> 2);
141 while (pStart < pEnd) {
142 *pStart++ = iValue;
148 FX_DWORD* pStart = (FX_DWORD*)pDst; local
149 FX_DWORD* pEnd = pStart + (size >> 2);
151 while (pStart < pEnd) {
152 *pStart++ = *pValue++;
/external/pdfium/xfa/src/fxfa/src/fm2js/
H A Dxfa_lexer.cpp433 const FX_WCHAR* pStart = p; local
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; local
478 t->m_wstring = CFX_WideStringC(pStart, (pEnd - pStart));
[all...]
/external/icu/icu4c/source/common/
H A Duset.cpp303 // 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];
475 uset_getSerializedRange(const USerializedSet* set, int32_t rangeIndex, UChar32* pStart, UChar32* pEnd) argument
/external/pdfium/core/src/fxcrt/
H A Dfx_arabic.cpp320 FX_WCHAR* pStart = (FX_WCHAR*)(const FX_WCHAR*)wsText; local
321 pStart += iStart;
322 FX_WCHAR* pEnd = pStart + iCount - 1;
323 while (pStart < pEnd) {
324 wch = *pStart;
325 *pStart++ = *pEnd;
827 baseType *pStart, *pEnd; local
830 pStart = chars.GetDataPtr(iStart++);
832 iTemp = pStart->m_iBidiPos;
833 pStart
[all...]
H A Dfx_basic_bstring.cpp857 const FX_CHAR* pStart = m_pData->m_String; local
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...]
/external/gptfdisk/
H A Dbasicmbr.cc779 uint64_t firstLogical, lastLogical, lStart, pStart; local
801 pStart = partitions[j].GetStartLBA();
802 if (((pStart < lStart) && (firstLogical < pStart)) ||
803 ((pStart > lStart) && (firstLogical > pStart))) {
/external/pdfium/xfa/src/fgas/include/
H A Dfx_utl.h156 uint8_t** pStart = CFX_BaseArray::GetAt(iSize); local
160 FXTARGET_NewWith((void*)pStart) baseType(src.GetAt(i));
161 pStart += iBlockSize;
185 uint8_t** pStart = CFX_BaseArray::GetAt(0); local
189 new ((void*)pStart) baseType(src.GetAt(i));
190 pStart += iBlockSize;
/external/lz4/lib/
H A Dlz4.c396 const BYTE* const pStart = pIn; local
403 return (unsigned)(pIn - pStart);
409 return (unsigned)(pIn - pStart);
/external/pdfium/fpdfsdk/src/javascript/
H A DPublicMethods.cpp211 const FX_WCHAR* pStart = NULL; local
215 if (!pStart && c != L' ') {
216 pStart = p;
223 if (!pStart) {
228 while (pEnd != pStart) {
236 p = pStart;
286 if (p != pStart && !bDot && bDigitExist) {
/external/pdfium/xfa/src/fdp/src/xml/
H A Dfde_xml.cpp130 const FX_WCHAR* pStart = pPath; local
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);
/external/sqlite/dist/orig/
H A Dshell.c206 static double timeDiff(struct timeval *pStart, struct timeval *pEnd){ argument
207 return (pEnd->tv_usec - pStart->tv_usec)*0.000001 +
208 (double)(pEnd->tv_sec - pStart->tv_sec);
284 static double timeDiff(FILETIME *pStart, FILETIME *pEnd){ argument
285 sqlite_int64 i64Start = *((sqlite_int64 *) pStart);
H A Dsqlite3.c11618 u8 bMalloced; /* True if pStart obtained from sqlite3_malloc() */
11623 void *pStart; /* First byte of available memory space */ member in struct:Lookaside
21742 return p>=db->lookaside.pStart && p<db->lookaside.pEnd;
41317 void *pStart, *pEnd; /* Bounds of global page cache memory */ member in struct:PCacheGlobal
61036 u8 * const pStart = &aData[pPg->hdrOffset + 8 + pPg->childPtrSize]; local
95663 sqlite3CreateIndex( Parse *pParse, Token *pName1, Token *pName2, SrcList *pTblName, ExprList *pList, int onError, Token *pStart, Expr *pPIWhere, int sortOrder, int ifNotExist ) argument
119262 WhereTerm *pStart, *pEnd; local
126073 spanSet(ExprSpan *pOut, Token *pStart, Token *pEnd) argument
131458 void *pStart; local
136206 const char *pStart = p; local
136318 fts3GetReverseVarint( char **pp, char *pStart, sqlite3_int64 *pVal ) argument
139338 fts3ReversePoslist(char *pStart, char **ppPoslist) argument
[all...]
/external/sqlite/dist/
H A Dshell.c212 static double timeDiff(struct timeval *pStart, struct timeval *pEnd){ argument
213 return (pEnd->tv_usec - pStart->tv_usec)*0.000001 +
214 (double)(pEnd->tv_sec - pStart->tv_sec);
290 static double timeDiff(FILETIME *pStart, FILETIME *pEnd){ argument
291 sqlite_int64 i64Start = *((sqlite_int64 *) pStart);
H A Dsqlite3.c11618 u8 bMalloced; /* True if pStart obtained from sqlite3_malloc() */
11623 void *pStart; /* First byte of available memory space */ member in struct:Lookaside
21742 return p>=db->lookaside.pStart && p<db->lookaside.pEnd;
41335 void *pStart, *pEnd; /* Bounds of global page cache memory */ member in struct:PCacheGlobal
61054 u8 * const pStart = &aData[pPg->hdrOffset + 8 + pPg->childPtrSize]; local
95681 sqlite3CreateIndex( Parse *pParse, Token *pName1, Token *pName2, SrcList *pTblName, ExprList *pList, int onError, Token *pStart, Expr *pPIWhere, int sortOrder, int ifNotExist ) argument
119280 WhereTerm *pStart, *pEnd; local
126091 spanSet(ExprSpan *pOut, Token *pStart, Token *pEnd) argument
131476 void *pStart; local
136224 const char *pStart = p; local
136336 fts3GetReverseVarint( char **pp, char *pStart, sqlite3_int64 *pVal ) argument
139356 fts3ReversePoslist(char *pStart, char **ppPoslist) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.team.core_3.5.100.R36x_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 884 milliseconds

12