Searched refs:tempPtr (Results 1 - 3 of 3) sorted by relevance

/external/icu/icu4c/source/common/
H A Ducnv_u8.c365 uint8_t *tempPtr; local
429 tempPtr = (((targetLimit - myTarget) >= 4) ? myTarget : tempBuf);
433 tempPtr[0] = (uint8_t) ((ch >> 12) | 0xe0);
437 tempPtr[0] = (uint8_t) ((ch >> 18) | 0xf0);
438 tempPtr[1] = (uint8_t) (((ch >> 12) & 0x3f) | 0x80);
440 tempPtr[indexToWrite-1] = (uint8_t) (((ch >> 6) & 0x3f) | 0x80);
441 tempPtr[indexToWrite] = (uint8_t) ((ch & 0x3f) | 0x80);
443 if (tempPtr == myTarget) {
449 for (; tempPtr <= (tempBuf + indexToWrite); tempPtr
480 uint8_t *tempPtr; local
[all...]
/external/libcxxabi/src/
H A Dcxa_personality.cpp437 void* tempPtr = adjustedPtr; local
438 if (catchType->can_catch(excpType, tempPtr))
471 void* tempPtr = adjustedPtr; local
472 if (catchType->can_catch(excpType, tempPtr))
/external/opencv/cvaux/src/
H A Denmin.cpp150 int* tempPtr = ( int* ) malloc( ( width + 2 ) * 7 * sizeof( int ) );
151 *verticesPtr = tempPtr;

Completed in 176 milliseconds