HomeSort by relevance Sort by last modified time
    Searched full:pend (Results 1 - 25 of 104) sorted by null

1 2 3 4 5

  /frameworks/base/media/libdrm/mobile1/src/parser/
parser_dm.c 69 const uint8_t *pStart = NULL, *pEnd = NULL;
86 pEnd = pStart;
89 pEnd = drm_strnstr(pStart, (uint8_t *)DRM_NEW_LINE_CRLF, leftLen);
91 if (NULL == pEnd)
93 strncpy((char *)pDmInfo->boundary, (char *)pStart, pEnd - pStart);
96 pEnd += 2; /* skip the '\r' and '\n' */
97 pStart = pEnd;
105 pEnd = drm_strnstr(pStart, (uint8_t *)DRM_NEW_LINE_CRLF, leftLen);
106 if (NULL == pEnd)
114 if (0 == strncmp((char *)pStart, TRANSFER_CODING_TYPE_7BIT, pEnd - pStart)
    [all...]
parser_dcf.c 49 uint8_t *pStart, *pEnd;
85 pEnd = pStart;
86 while ('\r' != *pEnd && pEnd < pData)
87 pEnd++;
92 pEnd - pStart - HEADER_ENCRYPTION_METHOD_LEN);
96 pEnd - pStart - HEADER_RIGHTS_ISSUER_LEN);
100 pEnd - pStart - HEADER_CONTENT_NAME_LEN);
104 pEnd - pStart - HEADER_CONTENT_DESCRIPTION_LEN);
108 pEnd - pStart - HEADER_CONTENT_VENDOR_LEN)
    [all...]
parser_rel.c 72 uint8_t * pEnd = NULL;
76 pEnd = (uint8_t *)strstr((char *)pHead, "-");
77 if(NULL == pEnd)
79 tmpByte = *pEnd;
80 *pEnd = '\0';
82 pHead = pEnd + 1;
83 *pEnd = tmpByte;
86 pEnd = (uint8_t *)strstr((char *)pHead, "-");
87 if(NULL == pEnd)
89 tmpByte = *pEnd;
    [all...]
  /external/qemu/android/
hw-events.c 139 const char* pend; local
149 pend = p + strcspn(p, " \t");
151 if (q == NULL || q > pend)
152 q = pend;
166 if (q == NULL || q > pend)
167 q = pend;
182 if (q == NULL || q > pend)
183 q = pend;
  /external/icu4c/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);
  /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 */
  /dalvik/vm/
