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

/external/lzma/C/
H A DLzmaDec.h68 Byte tempBuf[LZMA_REQUIRED_INPUT_MAX]; member in struct:__anon11522
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 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...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
H A DDexDataWriter.java52 private byte[] tempBuf = new byte[8]; field in class:DexDataWriter
169 tempBuf[index++] = (byte)value;
174 tempBuf[index++] = (byte)value;
178 tempBuf[index++] = (byte)value;
180 write(tempBuf, 0, index);
187 tempBuf[index++] = (byte)value;
192 tempBuf[index++] = (byte)value;
196 tempBuf[index++] = (byte)value;
198 write(tempBuf, 0, index);
204 tempBuf[inde
[all...]
/external/icu/icu4c/source/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 Ducnv_u8.c367 uint8_t tempBuf[4]; local
429 tempPtr = (((targetLimit - myTarget) >= 4) ? myTarget : tempBuf);
449 for (; tempPtr <= (tempBuf + indexToWrite); tempPtr++) {
484 uint8_t tempBuf[4]; local
556 tempPtr = (((targetLimit - myTarget) >= 4) ? myTarget : tempBuf);
583 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.cpp2100 char tempBuf[2]; local
2272 _2022ToSJIS((uint8_t)mySourceChar, trailByte, tempBuf);
2280 tempBuf[0] = (char)(tmpSourceChar >> 8);
2281 tempBuf[1] = (char)(tmpSourceChar);
2283 targetUniChar = ucnv_MBCSSimpleGetNextUChar(myData->myConverterArray[cs], tempBuf, 2, FALSE);
2694 char tempBuf[2]; local
2785 tempBuf[0] = (char)(mySourceChar + 0x80);
2786 tempBuf[1] = (char)(trailByte + 0x80);
2787 targetUniChar = ucnv_MBCSSimpleGetNextUChar(sharedData, tempBuf, 2, useFallback);
3287 char tempBuf[ local
[all...]
/external/icu/icu4c/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) );

Completed in 207 milliseconds