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

  /hardware/ti/omap4xxx/domx/mm_osal/src/
timm_osal_pipes.c 232 TIMM_OSAL_U8 *tempPtr = NULL;
257 tempPtr =
261 if (tempPtr == NULL)
269 read(pHandle->pfd[0], tempPtr, pHandle->totalBytesInPipe);
273 write(pHandle->pfd[1], tempPtr,
288 TIMM_OSAL_Free(tempPtr);
  /external/icu4c/common/
ucnv_u8.c 353 uint8_t *tempPtr;
417 tempPtr = (((targetLimit - myTarget) >= 4) ? myTarget : tempBuf);
421 tempPtr[0] = (uint8_t) ((ch >> 12) | 0xe0);
425 tempPtr[0] = (uint8_t) ((ch >> 18) | 0xf0);
426 tempPtr[1] = (uint8_t) (((ch >> 12) & 0x3f) | 0x80);
428 tempPtr[indexToWrite-1] = (uint8_t) (((ch >> 6) & 0x3f) | 0x80);
429 tempPtr[indexToWrite] = (uint8_t) ((ch & 0x3f) | 0x80);
431 if (tempPtr == myTarget) {
437 for (; tempPtr <= (tempBuf + indexToWrite); tempPtr++)
    [all...]

Completed in 45 milliseconds