HomeSort by relevance Sort by last modified time
    Searched refs:tempBuf (Results 1 - 25 of 36) sorted by null

1 2

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DexDataWriter.java 52 private byte[] tempBuf = new byte[8];
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[index++] = (byte)value
    [all...]
  /external/icu/icu4c/source/common/
ustr_wcs.cpp 73 char* tempBuf = stackBuffer;
77 char* saveBuf = tempBuf;
102 ucnv_fromUnicode(conv,&tempBuf,tempBufLimit,&pSrc,pSrcLimit,NULL,(UBool)(pSrc==pSrcLimit),pErrorCode);
103 count =(tempBuf - saveBuf);
107 tempBuf = saveBuf;
114 if(!u_growAnyBufferFromStatic(stackBuffer,(void**) &tempBuf, &tempBufCapacity,
119 saveBuf = tempBuf;
120 tempBufLimit = tempBuf + tempBufCapacity;
121 tempBuf = tempBuf + count
    [all...]
ucnvhz.cpp 158 char tempBuf[2];
165 tempBuf[0]=0;
166 tempBuf[1]=0;
269 tempBuf[0] = (char) (leadByte+0x80) ;
270 tempBuf[1] = (char) (mySourceChar+0x80);
272 tempBuf, 2, args->converter->useFallback);
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
DeltaInputStream.java 39 private final byte[] tempBuf = new byte[1];
70 return read(tempBuf, 0, 1) == -1 ? -1 : (tempBuf[0] & 0xFF);
DeltaOutputStream.java 25 private final byte[] tempBuf = new byte[1];
37 tempBuf[0] = (byte)b;
38 write(tempBuf, 0, 1);
SimpleInputStream.java 30 private final byte[] tempBuf = new byte[1];
51 return read(tempBuf, 0, 1) == -1 ? -1 : (tempBuf[0] & 0xFF);
BlockOutputStream.java 28 private final byte[] tempBuf = new byte[1];
88 tempBuf[0] = (byte)b;
89 write(tempBuf, 0, 1);
SimpleOutputStream.java 28 private final byte[] tempBuf = new byte[1];
44 tempBuf[0] = (byte)b;
45 write(tempBuf, 0, 1);
UncompressedLZMA2OutputStream.java 27 private final byte[] tempBuf = new byte[1];
43 tempBuf[0] = (byte)b;
44 write(tempBuf, 0, 1);
XZInputStream.java 71 private final byte[] tempBuf = new byte[1];
217 return read(tempBuf, 0, 1) == -1 ? -1 : (tempBuf[0] & 0xFF);
LZMA2InputStream.java 62 private final byte[] tempBuf = new byte[1];
171 return read(tempBuf, 0, 1) == -1 ? -1 : (tempBuf[0] & 0xFF);
SingleXZInputStream.java 53 private final byte[] tempBuf = new byte[1];
237 return read(tempBuf, 0, 1) == -1 ? -1 : (tempBuf[0] & 0xFF);
XZOutputStream.java 73 private final byte[] tempBuf = new byte[1];
240 tempBuf[0] = (byte)b;
241 write(tempBuf, 0, 1);
BlockInputStream.java 34 private final byte[] tempBuf = new byte[1];
203 return read(tempBuf, 0, 1) == -1 ? -1 : (tempBuf[0] & 0xFF);
LZMA2OutputStream.java 38 private final byte[] tempBuf = new byte[1];
82 tempBuf[0] = (byte)b;
83 write(tempBuf, 0, 1);
LZMAInputStream.java 56 private final byte[] tempBuf = new byte[1];
444 return read(tempBuf, 0, 1) == -1 ? -1 : (tempBuf[0] & 0xFF);
  /external/lzma/C/
7zDec.c 376 Byte *tempBuf[])
410 outBufCur = tempBuf[1 - ci] = temp;
463 tempBuf[2] = (Byte *)IAlloc_Alloc(allocMain, tempSizes[2]);
464 if (!tempBuf[2] && tempSizes[2] != 0)
468 RINOK(SzDecodeCopy(s3Size, inStream, tempBuf[2]));
479 p.bufs[1] = tempBuf[0]; p.lims[1] = tempBuf[0] + tempSizes[0];
480 p.bufs[2] = tempBuf[1]; p.lims[2] = tempBuf[1] + tempSizes[1];
481 p.bufs[3] = tempBuf[2]; p.lims[3] = tempBuf[2] + tempSizes[2];
    [all...]
LzmaDec.h 66 Byte tempBuf[LZMA_REQUIRED_INPUT_MAX];
7zArcIn.c 996 CBuf *tempBuf = tempBufs + fo;
1000 if (!Buf_Create(tempBuf, (size_t)unpackSize, allocTemp))
1006 const CBuf *tempBuf = tempBufs + fo;
1008 RINOK(SzAr_DecodeFolder(p, fo, inStream, dataStartPos, tempBuf->data, tempBuf->size, allocTemp));
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
LzmaDec.h 66 Byte tempBuf[LZMA_REQUIRED_INPUT_MAX];
LzmaDec.c 819 p->tempBuf[p->tempBufSize++] = *src++;
825 if (p->tempBuf[0] != 0)
828 ((UInt32)p->tempBuf[1] << 24)
829 | ((UInt32)p->tempBuf[2] << 16)
830 | ((UInt32)p->tempBuf[3] << 8)
831 | ((UInt32)p->tempBuf[4]);
870 memcpy(p->tempBuf, src, inSize);
897 p->tempBuf[rem++] = src[lookAhead++];
901 int dummyRes = LzmaDec_TryDummy(p, p->tempBuf, rem);
914 p->buf = p->tempBuf;
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
LzmaDec.h 66 Byte tempBuf[LZMA_REQUIRED_INPUT_MAX];
LzmaDec.c 821 p->tempBuf[p->tempBufSize++] = *src++;
827 if (p->tempBuf[0] != 0)
830 ((UInt32)p->tempBuf[1] << 24)
831 | ((UInt32)p->tempBuf[2] << 16)
832 | ((UInt32)p->tempBuf[3] << 8)
833 | ((UInt32)p->tempBuf[4]);
872 memcpy(p->tempBuf, src, inSize);
899 p->tempBuf[rem++] = src[lookAhead++];
903 int dummyRes = LzmaDec_TryDummy(p, p->tempBuf, rem);
916 p->buf = p->tempBuf;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
LzmaDec.h 66 Byte tempBuf[LZMA_REQUIRED_INPUT_MAX];
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetHZ.java 70 byte[] tempBuf = new byte[2];
167 tempBuf[0] = (byte)(leadByte + 0x80);
168 tempBuf[1] = (byte)(mySourceChar + 0x80);
169 targetUniChar = gbDecoder.simpleGetNextUChar(ByteBuffer.wrap(tempBuf), super.isFallbackUsed());

Completed in 972 milliseconds

1 2