HomeSort by relevance Sort by last modified time
    Searched defs:outSize (Results 1 - 25 of 46) sorted by null

1 2

  /external/opencv3/3rdparty/openexr/IlmImf/
ImfZipCompressor.cpp 154 uLongf outSize = int(ceil(inSize * 1.01)) + 100;
156 if (Z_OK != ::compress ((Bytef *)_outBuffer, &outSize,
163 return outSize;
187 uLongf outSize = _maxScanLineSize * _numScanLines;
189 if (Z_OK != ::uncompress ((Bytef *)_tmpBuffer, &outSize,
201 unsigned char *stop = (unsigned char *) _tmpBuffer + outSize;
217 const char *t2 = _tmpBuffer + (outSize + 1) / 2;
219 char *stop = s + outSize;
236 return outSize;
ImfRleCompressor.cpp 277 int outSize;
279 if (0 == (outSize = rleUncompress (inSize, _maxScanLineSize,
292 unsigned char *stop = (unsigned char *) _tmpBuffer + outSize;
308 const char *t2 = _tmpBuffer + (outSize + 1) / 2;
310 char *stop = s + outSize;
327 return outSize;
ImfPxr24Compressor.cpp 397 uLongf outSize = int (ceil ((tmpBufferEnd - _tmpBuffer) * 1.01)) + 100;
400 &outSize,
408 return outSize;
  /system/core/gatekeeperd/
IGateKeeperService.cpp 52 uint32_t outSize = 0;
55 desiredPasswordSize, &out, &outSize);
59 if (ret == 0 && outSize > 0 && out != NULL) {
62 reply->writeInt32(outSize);
63 reply->writeInt32(outSize);
64 void *buf = reply->writeInplace(outSize);
65 memcpy(buf, out, outSize);
123 uint32_t outSize = 0;
127 &out, &outSize, &request_reenroll);
130 if (ret == 0 && outSize > 0 && out != NULL)
    [all...]
  /system/security/keystore-engine/
rsa_meth.cpp 161 int outSize;
164 outSize = RSA_padding_check_PKCS1_type_2(to, num, alignedReply, replyLen, num);
167 outSize = RSA_padding_check_X931(to, num, alignedReply, replyLen, num);
170 outSize = RSA_padding_check_none(to, num, alignedReply, replyLen, num);
174 outSize = -1;
180 ALOGV("rsa=%p keystore_rsa_priv_dec => returning %p len %d", rsa, to, outSize);
181 return outSize;
  /build/tools/atree/
files.h 34 off_t outSize;
  /external/lzma/CPP/7zip/Compress/
PpmdEncoder.cpp 111 const UInt64 * /* inSize */, const UInt64 * /* outSize */, ICompressProgressInfo *progress)
150 UInt64 outSize = _outStream.GetProcessed();
151 RINOK(progress->SetRatioInfo(&processed, &outSize));
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
DisplayFacade.java 73 Point outSize = new Point();
75 d.getSize(outSize);
76 return outSize;
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/
Lzma.java 98 long outSize = 0;
104 outSize |= ((long)v) << (8 * i);
106 if (!decoder.Code(in, out, outSize)) {
  /external/opencv3/samples/winrt/OcvImageProcessing/OcvImageProcessing/
MainPage.xaml.cpp 127 size_t outSize = localPathW.length() + 1;
128 char* localPathC = new char[outSize];
130 wcstombs_s(&charsConverted, localPathC, outSize, localPathW.c_str(), localPathW.length());
  /libcore/ojluni/src/main/java/javax/crypto/
CipherSpi.java     [all...]
  /external/lzma/C/
Lzma2Dec.c 295 SizeT outSize = *destLen, inSize = *srcLen;
305 if (outSize > p->decoder.dicBufSize - dicPos)
312 outSizeCur = dicPos + outSize;
323 outSize -= outSizeCur;
327 if (outSizeCur == 0 || outSize == 0)
337 SizeT outSize = *destLen, inSize = *srcLen;
343 p.decoder.dicBufSize = outSize;
346 res = Lzma2Dec_DecodeToDic(&p, outSize, src, srcLen, finishMode, status);
LzmaDec.c 875 SizeT outSize = *destLen;
886 if (outSize > p->dicBufSize - dicPos)
893 outSizeCur = dicPos + outSize;
904 outSize -= outSizeCur;
908 if (outSizeCur == 0 || outSize == 0)
1008 SizeT outSize = *destLen, inSize = *srcLen;
1016 p.dicBufSize = outSize;
1019 res = LzmaDec_DecodeToDic(&p, outSize, src, srcLen, finishMode, status);
  /external/lzma/Java/SevenZip/
LzmaAlone.java 234 long outSize = 0;
240 outSize |= ((long)v) << (8 * i);
242 if (!decoder.Code(inStream, outStream, outSize))
LzmaBench.java 202 public void SetProgress(long inSize, long outSize)
244 static long GetDecompressRating(long elapsedTime, long outSize, long inSize)
246 long numCommands = inSize * 220 + outSize * 20;
365 long outSize = kBufferSize;
367 if (!decoder.Code(inputCompressedStream, crcOutStream, outSize))
  /build/tools/zipalign/
ZipFile.cpp 890 size_t outSize = 0;
903 &outBuf, &outSize);
932 ZopfliDeflate(&options, 2, atEof, inBuf, getSize, &bp, &outBuf, &outSize);
937 ALOGV("+++ writing %d bytes\n", (int)outSize);
938 if (fwrite(outBuf, 1, outSize, dstFp) != outSize) {
939 ALOGD("write %d failed in deflate\n", (int)outSize);
    [all...]
  /packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/
WallpaperCropActivity.java 338 Point outSize = WallpaperUtils.getDefaultWallpaperSize(getResources(),
341 inSize.x, inSize.y, outSize.x, outSize.y, false);
348 outSize.x, outSize.y, onEndCrop);
  /external/lz4/programs/
lz4io.c 326 unsigned int outSize;
333 outSize = compressionFunction(in_buff, out_buff+4, inSize);
334 compressedfilesize += outSize+4;
338 LZ4IO_writeLE32(out_buff, outSize);
339 sizeCheck = fwrite(out_buff, 1, outSize+4, foutput);
340 if (sizeCheck!=(size_t)(outSize+4)) EXM_THROW(23, "Write error : cannot write compressed block");
418 size_t outSize;
421 outSize = LZ4F_compressUpdate(ctx, out_buff, outBuffSize, in_buff, readSize, NULL);
422 if (LZ4F_isError(outSize)) EXM_THROW(34, "Compression failed : %s", LZ4F_getErrorName(outSize));
    [all...]
  /external/lzma/CPP/7zip/Bundles/LzmaCon/
LzmaAlone.cpp 361 size_t outSize;
365 outSize = (size_t)fileSize / 20 * 21 + (1 << 16);
366 if (outSize != 0)
368 outBuffer = (Byte *)MyAlloc((size_t)outSize);
374 int res = Lzma86_Encode(outBuffer, &outSize, inBuffer, inSize,
387 outSize = (size_t)outSize64;
388 if (outSize != outSize64)
390 if (outSize != 0)
392 outBuffer = (Byte *)MyAlloc(outSize);
396 int res = Lzma86_Decode(outBuffer, &outSize, inBuffer, &inSize);
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
CodeItem.java 97 int outSize = reader.readUshort();
98 out.annotate(2, "outs_size = %d", outSize);
  /art/dexdump/
dexdump.cc 530 size_t outSize = 0;
535 outSize = snprintf(buf, bufSize, "<unknown-index>");
540 outSize = snprintf(buf, bufSize, "<no-index>");
545 outSize = snprintf(buf, bufSize, "%s // type@%0*x", tp, width, index);
547 outSize = snprintf(buf, bufSize, "<type?> // type@%0*x", width, index);
553 outSize = snprintf(buf, bufSize, "\"%s\" // string@%0*x", st, width, index);
555 outSize = snprintf(buf, bufSize, "<string?> // string@%0*x", width, index);
564 outSize = snprintf(buf, bufSize, "%s.%s:%s // method@%0*x",
567 outSize = snprintf(buf, bufSize, "<method?> // method@%0*x", width, index);
576 outSize = snprintf(buf, bufSize, "%s.%s:%s // field@%0*x"
    [all...]
  /dalvik/dexdump/
DexDump.cpp 715 int outSize;
753 outSize = snprintf(buf, bufSize, "<unknown-index>");
760 outSize = snprintf(buf, bufSize, "<no-index>");
767 outSize = snprintf(buf, bufSize, "<index-varies> // thing@%0*x",
772 outSize = snprintf(buf, bufSize, "%s // type@%0*x",
775 outSize = snprintf(buf, bufSize, "<type?> // type@%0*x", width, index);
780 outSize = snprintf(buf, bufSize, "\"%s\" // string@%0*x",
783 outSize = snprintf(buf, bufSize, "<string?> // string@%0*x",
791 outSize = snprintf(buf, bufSize, "%s.%s:%s // method@%0*x",
796 outSize = snprintf(buf, bufSize, "<method?> // method@%0*x"
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
WallpaperCropActivity.java 334 Point outSize = getDefaultWallpaperSize(getResources(),
337 inSize.x, inSize.y, outSize.x, outSize.y, false);
347 crop, rotation, outSize.x, outSize.y, true, false, onEndCrop);
    [all...]
  /system/security/keystore/
IKeystoreService.cpp     [all...]
  /external/deqp/modules/glshared/
glsShaderExecUtil.cpp 664 const int outSize = output.varType.getScalarSize();
680 if (outSize == 4 && outNumLocs == 1)
687 deUint32* dstPtr = &dstPtrBase[outSize*valNdx + outVecSize*locNdx];
    [all...]

Completed in 796 milliseconds

1 2