Searched refs:tempPtr (Results 1 – 2 of 2) sorted by relevance
308 uint8_t *tempPtr; in ucnv_fromUnicode_UTF8() local372 tempPtr = (((targetLimit - myTarget) >= 4) ? myTarget : tempBuf); in ucnv_fromUnicode_UTF8()376 tempPtr[0] = (uint8_t) ((ch >> 12) | 0xe0); in ucnv_fromUnicode_UTF8()380 tempPtr[0] = (uint8_t) ((ch >> 18) | 0xf0); in ucnv_fromUnicode_UTF8()381 tempPtr[1] = (uint8_t) (((ch >> 12) & 0x3f) | 0x80); in ucnv_fromUnicode_UTF8()383 tempPtr[indexToWrite-1] = (uint8_t) (((ch >> 6) & 0x3f) | 0x80); in ucnv_fromUnicode_UTF8()384 tempPtr[indexToWrite] = (uint8_t) ((ch & 0x3f) | 0x80); in ucnv_fromUnicode_UTF8()386 if (tempPtr == myTarget) { in ucnv_fromUnicode_UTF8()392 for (; tempPtr <= (tempBuf + indexToWrite); tempPtr++) { in ucnv_fromUnicode_UTF8()394 *(myTarget++) = *tempPtr; in ucnv_fromUnicode_UTF8()[all …]
456 void* tempPtr = adjustedPtr; in exception_spec_can_catch() local457 if (catchType->can_catch(excpType, tempPtr)) in exception_spec_can_catch()490 void* tempPtr = adjustedPtr; in exception_spec_can_catch() local491 if (catchType->can_catch(excpType, tempPtr)) in exception_spec_can_catch()