HomeSort by relevance Sort by last modified time
    Searched full:compressed (Results 1 - 25 of 1022) 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/qemu/android/utils/
jpeg-compress.h 36 * somewhere else along with some extra data about the compressed image.
37 * cunk_size - Number of bytes to increment the compressed buffer with each time
50 /* Returns compressed data size.
54 * Compressed data size.
58 /* Returns compressed buffer.
62 * Compressed buffer. NOTE: if 'header_size' parameter passed to the jpeg_compressor_create
64 * header. Compressed data follows immediately after that header.
68 /* Returns size of the custom header placed before the compressed data.
72 * Size of the custom header placed before the compressed data.
  /cts/tests/src/android/opengl/cts/
CompressedTextureStubActivity.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); //stub for now
63 compressed = CompressedTextureLoader.loadTexturePVRTC(mResources, R.raw.pvrtex);
66 mCompressedTextureView = new CompressedTextureSurfaceView(this, bitmap, compressed);
  /development/tools/emulator/system/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.
73 /* Copies out compressed JPEG buffer.
  /external/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.
  /external/jmdns/src/javax/jmdns/impl/constants/
DNSLabel.java 21 * Compressed label [RFC 1035]
23 Compressed("compressed label", 0xC0),
  /external/freetype/include/freetype/
ftgzip.h 5 /* Gzip-compressed stream support. */
43 /* Using gzip-compressed font files. */
57 * Open a new stream to parse gzip-compressed font files. This is
58 * mainly used to support the compressed `*.pcf.gz' fonts that come
84 * compressed file, the library will try to open a gzipped stream from
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/skia/tests/
FlateTest.cpp 45 SkDynamicMemoryWStream compressed; local
46 bool status = SkFlate::Deflate(testStream, &compressed);
60 REPORTER_ASSERT(reporter, compressed.getOffset() < 1024);
62 REPORTER_ASSERT(reporter, compressed.getOffset() > 1024);
64 SkAutoDataUnref data1(compressed.copyToData());
  /external/webkit/Source/WebKit/qt/tests/MIMESniffing/
TestData.h 55 {":/application_atom+xml", "application/x-rar-compressed", false, 0},
56 {":/application_atom+xml", "application/x-rar-compressed", true, 0},
105 {":/application_ogg", "application/x-rar-compressed", false, 0},
106 {":/application_ogg", "application/x-rar-compressed", true, 0},
155 {":/application_pdf", "application/x-rar-compressed", false, 0},
156 {":/application_pdf", "application/x-rar-compressed", true, 0},
205 {":/application_postscript", "application/x-rar-compressed", false, 0},
206 {":/application_postscript", "application/x-rar-compressed", true, 0},
255 {":/application_rdf+xml", "application/x-rar-compressed", false, 0},
256 {":/application_rdf+xml", "application/x-rar-compressed", true, 0}
    [all...]
resources.qrc 10 <file alias="application_x-rar-compressed">resources/application_x-rar-compressed</file>
  /external/qemu/
trace.c 36 char compressed[kCompressedSize]; member in struct:TraceBB
56 char compressed[kCompressedSize]; member in struct:TraceInsn
78 char compressed[kCompressedSize]; member in struct:TraceAddr
89 char compressed[kCompressedSize]; member in struct:TraceExc
100 char compressed[kCompressedSize]; member in struct:TracePid
109 char compressed[kCompressedSize]; member in struct:TraceMethod
351 trace_bb.compressed_ptr = trace_bb.compressed;
352 trace_bb.high_water_ptr = &trace_bb.compressed[kCompressedSize] - kMaxBBCompressed;
375 trace_insn.compressed_ptr = trace_insn.compressed;
376 trace_insn.high_water_ptr = &trace_insn.compressed[kCompressedSize] - kMaxInsnCompressed
    [all...]
  /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 compressed data into a byte buffer. The result will be bytes of compressed
111 * @return the number of bytes read or -1 if the end of the compressed input
  /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);
DeflaterOutputStreamTest.java 104 // make output buffer large enough that even if compressed it
112 byte[] compressed = baos.toByteArray();
114 // compressed byte count is larger than the
116 // it will also fail because the compressed length will be
118 assertTrue("compressed=" + compressed.length
120 compressed.length > deflaterBufferSize);
123 ByteArrayInputStream bais = new ByteArrayInputStream(compressed);
  /packages/apps/Contacts/src/com/android/contacts/util/
ImageViewDrawableSetter.java 35 * Initialized with a target ImageView. When provided with a compressed image
82 protected Bitmap setCompressedImage(byte[] compressed) {
86 } else if (mPreviousDrawable != null && Arrays.equals(mCompressed, compressed)) {
94 final Drawable newDrawable = (compressed == null)
96 : decodedBitmapDrawable(compressed);
99 mCompressed = compressed;
144 private BitmapDrawable decodedBitmapDrawable(byte[] compressed) {
146 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
  /external/openssh/
compress.c 64 debug("compress outgoing: raw data %llu, compressed %llu, factor %.2f",
69 debug("compress incoming: raw data %llu, compressed %llu, factor %.2f",
82 * compressed using this function will form a single compressed data stream;
86 * receiver. This appends the compressed data to the output buffer.
113 /* Append compressed data to output_buffer. */
127 * uncompressed using this function will form a single compressed data
130 * buffer_compress was called, and in the same order that buffers compressed
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
flat.h 52 #define FLAT_FLAG_GZIP 0x0004 /* all but the header is compressed */
53 #define FLAT_FLAG_GZDATA 0x0008 /* only data/relocs are compressed (for XIP) */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
flat.h 52 #define FLAT_FLAG_GZIP 0x0004 /* all but the header is compressed */
53 #define FLAT_FLAG_GZDATA 0x0008 /* only data/relocs are compressed (for XIP) */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
flat.h 52 #define FLAT_FLAG_GZIP 0x0004 /* all but the header is compressed */
53 #define FLAT_FLAG_GZDATA 0x0008 /* only data/relocs are compressed (for XIP) */
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stacktrace.cc 119 uptr StackTrace::CompressStack(StackTrace *stack, u32 *compressed, uptr size) {
124 compressed[i] = stack->trace[i];
128 compressed[stack->size] = 0;
144 compressed[c_index++] = offset;
151 compressed[c_index++] = hi;
152 compressed[c_index++] = lo;
158 compressed[c_index] = 0;
160 compressed[c_index + 1] = 0;
166 UncompressStack(&check_stack, compressed, size);
183 u32 *compressed, uptr size)
    [all...]

Completed in 923 milliseconds

1 2 3 4 5 6 7 8 91011>>