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

1 2 3 4 5 6 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/interfaces/
ECPointEncoder.java 8 * to turn this on call setPointFormat() with "COMPRESSED".
14 * in point compression will not be used. If the String "COMPRESSED" is passed point
  /external/skia/tests/
DeflateWStream.cpp 35 SkAutoTDelete<SkStreamAsset> compressed(
39 SkAssertResult(SkFlate::Inflate(compressed,
51 o.writeStream(compressed.get(), compressed->getLength());
52 compressed->rewind();
  /cts/tests/tests/graphics/src/android/opengl/cts/
CompressedTextureCtsActivity.java 49 CompressedTextureLoader.Texture compressed = null; local
57 compressed = CompressedTextureLoader.createFromUncompressedETC1(bitmap);
59 compressed = CompressedTextureLoader.loadTextureDXT(mResources, R.raw.ddstex);
61 compressed = CompressedTextureLoader.loadTextureATC(mResources, 0); //cts for now
63 compressed = CompressedTextureLoader.loadTexturePVRTC(mResources, R.raw.pvrtex);
66 mCompressedTextureView = new CompressedTextureSurfaceView(this, bitmap, compressed);
  /device/generic/goldfish/camera/
JpegCompressor.h 46 * The compressed image will be saved in mStream member of this class. Use
47 * getCompressedSize method to obtain buffer size of the compressed image,
48 * and getCompressedImage to copy out the compressed image.
62 /* Get size of the compressed JPEG buffer.
66 * Size of the compressed JPEG buffer.
70 /* Copies out compressed JPEG buffer.
  /external/freetype/include/
ftbzip2.h 5 /* Bzip2-compressed stream support. */
43 /* Using bzip2-compressed font files. */
57 * Open a new stream to parse bzip2-compressed font files. This is
58 * mainly used to support the compressed `*.pcf.bz2' fonts that come
84 * compressed file, the library will try to open a bzip2 compressed stream
ftlzw.h 5 /* LZW-compressed stream support. */
43 /* Using LZW-compressed font files. */
56 * Open a new stream to parse LZW-compressed font files. This is
57 * mainly used to support the compressed `*.pcf.Z' fonts that come
81 * compressed file, the library will try to open a LZW stream from it
  /external/pdfium/third_party/freetype/include/
ftbzip2.h 5 /* Bzip2-compressed stream support. */
43 /* Using bzip2-compressed font files. */
57 * Open a new stream to parse bzip2-compressed font files. This is
58 * mainly used to support the compressed `*.pcf.bz2' fonts that come
84 * compressed file, the library will try to open a bzip2 compressed stream
ftlzw.h 5 /* LZW-compressed stream support. */
43 /* Using LZW-compressed font files. */
56 * Open a new stream to parse LZW-compressed font files. This is
57 * mainly used to support the compressed `*.pcf.Z' fonts that come
81 * compressed file, the library will try to open a LZW stream from it
  /libcore/luni/src/test/java/libcore/java/util/zip/
DeflaterTest.java 26 private byte[] compressed = new byte[32]; field in class:DeflaterTest
60 int lastDeflated = deflater.deflate(compressed, totalDeflated,
61 compressed.length - totalDeflated, flush);
63 inflater.setInput(compressed, totalDeflated, lastDeflated);
88 assertEquals(11, deflater.deflate(compressed, 0, compressed.length, Deflater.FULL_FLUSH));
95 assertEquals(9, deflater.deflate(compressed, 0, compressed.length, Deflater.FULL_FLUSH));
  /external/libvpx/libvpx/
usage_cx.dox 5 compressed data. The <code>deadline</code> parameter controls the amount
  /external/zlib/src/contrib/iostream/
test.cpp 10 // This text is getting compressed and sent to stdout.
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
usage_cx.dox 5 compressed data. The <code>deadline</code> parameter controls the amount
  /external/jmdns/src/javax/jmdns/impl/constants/
DNSLabel.java 21 * Compressed label [RFC 1035]
23 Compressed("compressed label", 0xC0),
  /external/tinycompress/
README 8 compressed APIs introduced in Linux 3.3
9 This library provides the APIs to open a ALSA compressed device and read/write
10 compressed data like MP3 etc to it.
  /external/squashfs-tools/kernel/fs/squashfs/
fragment.c 2 * Squashfs - a compressed read only filesystem for Linux
25 * This file implements code to handle compressed fragments (tail-end packed
29 * location on disk and compressed size using a fragment lookup table.
31 * compressed into metadata blocks. A second index table is used to locate
48 * location of the fragment and its compressed size
  /external/deqp/doc/testspecs/GLES31/
functional.copy_image.txt 31 + Copies between different compressed formats
32 + Copies between compressed and non-compressed formats
35 + Compressed ASTC formats
36 + Compressed ETC formats
37 + Compressed ETC2 formats
44 + Other compressed formats than ASTC, ETC and ETC2
  /external/kernel-headers/original/uapi/linux/
ppp_defs.h 41 #define PPP_VJC_COMP 0x2d /* VJ compressed TCP */
45 #define PPP_COMPFRAG 0xfb /* fragment compressed below bundle */
46 #define PPP_COMP 0xfd /* compressed packet */
107 __u32 vjs_compressed; /* outbound compressed packets */
111 __u32 vjs_compressedin; /* inbound compressed packets */
119 __u32 comp_bytes; /* compressed bytes */
120 __u32 comp_packets; /* compressed packets */
  /external/squashfs-tools/squashfs-tools/
info.c 2 * Create a squashfs filesystem. This is a highly compressed read only
96 printf("compressed block queue (deflate thread(s) -> main thread)\n");
104 printf("locked frag queue (compressed frags waiting while multi-block"
108 printf("compressed block queue (main & fragment deflate threads(s) ->"
115 printf("block write cache (compressed blocks waiting for the writer"
118 printf("fragment write cache (compressed fragments waiting for the"
122 printf("fragment cache (frags waiting to be compressed by fragment"
  /external/chromium-trace/trace-viewer/tracing/tracing/extras/importer/
zip_importer.html 17 * @fileoverview ZipImporter inflates zip compressed data and passes it along
31 * @param {eventData} string Possibly zip compressed data.
32 * @return {boolean} Whether eventData looks like zip compressed data.
  /external/llvm/unittests/Support/
CompressionTest.cpp 27 SmallString<32> Compressed;
29 EXPECT_EQ(zlib::StatusOK, zlib::compress(Input, Compressed, Level));
32 zlib::uncompress(Compressed, Uncompressed, Input.size()));
37 zlib::uncompress(Compressed, Uncompressed, Input.size() - 1));
  /frameworks/base/include/androidfw/
StreamingZipInflater.h 33 // Flavor that pages in the compressed data from a fd
36 // Flavor that gets the compressed data from an in-memory buffer
56 off64_t mInFileStart; // where the compressed data lives in the file
75 size_t mInTotalSize; // total size of compressed data for this blob
  /libcore/luni/src/main/java/java/util/zip/
DeflaterInputStream.java 28 * compressed data in the "deflate" format from the uncompressed
44 * uncompressed data, and this stream will be a source of compressed data.
55 * uncompressed data, and this stream will be a source of compressed data.
67 * uncompressed data, and this stream will be a source of compressed data.
99 * Reads a byte from the compressed input stream. The result will be a byte of compressed
109 * Reads up to {@code byteCount} bytes of compressed data into a byte buffer. The result will be bytes of compressed
111 * Returns the number of bytes read or -1 if the end of the compressed input
  /packages/apps/Contacts/src/com/android/contacts/util/
ImageViewDrawableSetter.java 37 * Initialized with a target ImageView. When provided with a compressed image
86 protected Bitmap setCompressedImage(byte[] compressed) {
92 && Arrays.equals(mCompressed, compressed)) {
100 Drawable newDrawable = decodedBitmapDrawable(compressed);
106 mCompressed = compressed;
162 private BitmapDrawable decodedBitmapDrawable(byte[] compressed) {
163 if (compressed == null) {
167 Bitmap bitmap = BitmapFactory.decodeByteArray(compressed, 0, compressed.length);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
CompressedTextureActivity.java 39 * Demonstrate how to use ETC1 format compressed textures.
41 * textures (compressed offline using the etc1tool), or
48 * Choose between creating a compressed texture on the fly or
49 * loading a compressed texture from a resource.
53 * When creating a compressed texture on the fly, choose
86 * Demonstrate how to load a compressed texture from an APK resource.
109 * Demonstrate how to create a compressed texture on the fly.
118 // Test the ETC1Util APIs for reading and writing compressed textures to I/O streams.
  /external/bzip2/
bzdiff.1 5 bzcmp, bzdiff \- compare bzip2 compressed files
22 program on bzip2 compressed files. All options specified are passed

Completed in 920 milliseconds

1 2 3 4 5 6 7 8 91011>>