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

/external/icu4c/common/
H A Ducnv_u8.c353 uint8_t *tempPtr; local
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
468 uint8_t *tempPtr; local
[all...]
/external/opencv/cvaux/src/
H A Denmin.cpp150 int* tempPtr = ( int* ) malloc( ( width + 2 ) * 7 * sizeof( int ) );
151 *verticesPtr = tempPtr;

Completed in 354 milliseconds