HomeSort by relevance Sort by last modified time
    Searched full:compresseddata (Results 1 - 25 of 39) sorted by null

1 2

  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/
ETC1.java 51 public final ByteBuffer compressedData;
55 public ETC1Data (int width, int height, ByteBuffer compressedData, int dataOffset) {
58 this.compressedData = compressedData;
69 compressedData = BufferUtils.newUnsafeByteBuffer(fileSize);
72 compressedData.put(buffer, 0, readBytes);
74 compressedData.position(0);
75 compressedData.limit(compressedData.capacity());
82 width = getWidthPKM(compressedData, 0);
    [all...]
KTXTextureData.java 52 private ByteBuffer compressedData;
69 return compressedData != null;
74 if (compressedData != null) throw new GdxRuntimeException("Already prepared");
83 compressedData = BufferUtils.newUnsafeByteBuffer(fileSize);
86 compressedData.put(buffer, 0, readBytes);
87 compressedData.position(0);
88 compressedData.limit(compressedData.capacity());
95 compressedData = ByteBuffer.wrap(file.readBytes());
97 if (compressedData.get() != (byte)0x0AB) throw new GdxRuntimeException("Invalid KTX Header");
    [all...]
ETC1TextureData.java 84 Gdx.gl.glCompressedTexImage2D(target, 0, ETC1.ETC1_RGB8_OES, width, height, 0, data.compressedData.capacity()
85 - data.dataOffset, data.compressedData);
  /external/skia/src/pdf/
SkPDFStream.cpp 37 SkDynamicMemoryWStream compressedData;
38 SkDeflateWStream deflateWStream(&compressedData);
41 size_t length = compressedData.bytesWritten();
52 fCompressedData.reset(compressedData.detachAsStream());
  /frameworks/base/core/java/android/view/inputmethod/
InputMethodSubtypeArray.java 91 byte[] compressedData = mCompressedData;
93 if (compressedData == null && decompressedSize == 0) {
95 compressedData = mCompressedData;
97 if (compressedData == null && decompressedSize == 0) {
99 compressedData = compress(decompressedData);
100 if (compressedData == null) {
107 mCompressedData = compressedData;
112 if (compressedData != null && decompressedSize > 0) {
115 dest.writeByteArray(compressedData);
  /packages/apps/Camera2/src/com/android/camera/processing/imagebackend/
TaskCompressImageToJpeg.java 119 ByteBuffer compressedData;
133 compressedData = ByteBuffer.allocate(origBuffer.limit());
136 if (compressedData == null) {
143 compressedData.put(origBuffer);
145 compressedData.rewind();
153 if (compressedData.array() != null) {
154 exifData = Exif.getExif(compressedData.array());
215 compressedData.array(), safeCrop,
218 compressedData = ByteBuffer.allocate(croppedResult.length);
219 compressedData.put(ByteBuffer.wrap(croppedResult))
    [all...]
TaskChainedCompressImageToJpeg.java 89 byte[] compressedData = convertNv21toJpeg(chainedDataCopy,
91 onJpegEncodeDone(mId, inputImage, resultImage, compressedData,
  /external/libgdx/gdx/jni/
com.badlogic.gdx.graphics.glutils.ETC1.cpp 83 char* compressedData = (char*)(obj_compressedData?env->GetDirectBufferAddress(obj_compressedData):0);
89 etc1_decode_image((etc1_byte*)compressedData + offset, (etc1_byte*)decodedData + offsetDec, width, height, pixelSize, width * pixelSize);
100 etc1_byte* compressedData = (etc1_byte*)malloc(compressedSize);
101 etc1_encode_image((etc1_byte*)imageData + offset, width, height, pixelSize, width * pixelSize, compressedData);
102 return env->NewDirectByteBuffer(compressedData, compressedSize);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
CMSObjectIdentifiers.java 22 /** PKCS#9: 1.2.840.113549.1.9.16.1.9 -- smime ct compressedData */
23 static final ASN1ObjectIdentifier compressedData = PKCSObjectIdentifiers.id_ct_compressedData;
  /external/clang/test/CodeGenObjC/
debug-info-block-line.m 32 - (NSData *)compressedData;
79 NSString *encoded = [[data compressedData] encodedString:18];
  /external/libvncserver/libvncclient/
tight.c 528 uint8_t *compressedData;
539 compressedData = malloc(compressedLen);
540 if (compressedData == NULL) {
545 if (!ReadFromRFBServer(client, (char*)compressedData, compressedLen)) {
546 free(compressedData);
554 JpegSetSrcManager(&cinfo, compressedData, compressedLen);
564 free(compressedData);
588 free(compressedData);
661 uint8_t *compressedData,
665 client->jpegBufferPtr = compressedData;
    [all...]
rfbproto.c 265 static void JpegSetSrcManager(j_decompress_ptr cinfo, uint8_t *compressedData,
    [all...]
  /frameworks/base/core/java/android/app/backup/
BlobBackupHelper.java 185 private byte[] inflate(byte[] compressedData) {
187 if (compressedData != null) {
189 ByteArrayInputStream source = new ByteArrayInputStream(compressedData);
208 Log.v(TAG, "Inflated " + compressedData.length + " bytes to " + result.length);
  /external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/
DeflateCompressorTest.java 59 * @param compressedData
63 private byte[] uncompressWithJavaInflater(boolean nowrap, byte[] compressedData)
67 new InflaterInputStream(new ByteArrayInputStream(compressedData), inflater);
  /external/fonttools/Lib/fontTools/ttLib/
sfnt.py 404 compressedData = zlib.compress(data, self.zlibCompressionLevel)
405 if self.uncompressed or len(compressedData) >= self.origLength:
410 rawData = compressedData
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/ktx/
KTXProcessor.java 349 if (etcData != null) return etcData.compressedData.limit() - etcData.dataOffset;
356 etcData.compressedData.position(etcData.dataOffset);
357 etcData.compressedData.get(result);
  /external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
DefaultDeflateCompatibilityWindow.java 349 byte[] compressedData = buffer.toByteArray();
351 byte[] sha256OfCompressedData = digester.digest(compressedData);
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineImageUtil.cpp 749 deUint8* const compressedData = (deUint8*)compressedLevel->getData();
754 tcu::astc::generateRandomValidBlocks(compressedData, compressedLevel->getDataSize()/tcu::astc::BLOCK_SIZE_BYTES,
761 compressedData[byteNdx] = 0xFF & random.getUint32();
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
PKCSObjectIdentifiers.java 234 /** PKCS#9: 1.2.840.113549.1.9.16.1.9 -- smime ct compressedData */
  /external/bouncycastle/
bouncycastle.config 63 org/bouncycastle/asn1/cms/CompressedData.java \
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3dx9mesh.h     [all...]
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48-sources.jar 
  /prebuilts/tools/common/offline-m2/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48-sources.jar 
  /external/boringssl/src/crypto/obj/
obj_dat.h     [all...]
objects.txt 259 id-smime-ct 9 : id-smime-ct-compressedData
    [all...]

Completed in 1361 milliseconds

1 2