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

1 2 3

  /external/chromium_org/third_party/icu/source/common/
ulocimp.h 50 const char **pEnd);
55 const char **pEnd);
60 const char **pEnd);
  /external/icu/icu4c/source/common/
ulocimp.h 50 const char **pEnd);
55 const char **pEnd);
60 const char **pEnd);
  /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) {
  /frameworks/compile/mclinker/lib/LD/
Diagnostic.cpp 39 const char* pBegin, const char* pEnd ) const
42 for (; pBegin != pEnd; ++pBegin) {
50 if (pBegin == pEnd)
55 while (pBegin != pEnd && !isdigit(*pBegin) && *pBegin != '{')
58 if (pBegin == pEnd)
65 return pEnd;
70 void Diagnostic::format(const char* pBegin, const char* pEnd,
74 while (cur_char != pEnd) {
76 const char* new_end = std::find(cur_char, pEnd, '%');
103 cur_char = findMatch('}', cur_char, pEnd);
    [all...]
  /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/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/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/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...]
  /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 */
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsLA25Stub.h 50 const_fixup_iterator pEnd);
MipsLA25Stub.cpp 52 const_fixup_iterator pEnd)
58 for (const_fixup_iterator it = pBegin, ie = pEnd; it != ie; ++it)
  /external/chromium_org/third_party/icu/source/tools/toolutil/
uparse.h 132 uint32_t *pStart, uint32_t *pEnd,
142 uint32_t *pStart, uint32_t *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/icu/icu4c/source/tools/toolutil/
uparse.h 132 uint32_t *pStart, uint32_t *pEnd,
142 uint32_t *pStart, uint32_t *pEnd,
  /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) {
  /frameworks/compile/mclinker/include/mcld/LD/
GroupReader.h 43 Module::input_iterator pEnd,
Diagnostic.h 87 void format(const char* pBegin, const char* pEnd, std::string& pOutStr) const;
90 const char* findMatch(char pVal, const char* pBegin, const char* pEnd ) const;
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMToARMStub.h 58 const_fixup_iterator pEnd);
ARMToTHMStub.h 58 const_fixup_iterator pEnd);
THMToARMStub.h 60 const_fixup_iterator pEnd,
THMToTHMStub.h 60 const_fixup_iterator pEnd,
ARMToARMStub.cpp 53 const_fixup_iterator pEnd)
56 for (const_fixup_iterator it = pBegin, ie = pEnd; it != ie; ++it)
ARMToTHMStub.cpp 55 const_fixup_iterator pEnd)
58 for (const_fixup_iterator it = pBegin, ie = pEnd; it != ie; ++it)
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonAbsoluteStub.h 58 const_fixup_iterator pEnd);

Completed in 743 milliseconds

1 2 3