HomeSort by relevance Sort by last modified time
    Searched defs:pEnd (Results 1 - 25 of 28) sorted by null

1 2

  /external/pdfium/core/src/fxcodec/jbig2/
JBig2_Object.cpp 39 FX_BYTE *pCur, *pEnd;
42 pEnd = pCur + size;
43 for(; pCur < pEnd; pCur += unit_size) {
56 FX_BYTE *pCur, *pEnd;
59 pEnd = pCur + size;
60 for(; pCur < pEnd; pCur += unit_size) {
  /external/pdfium/core/src/fpdfapi/fpdf_cmaps/
fpdf_cmaps.cpp 129 const FX_WORD *pEnd = pMap->m_pWordMap + pMap->m_WordCount * 2;
130 while (pCur < pEnd) {
138 const FX_WORD *pEnd = pMap->m_pWordMap + pMap->m_WordCount * 3;
139 while (pCur < pEnd) {
154 const FX_WORD *pEnd = pMap->m_pDWordMap + pMap->m_DWordCount * 4;
155 while (pCur < pEnd) {
163 const FX_WORD *pEnd = pMap->m_pDWordMap + pMap->m_DWordCount * 3;
164 while (pCur < pEnd) {
  /bootable/recovery/minzip/
Hash.c 183 HashEntry* pEnd;
192 pEnd = &pHashTable->pEntries[pHashTable->tableSize];
204 if (pEntry == pEnd) { /* wrap around to start */
258 HashEntry* pEnd;
264 pEnd = &pHashTable->pEntries[pHashTable->tableSize];
275 if (pEntry == pEnd) { /* wrap around to start */
319 HashEntry* pEnd;
328 pEnd = &pHashTable->pEntries[pHashTable->tableSize];
339 if (pEntry == pEnd) { /* wrap around to start */
  /hardware/ti/omap4-aah/camera/
CameraHalUtilClasses.cpp 206 char *pEnd = NULL;
244 left = static_cast<ssize_t>(strtol(pStart, &pEnd, 10));
247 if ( sep != *pEnd )
255 top = static_cast<ssize_t>(strtol(pEnd+1, &pEnd, 10));
258 if ( sep != *pEnd )
266 right = static_cast<ssize_t>(strtol(pEnd+1, &pEnd, 10));
269 if ( sep != *pEnd )
277 bottom = static_cast<ssize_t>(strtol(pEnd+1, &pEnd, 10))
    [all...]
  /hardware/ti/omap4-aah/security/tf_daemon/
lib_manifest2.c 140 uint8_t* pEnd = pContext->pManifestContent + pContext->nManifestLength;
161 while (pCurrent < pEnd)
167 while (pCurrent < pEnd && *pCurrent != CHAR_LF && *pCurrent != CHAR_CR)
181 if (pCurrent < pEnd && *pCurrent == CHAR_LF)
197 while (pCurrent < pEnd)
219 if (pCurrent >= pEnd)
237 if (pCurrent >= pEnd)
250 while (pCurrent < pEnd)
300 if (pCurrent == pEnd)
340 while (pCurrent < pEnd && (*pCurrent == ' ' || *pCurrent == '\t')
    [all...]
  /hardware/ti/omap4xxx/camera/
CameraHalUtilClasses.cpp 208 char *pEnd = NULL;
246 left = static_cast<ssize_t>(strtol(pStart, &pEnd, 10));
249 if ( sep != *pEnd )
257 top = static_cast<ssize_t>(strtol(pEnd+1, &pEnd, 10));
260 if ( sep != *pEnd )
268 right = static_cast<ssize_t>(strtol(pEnd+1, &pEnd, 10));
271 if ( sep != *pEnd )
279 bottom = static_cast<ssize_t>(strtol(pEnd+1, &pEnd, 10))
    [all...]
  /hardware/ti/omap4xxx/security/tf_daemon/
lib_manifest2.c 140 uint8_t* pEnd = pContext->pManifestContent + pContext->nManifestLength;
161 while (pCurrent < pEnd)
167 while (pCurrent < pEnd && *pCurrent != CHAR_LF && *pCurrent != CHAR_CR)
181 if (pCurrent < pEnd && *pCurrent == CHAR_LF)
197 while (pCurrent < pEnd)
219 if (pCurrent >= pEnd)
237 if (pCurrent >= pEnd)
250 while (pCurrent < pEnd)
300 if (pCurrent == pEnd)
340 while (pCurrent < pEnd && (*pCurrent == ' ' || *pCurrent == '\t')
    [all...]
  /packages/apps/OMA-DM/engine/dmlib/dmengine/dm_ua/src/
dmSubscriptionManager.cc 394 char * pEnd = NULL;
402 pEnd = (char*)oParser.nextSegment();
405 if ( pEnd != NULL )
407 pEnd--;
408 *pEnd = '\0'; // pEnd can't be NULL
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
TextResourceDecoder.cpp 295 const char* pEnd = ptr + m_buffer.size();
305 while (xmlDeclarationEnd != pEnd && *xmlDeclarationEnd != '>')
307 if (xmlDeclarationEnd == pEnd)
  /external/icu/icu4c/source/samples/layout/
paragraph.cpp 104 LEUnicode *pEnd = u_strpbrk(pStart, separators);
108 if (pEnd == NULL) {
109 pEnd = &fChars[charCount];
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);
149 if (*pEnd == 0) {
153 pStart = skipLineEnd(pEnd);
pflow.c 156 LEUnicode *pEnd = u_strpbrk(pStart, separators);
160 if (pEnd == NULL) {
161 pEnd = &flow->fChars[charCount];
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);
206 if (*pEnd == 0) {
210 pStart = skipLineEnd(pEnd);
  /external/chromium_org/third_party/sqlite/src/src/
pcache1.c 119 ** szSlot, nSlot, pStart, pEnd, nReserve, and isInit values are all
127 void *pStart, *pEnd; /* Bounds of pagecache malloc range */
195 pcache1.pEnd = pBuf;
245 if( p>=pcache1.pStart && p<pcache1.pEnd ){
273 if( p>=pcache1.pStart && p<pcache1.pEnd ){
vdbe.c     [all...]
vdbeaux.c 1056 Mem *pEnd;
1060 for(pEnd=&p[N]; p<pEnd; p++){
1065 for(pEnd=&p[N]; p<pEnd; p++){
1066 assert( (&p[1])==pEnd || p[0].db==p[1].db );
    [all...]
btree.c 982 u8 *pEnd;
992 pEnd = &pIter[9]
    [all...]
where.c     [all...]
sqliteInt.h 758 void *pEnd; /* First byte past end of available space */
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_snippet.c 761 char *pEnd = *ppCollist;
766 while( 0xFE & (*pEnd | c) ){
767 c = *pEnd++ & 0x80;
771 *ppCollist = pEnd;
830 char *pEnd;
848 pEnd = &pFree[nFree];
859 pEnd = &pExpr->aDoclist[pExpr->nDoclist];
863 while( pIter<pEnd ){
    [all...]
fts3.c 424 ** As long as *pp has not reached its end (pEnd), then do the same
429 static void fts3GetDeltaVarint2(char **pp, char *pEnd, sqlite3_int64 *pVal){
430 if( *pp>=pEnd ){
    [all...]
fts3_write.c     [all...]
  /external/pdfium/core/src/fxcrt/
fx_basic_bstring.cpp 887 FX_LPSTR pEnd = m_pData->m_String + m_pData->m_nDataLength;
889 FX_LPCSTR pTarget = FX_strstr(pStart, (FX_STRSIZE)(pEnd - pStart), lpszOld.GetCStr(), nSourceLen);
911 FX_LPCSTR pTarget = FX_strstr(pStart, (FX_STRSIZE)(pEnd - pStart), lpszOld.GetCStr(), nSourceLen);
918 FXSYS_memcpy32(pDest, pStart, pEnd - pStart);
    [all...]
  /external/pdfium/fpdfsdk/src/javascript/
PublicMethods.cpp 281 FX_LPCWSTR pEnd = NULL;
290 pEnd = p;
300 while (pEnd != pStart)
302 if (*pEnd == L' ')
303 pEnd --;
313 while (p <= pEnd)
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
ucol.cpp     [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]

Completed in 2875 milliseconds

1 2