HomeSort by relevance Sort by last modified time
    Searched refs:compressed (Results 26 - 50 of 148) sorted by null

12 3 4 5 6

  /libcore/luni/src/test/java/libcore/java/util/zip/
DeflaterOutputStreamTest.java 120 // make output buffer large enough that even if compressed it
128 byte[] compressed = baos.toByteArray();
130 // compressed byte count is larger than the
132 // it will also fail because the compressed length will be
134 assertTrue("compressed=" + compressed.length
136 compressed.length > deflaterBufferSize);
139 ByteArrayInputStream bais = new ByteArrayInputStream(compressed);
  /external/chromium_org/third_party/opus/src/include/
opus_custom.h 194 * @param [out] compressed <tt>char *</tt>: The compressed data is written here. This may not alias pcm and must be at least maxCompressedBytes long.
197 * @return Number of bytes written to "compressed".
206 unsigned char *compressed,
215 * @param [out] compressed <tt>char *</tt>: The compressed data is written here. This may not alias pcm and must be at least maxCompressedBytes long.
218 * @return Number of bytes written to "compressed".
227 unsigned char *compressed,
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stacktrace.h 64 u32 *compressed, uptr size);
66 u32 *compressed, uptr size);
  /frameworks/testing/uiautomator/library/testrunner-src/com/android/uiautomator/core/
UiAutomationShellWrapper.java 74 public void setCompressedLayoutHierarchy(boolean compressed) {
76 if (compressed)
  /packages/inputmethods/PinyinIME/
Android.mk 22 # Make sure our dictionary file is not compressed, so we can read it with
  /external/chromium/net/spdy/
spdy_test_util.h 40 bool compressed; member in struct:net::SpdyHeaderInfo
125 bool compressed,
134 bool compressed,
187 // Constructs a standard SPDY GET SYN packet, optionally compressed
193 bool compressed,
197 // Constructs a standard SPDY GET SYN packet, optionally compressed.
203 bool compressed,
207 // Constructs a standard SPDY GET SYN packet, optionally compressed.
214 bool compressed,
spdy_test_util.cc 167 header_info.compressed, &headers);
171 header_info.compressed, &headers);
178 header_info.compressed, &headers);
269 bool compressed,
278 compressed,
290 bool compressed,
305 compressed, // Compressed
318 // Constructs a standard SPDY GET SYN packet, optionally compressed
324 bool compressed,
    [all...]
  /external/chromium_org/net/websockets/
