Searched refs:tempPtr (Results 1 – 3 of 3) sorted by relevance
365 uint8_t *tempPtr; in ucnv_fromUnicode_UTF8() local429 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 …]
437 void* tempPtr = adjustedPtr; in exception_spec_can_catch() local438 if (catchType->can_catch(excpType, tempPtr)) in exception_spec_can_catch()471 void* tempPtr = adjustedPtr; in exception_spec_can_catch() local472 if (catchType->can_catch(excpType, tempPtr)) in exception_spec_can_catch()
150 int* tempPtr = ( int* ) malloc( ( width + 2 ) * 7 * sizeof( int ) );151 *verticesPtr = tempPtr;