Searched defs:tempBuf (Results 1 - 5 of 5) sorted by relevance

/external/icu4c/common/
H A Dustr_wcs.c75 char* tempBuf = stackBuffer; local
79 char* saveBuf = tempBuf;
104 ucnv_fromUnicode(conv,&tempBuf,tempBufLimit,&pSrc,pSrcLimit,NULL,(UBool)(pSrc==pSrcLimit),pErrorCode);
105 count =(tempBuf - saveBuf);
109 tempBuf = saveBuf;
112 if(!u_growAnyBufferFromStatic(stackBuffer,(void**) &tempBuf, &tempBufCapacity,
117 saveBuf = tempBuf;
118 tempBufLimit = tempBuf + tempBufCapacity;
119 tempBuf = tempBuf
[all...]
H A Ducnv_u8.c355 uint8_t tempBuf[4]; local
417 tempPtr = (((targetLimit - myTarget) >= 4) ? myTarget : tempBuf);
437 for (; tempPtr <= (tempBuf + indexToWrite); tempPtr++) {
472 uint8_t tempBuf[4]; local
544 tempPtr = (((targetLimit - myTarget) >= 4) ? myTarget : tempBuf);
571 for (; tempPtr <= (tempBuf + indexToWrite); tempPtr++) {
H A Ducnvhz.c156 char tempBuf[2]; local
163 tempBuf[0]=0;
164 tempBuf[1]=0;
267 tempBuf[0] = (char) (leadByte+0x80) ;
268 tempBuf[1] = (char) (mySourceChar+0x80);
270 tempBuf, 2, args->converter->useFallback);
H A Ducnv2022.c2049 char tempBuf[2]; local
2221 _2022ToSJIS((uint8_t)mySourceChar, trailByte, tempBuf);
2229 tempBuf[0] = (char)(tmpSourceChar >> 8);
2230 tempBuf[1] = (char)(tmpSourceChar);
2232 targetUniChar = ucnv_MBCSSimpleGetNextUChar(myData->myConverterArray[cs], tempBuf, 2, FALSE);
2642 char tempBuf[2]; local
2733 tempBuf[0] = (char)(mySourceChar + 0x80);
2734 tempBuf[1] = (char)(trailByte + 0x80);
2735 targetUniChar = ucnv_MBCSSimpleGetNextUChar(sharedData, tempBuf, 2, useFallback);
3233 char tempBuf[ local
[all...]
/external/icu4c/test/cintltst/
H A Dcnmdptst.c128 char tempBuf[256]; local
146 log_verbose("Pattern \"%s\" \n", u_austrcpy(tempBuf, pat) );
147 log_verbose("Format 123 -> %s\n", u_austrcpy(tempBuf, str) );
174 log_verbose("Pattern \"%s\" \n", u_austrcpy(tempBuf, pat) );
175 log_verbose("Format 123 -> %s\n", u_austrcpy(tempBuf, str) );
346 char tempBuf[256]; local
372 log_verbose("Pattern \" %s \" \n", u_austrcpy(tempBuf, pat));
373 log_verbose("Format 1234.56 -> %s\n", u_austrcpy(tempBuf, str) );

Completed in 103 milliseconds