Home
last modified time | relevance | path

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

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