HomeSort by relevance Sort by last modified time
    Searched defs:pStart (Results 1 - 22 of 22) sorted by null

  /frameworks/av/media/libstagefright/codecs/aacdec/
deinterleave.cpp 126 pStart = pInterleaved;
151 pGroup += (pInterleaved - pStart);
233 Int16 *pStart;
256 pStart = pInterleaved;
283 pGroup += (pInterleaved - pStart);
  /frameworks/base/media/libdrm/mobile1/src/parser/
parser_dcf.c 49 uint8_t *pStart, *pEnd;
83 pStart = pHeader;
84 while (pStart < pData) {
85 pEnd = pStart;
89 if (0 == strncmp((char *)pStart, HEADER_ENCRYPTION_METHOD, HEADER_ENCRYPTION_METHOD_LEN))
91 (char *)(pStart + HEADER_ENCRYPTION_METHOD_LEN),
92 pEnd - pStart - HEADER_ENCRYPTION_METHOD_LEN);
93 else if (0 == strncmp((char *)pStart, HEADER_RIGHTS_ISSUER, HEADER_RIGHTS_ISSUER_LEN))
95 (char *)(pStart + HEADER_RIGHTS_ISSUER_LEN),
96 pEnd - pStart - HEADER_RIGHTS_ISSUER_LEN)
    [all...]
parser_dm.c 69 const uint8_t *pStart = NULL, *pEnd = NULL;
83 pStart = drm_strnstr(buffer, (uint8_t *)"--", bufferLen);
84 if (NULL == pStart)
86 pEnd = pStart;
89 pEnd = drm_strnstr(pStart, (uint8_t *)DRM_NEW_LINE_CRLF, leftLen);
93 strncpy((char *)pDmInfo->boundary, (char *)pStart, pEnd - pStart);
97 pStart = pEnd;
98 leftLen = pBufferEnd - pStart;
104 while ((('\r' != *pStart) || ('\n' != *(pStart + 1))) && pStart < pBufferEnd)
    [all...]
  /external/openssl/crypto/asn1/
a_set.c 95 unsigned char *pStart, *pTempMem;
121 pStart = p; /* Catch the beg of Setblobs*/
139 totSize = p - pStart; /* This is the total size of all set blobs */
159 memcpy(pStart, pTempMem, totSize);
  /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...]
  /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/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/icu4c/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);
153 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...]
  /frameworks/base/media/libdrm/mobile1/src/objmng/
drm_rights_manager.c 492 uint8_t *pStart, *pEnd;
495 pStart = buffer;
496 pEnd = pStart;
498 if (pEnd != pStart)
499 pStart = ++pEnd;
502 if (pStart == pEnd)
503 pStart--;
506 memmove(pStart, pEnd, movLen);
507 bufferLen -= (pEnd - pStart);
drm_api.c 896 uint8_t *pStart;
899 pStart = s->rawContent + s->contentOffset;
900 if (-1 == (skipLen = drm_skipCRLFinB64(pStart, encLen))) {
925 res = drm_scanEndBoundary(pStart, encLen, ((T_DRM_DM_Base64_Node *)(s->infoStruct))->boundary);
932 char* pTmp = memrchr(pStart, '\r', encLen);
    [all...]
  /external/icu4c/tools/toolutil/
ucbuf.c 58 const char* pStart;
81 pStart = start;
82 ucnv_toUnicode(*conv, &pTarget, target+1, &pStart, start+*signatureLength, NULL, FALSE, error);
83 *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);
  /frameworks/base/media/libdrm/mobile1/src/xml/
xml_tinyparser.c 266 uint8_t *pStart;
296 pStart = buffer - 1;
303 uint8_t *pCheck = xml_goto_tagend(pStart);
327 *tagLen = buffer - pStart - 2;
329 *tagLen = buffer - pStart - 1;
333 return pStart;
338 uint8_t *pStart;
352 pStart = (uint8_t *)strchr((char *)nodeStr, '\\');
354 while (pStart != NULL) {
355 *pStart = '\0'
    [all...]
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
CandidateView.java 429 int pStart = mDecInfo.mPageStart.get(p);
437 while (xPos < mContentWidth && pStart + pSize < candSize) {
438 int itemPos = pStart + pSize;
455 mDecInfo.mPageStart.add(pStart + pSize);
491 int pStart = mDecInfo.mPageStart.get(mPageNo);
492 int pSize = mDecInfo.mPageStart.get(mPageNo + 1) - pStart;
513 String cand = mDecInfo.mCandidatesList.get(pStart + i);
  /device/samsung/crespo/libcamera/
SecCameraHWInterface.cpp     [all...]
  /external/icu4c/i18n/
ucol.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.team.core_3.5.100.R36x_v20100825-0800.jar 
com.ibm.icu_4.2.1.v20100412.jar 
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 
org.eclipse.ui.ide_3.6.2.M20101117-0800.jar 
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 1253 milliseconds