websocket_inflater_test.cc 189 scoped_refptr<IOBufferWithSize> compressed; local
202 compressed = deflater.GetOutput(deflater.CurrentOutputSize());
204 ASSERT_TRUE(compressed);
207 ASSERT_TRUE(inflater.AddBytes(compressed->data(), compressed->size()));
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_tex_layout.c 56 if (mt->compressed)
96 if (mt->compressed) {
135 if (mt->compressed) {
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_tex_layout.c 56 if (mt->compressed)
96 if (mt->compressed) {
135 if (mt->compressed) {
  /packages/apps/Contacts/src/com/android/contacts/editor/
PhotoEditorView.java 157 final byte[] compressed = ContactPhotoUtils.compressBitmap(scaled);
158 if (compressed != null) mEntry.setPhoto(compressed);
  /external/chromium_org/net/spdy/
spdy_test_util_common.h 147 bool compressed; member in struct:net::SpdyHeaderInfo
333 bool compressed,
349 bool compressed,
394 // Constructs a standard SPDY GET SYN frame, optionally compressed
400 bool compressed,
405 bool compressed,
409 // Constructs a standard SPDY GET SYN frame, optionally compressed.
416 bool compressed,
  /external/chromium_org/third_party/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/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);
  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
UiAutomatorBridge.java 77 public void setCompressedLayoutHierarchy(boolean compressed) {
79 if (compressed)
  /external/chromium_org/printing/
image.h 76 bool LoadPng(const std::string& compressed);
  /external/chromium_org/skia/ext/
vector_canvas_unittest.cc 88 std::string compressed; local
89 base::ReadFileToString(filename, &compressed);
90 EXPECT_TRUE(compressed.size());
94 reinterpret_cast<const unsigned char*>(compressed.data()),
95 compressed.size(), &bitmap));
129 std::vector<unsigned char> compressed; local
136 &compressed));
137 ASSERT_TRUE(compressed.size());
140 ASSERT_EQ(fwrite(&*compressed.begin(), 1, compressed.size(), f)
337 std::string compressed; local
338 base::ReadFileToString(base::MakeAbsoluteFilePath(filename), &compressed); local
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/table/
table_builder.cc 157 std::string* compressed = &r->compressed_output; local
158 if (port::Snappy_Compress(raw.data(), raw.size(), compressed) &&
159 compressed->size() < raw.size() - (raw.size() / 8u)) {
160 block_contents = *compressed;
162 // Snappy not supported, or compressed less than 12.5%, so just
  /external/chromium_org/tools/imagediff/
image_diff.cc 103 std::vector<unsigned char> compressed;
108 compressed.insert(compressed.end(), buf, buf + num_read);
113 if (!image_diff_png::DecodePNG(&compressed[0], compressed.size(),
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
DDSLoader.java 106 private boolean compressed; field in class:DDSLoader
158 compressed = true;
257 compressed = true;
291 compressed = false;
314 compressed = false;
398 if (compressed) {
532 * Reads a DXT compressed image from the InputStream
535 * @return ByteBuffer containing compressed DXT image in the format specified by pixelFormat_
675 * Reads a DXT compressed image from the InputStream
678 * @return ByteBuffer containing compressed DXT image in the format specified by pixelFormat
    [all...]
  /external/chromium/net/base/
sdch_filter_unittest.cc 36 // This will ensure that gzip compressed data can be fed to the chain in one
46 // Note SDCH compressed data will include a reference to the SDCH dictionary.
82 // Build compressed data that refers to our dictionary.
83 std::string compressed(server_hash);
84 compressed.append("\0", 1);
85 compressed.append(vcdiff_compressed_data_);
86 return compressed;
419 std::string compressed(NewSdchCompressedData(dictionary));
432 EXPECT_TRUE(FilterTestData(compressed, feed_block_size, output_block_size,
442 EXPECT_TRUE(FilterTestData(compressed, feed_block_size, output_block_size
    [all...]
  /external/chromium_org/net/base/
sdch_filter_unittest.cc 31 // This will ensure that gzip compressed data can be fed to the chain in one
41 // Note SDCH compressed data will include a reference to the SDCH dictionary.
76 // Build compressed data that refers to our dictionary.
77 std::string compressed(server_hash);
78 compressed.append("\0", 1);
79 compressed.append(vcdiff_compressed_data_);
80 return compressed;
413 std::string compressed(NewSdchCompressedData(dictionary));
426 EXPECT_TRUE(FilterTestData(compressed, feed_block_size, output_block_size,
436 EXPECT_TRUE(FilterTestData(compressed, feed_block_size, output_block_size
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketPerMessageDeflateTest.cpp 240 std::vector<char> compressed; local
244 std::copy(&f1.payload[0], &f1.payload[f1.payloadLength], std::inserter(compressed, compressed.end()));
256 std::copy(&f3.payload[0], &f3.payload[f3.payloadLength], std::inserter(compressed, compressed.end()));
258 EXPECT_EQ(7u, compressed.size());
259 EXPECT_EQ(0, memcmp("\xf2\x48\xcd\xc9\xc9\x07\x00", &compressed[0], compressed.size()));
  /ndk/build/tools/
dev-platform-compress.sh 19 # Compressed expanded platform files into development/ndk/platforms/
29 into the compressed/minimal structure used in development/ndk/platforms.
51 DSTDIR=/tmp/ndk-$USER/platforms-compressed
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
PhotoProcessor.java 249 final boolean compressed = b.compress(Bitmap.CompressFormat.JPEG, quality, baos);
254 if (!compressed) {
275 * Retrieves the compressed display photo as a byte array.
282 * Retrieves the compressed thumbnail photo as a byte array.

Completed in 1594 milliseconds

12 3 4 5 6