Searched refs:tempBuf (Results 1 - 19 of 19) sorted by relevance

/external/chromium_org/third_party/icu/source/common/
H A Dustr_wcs.c68 char* tempBuf = stackBuffer; local
72 char* saveBuf = tempBuf;
97 ucnv_fromUnicode(conv,&tempBuf,tempBufLimit,&pSrc,pSrcLimit,NULL,(UBool)(pSrc==pSrcLimit),pErrorCode);
98 count =(tempBuf - saveBuf);
102 tempBuf = saveBuf;
105 if(!u_growAnyBufferFromStatic(stackBuffer,(void**) &tempBuf, &tempBufCapacity,
110 saveBuf = tempBuf;
111 tempBufLimit = tempBuf + tempBufCapacity;
112 tempBuf = tempBuf
[all...]
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.c2027 char tempBuf[2]; local
2199 _2022ToSJIS((uint8_t)mySourceChar, trailByte, tempBuf);
2207 tempBuf[0] = (char)(tmpSourceChar >> 8);
2208 tempBuf[1] = (char)(tmpSourceChar);
2210 targetUniChar = ucnv_MBCSSimpleGetNextUChar(myData->myConverterArray[cs], tempBuf, 2, FALSE);
2620 char tempBuf[2]; local
2711 tempBuf[0] = (char)(mySourceChar + 0x80);
2712 tempBuf[1] = (char)(trailByte + 0x80);
2713 targetUniChar = ucnv_MBCSSimpleGetNextUChar(sharedData, tempBuf, 2, useFallback);
3211 char tempBuf[ local
[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++) {
/external/icu4c/common/
H A Dustr_wcs.cpp71 char* tempBuf = stackBuffer; local
75 char* saveBuf = tempBuf;
100 ucnv_fromUnicode(conv,&tempBuf,tempBufLimit,&pSrc,pSrcLimit,NULL,(UBool)(pSrc==pSrcLimit),pErrorCode);
101 count =(tempBuf - saveBuf);
105 tempBuf = saveBuf;
112 if(!u_growAnyBufferFromStatic(stackBuffer,(void**) &tempBuf, &tempBufCapacity,
117 saveBuf = tempBuf;
118 tempBufLimit = tempBuf + tempBufCapacity;
119 tempBuf = tempBuf
[all...]
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.cpp2063 char tempBuf[2]; local
2235 _2022ToSJIS((uint8_t)mySourceChar, trailByte, tempBuf);
2243 tempBuf[0] = (char)(tmpSourceChar >> 8);
2244 tempBuf[1] = (char)(tmpSourceChar);
2246 targetUniChar = ucnv_MBCSSimpleGetNextUChar(myData->myConverterArray[cs], tempBuf, 2, FALSE);
2656 char tempBuf[2]; local
2747 tempBuf[0] = (char)(mySourceChar + 0x80);
2748 tempBuf[1] = (char)(trailByte + 0x80);
2749 targetUniChar = ucnv_MBCSSimpleGetNextUChar(sharedData, tempBuf, 2, useFallback);
3249 char tempBuf[ local
[all...]
H A Ducnv_u8.c358 uint8_t tempBuf[4]; local
420 tempPtr = (((targetLimit - myTarget) >= 4) ? myTarget : tempBuf);
440 for (; tempPtr <= (tempBuf + indexToWrite); tempPtr++) {
475 uint8_t tempBuf[4]; local
547 tempPtr = (((targetLimit - myTarget) >= 4) ? myTarget : tempBuf);
574 for (; tempPtr <= (tempBuf + indexToWrite); tempPtr++) {
/external/chromium_org/third_party/lzma_sdk/
H A D7zDec.c338 Byte *tempBuf[])
372 outBufCur = tempBuf[1 - ci] = temp;
423 tempBuf[2] = (Byte *)IAlloc_Alloc(allocMain, tempSizes[2]);
424 if (tempBuf[2] == 0 && tempSizes[2] != 0)
426 res = SzDecodeCopy(s3Size, inStream, tempBuf[2]);
431 tempBuf[0], tempSizes[0],
432 tempBuf[1], tempSizes[1],
433 tempBuf[2], tempSizes[2],
463 Byte *tempBuf[3] = { 0, 0, 0}; local
466 outBuffer, (SizeT)outSize, allocMain, tempBuf);
335 SzFolder_Decode2(const CSzFolder *folder, const UInt64 *packSizes, ILookInStream *inStream, UInt64 startPos, Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain, Byte *tempBuf[]) argument
[all...]
H A DLzmaDec.h68 Byte tempBuf[LZMA_REQUIRED_INPUT_MAX]; member in struct:__anon11754
H A DLzmaDec.c735 p->tempBuf[p->tempBufSize++] = *src++;
741 if (p->tempBuf[0] != 0)
744 LzmaDec_InitRc(p, p->tempBuf);
781 memcpy(p->tempBuf, src, inSize);
808 p->tempBuf[rem++] = src[lookAhead++];
812 int dummyRes = LzmaDec_TryDummy(p, p->tempBuf, rem);
825 p->buf = p->tempBuf;
828 lookAhead -= (rem - (unsigned)(p->buf - p->tempBuf));
/external/lzma/C/
H A D7zDec.c338 Byte *tempBuf[])
372 outBufCur = tempBuf[1 - ci] = temp;
423 tempBuf[2] = (Byte *)IAlloc_Alloc(allocMain, tempSizes[2]);
424 if (tempBuf[2] == 0 && tempSizes[2] != 0)
426 res = SzDecodeCopy(s3Size, inStream, tempBuf[2]);
431 tempBuf[0], tempSizes[0],
432 tempBuf[1], tempSizes[1],
433 tempBuf[2], tempSizes[2],
463 Byte *tempBuf[3] = { 0, 0, 0}; local
466 outBuffer, (SizeT)outSize, allocMain, tempBuf);
335 SzFolder_Decode2(const CSzFolder *folder, const UInt64 *packSizes, ILookInStream *inStream, UInt64 startPos, Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain, Byte *tempBuf[]) argument
[all...]
H A DLzmaDec.h68 Byte tempBuf[LZMA_REQUIRED_INPUT_MAX]; member in struct:__anon21980
H A DXzIn.c162 Byte tempBuf[TEMP_BUF_SIZE]; local
169 RINOK(LookInStream_Read2(stream, tempBuf, processedSize, SZ_ERROR_NO_ARCHIVE));
171 if (tempBuf[j -1] != 0)
H A DLzmaDec.c735 p->tempBuf[p->tempBufSize++] = *src++;
741 if (p->tempBuf[0] != 0)
744 LzmaDec_InitRc(p, p->tempBuf);
781 memcpy(p->tempBuf, src, inSize);
808 p->tempBuf[rem++] = src[lookAhead++];
812 int dummyRes = LzmaDec_TryDummy(p, p->tempBuf, rem);
825 p->buf = p->tempBuf;
828 lookAhead -= (rem - (unsigned)(p->buf - p->tempBuf));
/external/chromium_org/third_party/ots/third_party/lzma_sdk/
H A DLzmaDec.h69 Byte tempBuf[LZMA_REQUIRED_INPUT_MAX]; member in struct:__anon13329
H A DLzmaDec.c736 p->tempBuf[p->tempBufSize++] = *src++;
742 if (p->tempBuf[0] != 0)
745 LzmaDec_InitRc(p, p->tempBuf);
782 memcpy(p->tempBuf, src, inSize);
809 p->tempBuf[rem++] = src[lookAhead++];
813 int dummyRes = LzmaDec_TryDummy(p, p->tempBuf, rem);
826 p->buf = p->tempBuf;
829 lookAhead -= (rem - (unsigned)(p->buf - p->tempBuf));
/external/chromium_org/third_party/icu/source/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) );
/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 398 milliseconds