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

1 2 3 4

  /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/squashfs-tools/kernel/fs/squashfs/
block.c 2 * Squashfs - a compressed read only filesystem for Linux
89 int bytes, compressed, b = 0, k = 0, page = 0, avail; local
102 compressed = SQUASHFS_COMPRESSED_BLOCK(length);
108 index, compressed ? "" : "un", length, srclength);
134 compressed = SQUASHFS_COMPRESSED(length);
140 compressed ? "" : "un", length);
155 if (compressed) {
  /toolchain/binutils/binutils-2.25/bfd/
compress.c 0 /* Compressed section support (intended for debug sections).
39 /* It is possible the section consists of several compressed
83 Return @code{TRUE} if the full section contents is compressed
200 /* Read in the full compressed section contents. */
206 /* Clear rawsize, set size to compressed size and set compress_status
207 to COMPRESS_SECTION_NONE. If the compressed size is bigger than
289 Return @code{TRUE} if @var{section} is compressed.
297 bfd_boolean compressed; local
304 compressed = (bfd_get_section_contents (abfd, sec, compressed_buffer, 0, 12)
311 if (compressed
    [all...]
  /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);
CompressedTextureLoader.java 72 * Get the compressed data of the texture.
200 ETC1Util.ETC1Texture compressed = compressTexture(dataBuffer, local
206 Texture tex = new Texture(compressed.getWidth(), compressed.getHeight(),
207 ETC1.ETC1_RGB8_OES, compressed.getData(), TEXTURE_ETC1);
  /external/libunwind/src/
elfxx.h 188 // Do not process the compressed section for local unwinds.
191 // when an ANR occurs in the system. Compressed sections are
197 uint8_t *compressed = NULL; local
199 if (elf_w (find_section_mapped) (&map->ei, ".gnu_debugdata", &compressed,
201 if (elf_w (xz_decompress) (compressed, compressed_len,
  /external/libxml2/include/libxml/
xmlIO.h 134 int compressed; /* -1=unknown, 0=not compressed, 1=compressed */ member in struct:_xmlParserInputBuffer
  /external/elfutils/libelf/
elf_compress.c 66 caller to fill in with a header) plus zlib compressed date. Also
67 returns the new buffer size in new_size (hsize + compressed data
68 size). Returns (void *) -1 when FORCE is false and the compressed
76 /* The compressed data is the on-disk data. We simplify the
175 compression forced and we are using more compressed data
380 int compressed = (sh_flags & SHF_COMPRESSED); local
384 if (compressed == 1)
456 /* The section is now compressed, we could keep the uncompressed
467 if (compressed == 0)
  /external/lzma/xz-embedded/
xz_dec_stream.c 74 * Value stored in the Compressed Size field, or
75 * VLI_UNKNOWN if Compressed Size is not present.
77 vli_type compressed; member in struct:xz_dec::__anon19208
91 /* Observed compressed size of the current Block */
92 vli_type compressed; member in struct:xz_dec::__anon19209
218 * Decode the Compressed Data field from a Block. Update and validate
219 * the observed compressed and uncompressed sizes of the Block so that
243 s->block.compressed += b->in_pos - s->in_start;
250 if (s->block.compressed > s->block_header.compressed
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_mipmap_tree.h 172 * Compressed Multisample Surface. The surface is stored as in
218 bool compressed; member in struct:intel_mipmap_tree
348 * the necessary information to implement compressed MSAA on Gen7+
  /external/skia/src/utils/
SkParseColor.cpp 193 int compressed = 0; local
196 compressed <<= 5;
197 compressed |= *name ? *name++ - 'a' + 1 : 0 ;
200 compressed <<= 1;
201 compressed |= 1;
203 compressed |= 0x80000000;
207 compressed &= ~1;
211 SkDebugf("0x%08x, ", compressed);
  /external/squashfs-tools/squashfs-tools/
read_fs.c 2 * Read a squashfs filesystem. This is a highly compressed read only
59 int res, compressed; local
68 compressed = SQUASHFS_COMPRESSED(c_byte);
79 if(compressed) {
140 TRACE("scan_inode_table: read compressed block 0x%llx "
562 * we know how decompress a filesystem compressed with these
  /external/avahi/avahi-core/
dns.c 347 int compressed = 0; local
363 if (!compressed)
375 if (!compressed)
395 if (!compressed)
398 /* Compressed label */
410 if (!compressed)
413 compressed = 1;
  /external/mesa3d/src/gallium/drivers/radeonsi/
radeonsi_shader.c 390 unsigned compressed = 0; local
398 compressed = (rctx->export_16bpc >> cbuf) & 0x1;
402 if (compressed) {
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_eu.h 126 bool compressed; member in struct:brw_compile
  /external/opencv3/modules/videoio/src/
cap_vfw.cpp 680 PAVISTREAM compressed; member in class:CvVideoWriter_VFW
692 compressed = uncompressed = 0;
703 if( compressed )
704 AVIStreamRelease( compressed );
785 if( AVIMakeCompressedStream( &compressed, uncompressed, pcopts, 0 ) == AVIERR_OK &&
786 AVIStreamSetFormat( compressed, 0, &bmih, sizeof(bmih)) == AVIERR_OK )
810 if( !compressed && !createStreams( cvGetSize(image), image->nChannels > 1 ))
826 result = AVIStreamWrite( compressed, pos++, 1, image->imageData,
  /hardware/qcom/audio/legacy/libalsa-intf/
aplay.c 49 static int compressed = 0; variable
63 {"compressed", 0, 0, 'T'},
206 if (compressed) {
378 if (compressed && start) {
515 if (compressed) {
581 "-T <MP3, AAC, AC3_PASS_THROUGH> -- Compressed\n"
618 compressed = 1;
619 printf("compressed codec type requested = %s\n", optarg);
633 "-T -- Compressed\n"
  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/ipaddr/
ipaddr.py 436 def compressed(self): member in class:_IPAddrBase
    [all...]
  /external/fio/
server.h 178 uint32_t compressed; member in struct:cmd_iolog_pdu
  /prebuilts/tools/common/m2/repository/com/squareup/javawriter/2.1.1/
javawriter-2.1.1.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/javawriter/2.2.1/
javawriter-2.2.1.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/javawriter/2.5.0/
javawriter-2.5.0.jar 
  /prebuilts/tools/common/offline-m2/com/squareup/javawriter/2.5.0/
javawriter-2.5.0.jar 
  /build/tools/ijar/
zip.cc 185 // cursor to the first byte after the compressed data.
189 int SkipFile(const bool compressed);
192 int ProcessFile(const bool compressed);
288 // Write ZIP file header in the output. Since the compressed size is not
290 // to "compressed size" in the file header that should be passed to
294 // Fill in the "compressed size" and "uncompressed size" fields in a local
308 size_t compressed, uncompressed; local
310 if (!ProcessCentralDirEntry(central_dir_current_, &compressed, &uncompressed,
326 if (ProcessLocalFileEntry(compressed, uncompressed) < 0) {
379 // If the zip is compressed, compressed and uncompressed size members ar
    [all...]
  /external/deqp/modules/gles31/functional/
es31fTextureLevelStateQueryTests.cpp 130 bool compressed; member in struct:deqp::gles31::Functional::__anon10700::TextureGenerationSpec::TextureLevelSpec
138 , compressed (false)
422 level.compressed = false;
443 level.compressed = false;
464 level.compressed = false;
491 level.compressed = false;
515 level.compressed = false;
538 level.compressed = false;
558 level.compressed = false;
578 level.compressed = false
    [all...]

Completed in 380 milliseconds

1 2 3 4