Hash.c 179 HashEntry* pEnd;
188 pEnd = &pHashTable->pEntries[pHashTable->tableSize];
200 if (pEntry == pEnd) { /* wrap around to start */
254 HashEntry* pEnd;
260 pEnd = &pHashTable->pEntries[pHashTable->tableSize];
271 if (pEntry == pEnd) { /* wrap around to start */
347 HashEntry* pEnd;
356 pEnd = &pHashTable->pEntries[pHashTable->tableSize];
367 if (pEntry == pEnd) { /* wrap around to start */
  /frameworks/base/media/libdrm/mobile1/src/objmng/
drm_rights_manager.c 492 uint8_t *pStart, *pEnd;
496 pEnd = pStart;
498 if (pEnd != pStart)
499 pStart = ++pEnd;
500 while ('\n' != *pEnd)
501 pEnd++;
502 if (pStart == pEnd)
505 movLen = bufferLen - (pEnd - buffer);
506 memmove(pStart, pEnd, movLen);
507 bufferLen -= (pEnd - pStart)
    [all...]
  /external/webkit/JavaScriptCore/wtf/
FastAllocBase.h 341 T* pEnd = p + *a.size;
342 while (pEnd-- != p)
343 pEnd->~T();
390 T* pEnd = p + *a.size;
391 while (pEnd-- != p)
392 pEnd->~T();
  /frameworks/base/media/libdrm/mobile1/src/xml/
xml_tinyparser.c 178 uint8_t *pEnd;
240 pEnd = NULL;
243 pEnd = buffer;
246 if (*buffer != '<' || pEnd == NULL) {
251 *valueLen = pEnd - *pValue + 1;
534 uint8_t *pEnd;
539 pEnd = buffer + bufferLen;
566 while ((buffer + i) < pEnd && buffer[i] != WBXML_END)
  /external/icu4c/tools/toolutil/
uparse.c 289 uint32_t *pStart, uint32_t *pEnd,
297 if(s==NULL || pStart==NULL || pEnd==NULL) {
314 *pStart=*pEnd=value;
334 *pEnd=value;
  /external/icu4c/common/
uset.cpp 308 // UChar32* pStart, UChar32* pEnd) {
314 // *pEnd = us->getRangeEnd(rangeIndex);
481 UChar32* pStart, UChar32* pEnd) {
485 if(set==NULL || rangeIndex<0 || pStart==NULL || pEnd==NULL) {
497 *pEnd=array[rangeIndex];
499 *pEnd=(((int32_t)array[rangeIndex])<<16)|array[rangeIndex+1];
501 *pEnd=0x110000;
503 --*pEnd;
514 *pEnd=(((int32_t)array[rangeIndex])<<16)|array[rangeIndex+1];
516 *pEnd=0x110000
    [all...]
  /external/webkit/WebCore/loader/
TextResourceDecoder.cpp 509 static inline void skipComment(const char*& ptr, const char* pEnd)
512 if (p == pEnd)
518 while (p + 2 < pEnd) {
526 if (p + 3 < pEnd && p[1] == '-' && p[2] == '!' && p[3] == '>') {
556 const char* pEnd = ptr + m_buffer.size();
566 while (xmlDeclarationEnd != pEnd && *xmlDeclarationEnd != '>')
568 if (xmlDeclarationEnd == pEnd)
613 while (ptr + 3 < pEnd) { // +3 guarantees that "<!--" fits in the buffer - and certainly we aren't going to lose any "charset" that way.
621 skipComment(ptr, pEnd);
642 if (ptr == pEnd)
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/Management/scan/inc/
ScanCncnApi.h 300 * \param pendReason - the reason for pend status, if the status is pend.\n
314 * \param pendReason - the reason for pend status, if the status is pend.\n
328 * \param pendReason - the reason for pend status, if the status is pend.\n
  /hardware/ti/wlan/wl1271/Test/
scrDbg.c 197 WLAN_OS_REPORT(("Resource %s was requested as client %s, result %s, pend reason %s\n",
271 WLAN_OS_REPORT( ("%-22s %-15s %-15s %-15s %-15s\n", "Client", "State (SC)", "State (PS)", "Pend Reason (SC)", "Pend Reason (PS)") );
  /system/wlan/ti/wilink_6_1/Test/
scrDbg.c 197 WLAN_OS_REPORT(("Resource %s was requested as client %s, result %s, pend reason %s\n",
271 WLAN_OS_REPORT( ("%-22s %-15s %-15s %-15s %-15s\n", "Client", "State (SC)", "State (PS)", "Pend Reason (SC)", "Pend Reason (PS)") );
  /external/dropbear/libtomcrypt/src/mac/hmac/
hmac_init.c 87 /* Pre-pend that to the hash data */
  /hardware/ti/wlan/wl1271/stad/src/Ctrl_Interface/
CmdHndlr.h 58 TI_STATUS eCmdStatus; /* (PEND / COMPLETE) */
  /system/wlan/ti/wilink_6_1/stad/src/Ctrl_Interface/
CmdHndlr.h 58 TI_STATUS eCmdStatus; /* (PEND / COMPLETE) */
  /system/core/libacc/tests/
main.cpp 80 unsigned long* pEnd = (unsigned long*) (((unsigned char*) base) + length);
82 for(unsigned long* pInstruction = pBase; pInstruction < pEnd; pInstruction++) {
  /system/wlan/ti/wilink_6_1/stad/src/Sta_Management/
ScanCncn.c     [all...]
ScanCncnSmSpecific.c 73 TRACE1(pScanCncnClient->hReport, REPORT_SEVERITY_INFORMATION , "scanCncnSmApp1Shot_ScrRequest: SCR pending, pend reason: %d.\n", eScrPendReason);
220 TRACE1(pScanCncnClient->hReport, REPORT_SEVERITY_INFORMATION , "scanCncnSmAppP_ScrRequest: SCR pending, pend reason: %d.\n", eScrPendReason);
349 TRACE1(pScanCncnClient->hReport, REPORT_SEVERITY_INFORMATION , "scanCncnSmAppP_ScrRequest: SCR pending, pend reason: %d.\n", eScrPendReason);
489 TRACE1(pScanCncnClient->hReport, REPORT_SEVERITY_INFORMATION , "scanCncnSmCont1Shot_ScrRequest: SCR pending, pend Reason: %d.\n", eScrPendReason);
490 /* check pend reason */
628 TRACE1(pScanCncnClient->hReport, REPORT_SEVERITY_INFORMATION , "scanCncnSmImmed1Shot_ScrRequest: SCR pending, pend Reason: %d.\n", eScrPendReason);
630 /* check pend reason */
  /external/clearsilver/util/regex/
regex.c 619 unsigned char *pend = end;
628 while (p < pend)
676 assert (p + *p < pend);
614 unsigned char *pend = end; local
1685 const char *pend = pattern + size; local
2933 register unsigned char *pend = pattern + size; local
3594 register unsigned char *pend = p + bufp->used; local
    [all...]
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
ScanCncnSmSpecific.c 73 TRACE1(pScanCncnClient->hReport, REPORT_SEVERITY_INFORMATION , "scanCncnSmApp1Shot_ScrRequest: SCR pending, pend reason: %d.\n", eScrPendReason);
220 TRACE1(pScanCncnClient->hReport, REPORT_SEVERITY_INFORMATION , "scanCncnSmAppP_ScrRequest: SCR pending, pend reason: %d.\n", eScrPendReason);
349 TRACE1(pScanCncnClient->hReport, REPORT_SEVERITY_INFORMATION , "scanCncnSmAppP_ScrRequest: SCR pending, pend reason: %d.\n", eScrPendReason);
489 TRACE1(pScanCncnClient->hReport, REPORT_SEVERITY_INFORMATION , "scanCncnSmCont1Shot_ScrRequest: SCR pending, pend Reason: %d.\n", eScrPendReason);
490 /* check pend reason */
628 TRACE1(pScanCncnClient->hReport, REPORT_SEVERITY_INFORMATION , "scanCncnSmImmed1Shot_ScrRequest: SCR pending, pend Reason: %d.\n", eScrPendReason);
630 /* check pend reason */

Completed in 680 milliseconds

1 2 3 4 5