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

1 2

  /external/qemu/android/filesystems/
ramdisk_extractor_unittest.cpp 59 size_t outSize = 0;
62 EXPECT_TRUE(android_extractRamdiskFile(path(), "foo", &out, &outSize));
63 EXPECT_EQ(kExpectedSize, outSize);
65 EXPECT_TRUE(!memcmp(out, kExpected, outSize));
73 size_t outSize = 0;
76 EXPECT_TRUE(android_extractRamdiskFile(path(), "bar2", &out, &outSize));
77 EXPECT_EQ(kExpectedSize, outSize);
79 EXPECT_TRUE(!memcmp(out, kExpected, outSize));
85 size_t outSize = 0;
87 EXPECT_FALSE(android_extractRamdiskFile(path(), "zoolander", &out, &outSize));
    [all...]
  /external/lzma/CPP/7zip/Compress/
PpmdEncoder.cpp 74 const UInt64 * /* inSize */, const UInt64 * /* outSize */, ICompressProgressInfo *progress)
113 UInt64 outSize = _outStream.GetProcessed();
114 RINOK(progress->SetRatioInfo(&processed, &outSize));
  /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;
  /cts/tests/tests/display/src/android/display/cts/
DisplayTest.java 114 Point outSize = new Point();
115 display.getSize(outSize);
116 assertEquals(SECONDARY_DISPLAY_WIDTH, outSize.x);
117 assertEquals(SECONDARY_DISPLAY_HEIGHT, outSize.y);
134 Point outSize = new Point();
135 display.getSize(outSize);
  /external/chromium_org/third_party/lzma_sdk/
Lzma2Dec.c 293 SizeT outSize = *destLen, inSize = *srcLen;
303 if (outSize > p->decoder.dicBufSize - dicPos)
310 outSizeCur = dicPos + outSize;
321 outSize -= outSizeCur;
325 if (outSizeCur == 0 || outSize == 0)
335 SizeT outSize = *destLen, inSize = *srcLen;
343 decoder.decoder.dicBufSize = outSize;
349 res = Lzma2Dec_DecodeToDic(&decoder, outSize, src, srcLen, finishMode, status);
LzmaDec.c 842 SizeT outSize = *destLen;
853 if (outSize > p->dicBufSize - dicPos)
860 outSizeCur = dicPos + outSize;
871 outSize -= outSizeCur;
875 if (outSizeCur == 0 || outSize == 0)
976 SizeT outSize = *destLen;
986 p.dicBufSize = outSize;
991 res = LzmaDec_DecodeToDic(&p, outSize, src, srcLen, finishMode, status);
  /external/lzma/C/
