HomeSort by relevance Sort by last modified time
    Searched refs:tempBuf (Results 1 - 25 of 39) 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...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_DecodeBlockCoef_Inter.c 90 OMX_S16 tempBuf[79];
94 pTempBuf1 = armAlignTo16Bytes(tempBuf);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_DecodeBlockCoef_Inter.c 90 OMX_S16 tempBuf[79];
94 pTempBuf1 = armAlignTo16Bytes(tempBuf);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
omxVCM4P2_DecodeBlockCoef_Inter.c 94 OMX_S16 tempBuf[79];
98 pTempBuf1 = armAlignTo16Bytes(tempBuf);
  /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.c 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];
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
LzmaDec.h 64 Byte tempBuf[LZMA_REQUIRED_INPUT_MAX];
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
LzmaDec.h 64 Byte tempBuf[LZMA_REQUIRED_INPUT_MAX];
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
LzmaDec.h 64 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 2056 milliseconds

1 2