Lzma2Dec.c 293 SizeT outSize = *destLen, inSize = *srcLen;
303 if (outSize > p->decoder.dicBufSize - dicPos)
310 outSizeCur = dicPos + outSize;
321 outSize -= outSizeCur;
325 if (outSizeCur == 0 || outSize == 0)
335 SizeT outSize = *destLen, inSize = *srcLen;
343 decoder.decoder.dicBufSize = outSize;
349 res = Lzma2Dec_DecodeToDic(&decoder, outSize, src, srcLen, finishMode, status);
LzmaDec.c 842 SizeT outSize = *destLen;
853 if (outSize > p->dicBufSize - dicPos)
860 outSizeCur = dicPos + outSize;
871 outSize -= outSizeCur;
875 if (outSizeCur == 0 || outSize == 0)
976 SizeT outSize = *destLen;
986 p.dicBufSize = outSize;
991 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 887 size_t outSize = 0;
900 &outBuf, &outSize);
929 ZopfliDeflate(&options, 2, atEof, inBuf, getSize, &bp, &outBuf, &outSize);
934 ALOGV("+++ writing %d bytes\n", (int)outSize);
935 if (fwrite(outBuf, 1, outSize, dstFp) != outSize) {
936 ALOGD("write %d failed in deflate\n", (int)outSize);
    [all...]
  /external/chromium_org/third_party/libXNVCtrl/
NVCtrl.c 1053 int inSize, outSize, length, slop;
1096 outSize = rep.num_bytes;
1097 slop = outSize & 3;
1099 if (outSize) *ppOut = (char *) Xmalloc(outSize);
1104 _XRead(dpy, (char *) *ppOut, outSize);
    [all...]
  /system/security/keystore/
IKeystoreService.cpp 662 size_t outSize = 0;
663 int32_t ret = get(name, (uint8_t**) &out, &outSize);
666 reply->writeInt32(outSize);
667 void* buf = reply->writeInplace(outSize);
668 memcpy(buf, out, outSize);
818 size_t outSize = 0;
819 int32_t ret = sign(name, (const uint8_t*) in, (size_t) inSize, (uint8_t**) &out, &outSize);
821 if (outSize > 0 && out != NULL) {
822 reply->writeInt32(outSize);
823 void* buf = reply->writeInplace(outSize);
    [all...]
  /external/lzma/CPP/7zip/Bundles/LzmaCon/
LzmaAlone.cpp 322 size_t outSize;
326 outSize = (size_t)fileSize / 20 * 21 + (1 << 16);
327 if (outSize != 0)
329 outBuffer = (Byte *)MyAlloc((size_t)outSize);
335 int res = Lzma86_Encode(outBuffer, &outSize, inBuffer, inSize,
348 outSize = (size_t)outSize64;
349 if (outSize != outSize64)
351 if (outSize != 0)
353 outBuffer = (Byte *)MyAlloc(outSize);
357 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);
  /dalvik/dexdump/
DexDump.cpp 714 int outSize;
752 outSize = snprintf(buf, bufSize, "<unknown-index>");
759 outSize = snprintf(buf, bufSize, "<no-index>");
766 outSize = snprintf(buf, bufSize, "<index-varies> // thing@%0*x",
771 outSize = snprintf(buf, bufSize, "%s // type@%0*x",
774 outSize = snprintf(buf, bufSize, "<type?> // type@%0*x", width, index);
779 outSize = snprintf(buf, bufSize, "\"%s\" // string@%0*x",
782 outSize = snprintf(buf, bufSize, "<string?> // string@%0*x",
790 outSize = snprintf(buf, bufSize, "%s.%s:%s // method@%0*x",
795 outSize = snprintf(buf, bufSize, "<method?> // method@%0*x"
    [all...]
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaDec.c 843 SizeT outSize = *destLen;
854 if (outSize > p->dicBufSize - dicPos)
861 outSizeCur = dicPos + outSize;
872 outSize -= outSizeCur;
876 if (outSizeCur == 0 || outSize == 0)
977 SizeT outSize = *destLen;
987 p.dicBufSize = outSize;
992 res = LzmaDec_DecodeToDic(&p, outSize, src, srcLen, finishMode, status);
  /frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
WallpaperCropActivity.java 335 Point outSize = getDefaultWallpaperSize(getResources(),
338 inSize.x, inSize.y, outSize.x, outSize.y, false);
348 crop, rotation, outSize.x, outSize.y, true, false, onEndCrop);
    [all...]
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
WallpaperCropActivity.java 336 Point outSize = getDefaultWallpaperSize(getResources(),
339 inSize.x, inSize.y, outSize.x, outSize.y, false);
352 crop, rotation, outSize.x, outSize.y, true, false, onEndCrop);
    [all...]
  /external/deqp/modules/glshared/
glsShaderExecUtil.cpp 787 const int outSize = output.varType.getScalarSize();
803 if (outSize == 4 && outNumLocs == 1)
810 deUint32* dstPtr = &dstPtrBase[outSize*valNdx + outVecSize*locNdx];
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
Bench.cpp 344 STDMETHOD(SetRatioInfo)(const UInt64 *inSize, const UInt64 *outSize);
363 STDMETHODIMP CBenchProgressInfo::SetRatioInfo(const UInt64 *inSize, const UInt64 *outSize)
375 info.PackSize = *outSize;
381 info.UnpackSize = BenchInfo.UnpackSize + *outSize;
456 UInt64 GetDecompressRating(UInt64 elapsedTime, UInt64 freq, UInt64 outSize, UInt64 inSize, UInt32 numIterations)
458 UInt64 numCommands = (inSize * 200 + outSize * 4) * numIterations;
646 UInt64 outSize = kBufferSize;
647 RINOK(decoder->Code(inStream, crcOutStream, 0, &outSize, progressInfo[decoderIndex]));
  /external/conscrypt/src/main/native/
org_conscrypt_NativeCrypto.cpp     [all...]
  /external/robolectric/lib/main/
android.jar 
  /prebuilts/sdk/17/
android.jar 

Completed in 1704 milliseconds

1 2