Searched defs:compressed (Results 26 - 50 of 65) sorted by relevance

123

/external/mesa3d/src/gallium/drivers/nvc0/
H A Dnvc0_miptree.c60 nvc0_mt_choose_storage_type(struct nv50_miptree *mt, boolean compressed) argument
66 compressed = FALSE; /* not yet supported */
75 if (compressed)
81 if (compressed)
88 if (compressed)
94 if (compressed)
100 if (compressed)
108 if (compressed)
114 if (compressed) {
128 if (compressed) {
[all...]
/external/skia/src/utils/
H A DSkParseColor.cpp193 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/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DECPoint.java384 public byte[] getEncoded(boolean compressed) argument
395 if (compressed)
/external/chromium_org/sync/internal_api/public/base/
H A Dunique_position.cc213 debug_string.append(", compressed: " + compressed_string);
393 // This allows us keep the position strings compressed as we sort them.
395 // The compressed format and the decode algorithm:
397 // The compressed string is a series of blocks, almost all of which are 8 bytes
398 // in length. The only exception is the last block in the compressed string,
524 std::string compressed = CompressImpl(str); local
525 DCHECK(IsValidCompressed(compressed));
526 DCHECK_EQ(str, Uncompress(compressed));
527 return compressed;
535 // The compressed lengt
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_eu.h126 bool compressed; member in struct:brw_compile
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
H A Dintel_mipmap_tree.h218 bool compressed; member in struct:intel_mipmap_tree
348 * the necessary information to implement compressed MSAA on Gen7+
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
H A Dnouveau_texture.c488 GLboolean compressed)
495 GLuint depth = compressed ? 1 : ti->Depth;
502 if (compressed)
571 GLboolean compressed)
577 if (compressed)
483 nouveau_teximage(struct gl_context *ctx, GLint dims, struct gl_texture_image *ti, GLsizei imageSize, GLenum format, GLenum type, const GLvoid *pixels, const struct gl_pixelstore_attrib *packing, GLboolean compressed) argument
564 nouveau_texsubimage(struct gl_context *ctx, GLint dims, struct gl_texture_image *ti, GLint xoffset, GLint yoffset, GLint zoffset, GLint width, GLint height, GLint depth, GLsizei imageSize, GLenum format, GLenum type, const void *pixels, const struct gl_pixelstore_attrib *packing, GLboolean compressed) argument
/external/lzma/xz-embedded/
H A Dxz_dec_stream.c77 vli_type compressed; member in struct:xz_dec::__anon26765
91 /* Observed compressed size of the current Block */
92 vli_type compressed; member in struct:xz_dec::__anon26766
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
265 if (s->block_header.compressed != VLI_UNKNOWN
266 && s->block_header.compressed
267 != s->block.compressed)
[all...]
H A Dxz_dec_lzma2.c228 /* Next position after decoding the compressed size of the chunk. */
235 * Compressed size of LZMA chunk or compressed/uncompressed
238 uint32_t compressed; member in struct:lzma2_dec
852 if (s->temp.size > 0 || s->lzma2.compressed == 0) {
854 if (tmp > s->lzma2.compressed - s->temp.size)
855 tmp = s->lzma2.compressed - s->temp.size;
861 if (s->temp.size + tmp == s->lzma2.compressed) {
880 s->lzma2.compressed -= s->rc.in_pos;
898 if (in_avail >= s->lzma2.compressed + LZMA_IN_REQUIRED)
899 s->rc.in_limit = b->in_pos + s->lzma2.compressed;
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_eu.h126 bool compressed; member in struct:brw_compile
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_mipmap_tree.h218 bool compressed; member in struct:intel_mipmap_tree
348 * the necessary information to implement compressed MSAA on Gen7+
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_texture.c488 GLboolean compressed)
495 GLuint depth = compressed ? 1 : ti->Depth;
502 if (compressed)
571 GLboolean compressed)
577 if (compressed)
483 nouveau_teximage(struct gl_context *ctx, GLint dims, struct gl_texture_image *ti, GLsizei imageSize, GLenum format, GLenum type, const GLvoid *pixels, const struct gl_pixelstore_attrib *packing, GLboolean compressed) argument
564 nouveau_texsubimage(struct gl_context *ctx, GLint dims, struct gl_texture_image *ti, GLint xoffset, GLint yoffset, GLint zoffset, GLint width, GLint height, GLint depth, GLsizei imageSize, GLenum format, GLenum type, const void *pixels, const struct gl_pixelstore_attrib *packing, GLboolean compressed) argument
/external/chromium_org/skia/ext/
H A Dvector_canvas_unittest.cc88 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
337 std::string compressed; local
338 base::ReadFileToString(base::MakeAbsoluteFilePath(filename), &compressed); local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
H A Dradeonsi_shader.c390 unsigned compressed = 0; local
398 compressed = (rctx->export_16bpc >> cbuf) & 0x1;
402 if (compressed) {
/external/chromium_org/ui/gfx/codec/
H A Dpng_codec_unittest.cc913 // It should fail when given non-JPEG compressed data.
920 // Make some compressed data.
921 std::vector<unsigned char> compressed; local
925 &compressed));
928 EXPECT_FALSE(PNGCodec::Decode(&compressed[0], compressed.size() / 2,
934 compressed[i] = i;
935 EXPECT_FALSE(PNGCodec::Decode(&compressed[0], compressed.size(),
/external/fio/
H A Dserver.h149 uint32_t compressed; member in struct:cmd_iolog_pdu
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dradeonsi_shader.c390 unsigned compressed = 0; local
398 compressed = (rctx->export_16bpc >> cbuf) & 0x1;
402 if (compressed) {
/external/chromium_org/third_party/leveldatabase/src/db/
H A Ddb_bench.cc345 std::string compressed; local
346 if (!port::Snappy_Compress(text, sizeof(text), &compressed)) {
348 } else if (compressed.size() >= sizeof(text)) {
649 std::string compressed; local
651 ok = port::Snappy_Compress(input.data(), input.size(), &compressed);
652 produced += compressed.size();
671 std::string compressed; local
672 bool ok = port::Snappy_Compress(input.data(), input.size(), &compressed);
676 ok = port::Snappy_Uncompress(compressed.data(), compressed
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dteximage.c1462 return GL_TRUE; /* true for any compressed format so far */
1685 * Return expected size of a compressed texture.
1697 * Return compressed texture block size, in pixels.
1923 /* additional checks for compressed textures */
1927 "glTexImage%dD(target can't be compressed)", dimensions);
2021 reason = "compressed paletted textures must be 2D";
2069 /* No compressed formats support borders at this time */
2827 * have the DTXn library, force a generic compressed format instead.
2911 * \param compressed only GL_TRUE for glCompressedTexImage1D/2D/3D calls.
2912 * \param format the user's image format (only used if !compressed)
2917 teximage(struct gl_context *ctx, GLboolean compressed, GLuint dims, GLenum target, GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, GLsizei imageSize, const GLvoid *pixels) argument
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fTextureLevelStateQueryTests.cpp61 bool compressed; member in struct:deqp::gles31::Functional::__anon20358::TextureGenerationSpec::TextureLevelSpec
386 level.compressed = false;
408 level.compressed = false;
456 level.compressed = false;
536 level.compressed = false;
559 level.compressed = false;
581 level.compressed = false;
614 // compressed
623 texGen.description = "GL_TEXTURE_2D, compressed";
630 level.compressed
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/84/1/.cp/ant_tasks/
H A DmetadataRepository-ant.jar ... AbstractMDRTask { java.net.URI location String name boolean compressed boolean failOnExists java.util.Map properties public void ...
/external/mesa3d/src/mesa/main/
H A Dteximage.c1462 return GL_TRUE; /* true for any compressed format so far */
1685 * Return expected size of a compressed texture.
1697 * Return compressed texture block size, in pixels.
1923 /* additional checks for compressed textures */
1927 "glTexImage%dD(target can't be compressed)", dimensions);
2021 reason = "compressed paletted textures must be 2D";
2069 /* No compressed formats support borders at this time */
2827 * have the DTXn library, force a generic compressed format instead.
2911 * \param compressed only GL_TRUE for glCompressedTexImage1D/2D/3D calls.
2912 * \param format the user's image format (only used if !compressed)
2917 teximage(struct gl_context *ctx, GLboolean compressed, GLuint dims, GLenum target, GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, GLsizei imageSize, const GLvoid *pixels) argument
[all...]
/external/chromium_org/media/cast/test/
H A Dend2end_unittest.cc88 std::string compressed; local
90 compressed.reserve(base_16.size() / 2);
96 compressed.assign(reinterpret_cast<const char*>(&v[0]), v.size());
97 return compressed;
/external/chromium_org/net/quic/crypto/
H A Dquic_crypto_server_config.cc1070 const string compressed = CertCompressor::CompressChain( local
1074 out->SetStringPiece(kCertificateTag, compressed);
1151 const string compressed = CertCompressor::CompressChain( local
1175 signature.size() + compressed.size() < max_unverified_size) {
1176 out->SetStringPiece(kCertificateTag, compressed);
/external/chromium_org/net/spdy/
H A Dspdy_test_util_common.cc765 BufferedSpdyFramer framer(spdy_version_, header_info.compressed);
813 bool compressed,
828 compressed,
840 bool compressed,
853 headers.Pass(), compressed, stream_id,
946 bool compressed,
951 stream_id, *block, request_priority, compressed, true);
956 bool compressed,
968 return ConstructSpdySyn(stream_id, block, request_priority, compressed, true);
1105 bool compressed,
811 ConstructSpdyControlFrame( scoped_ptr<SpdyHeaderBlock> headers, bool compressed, SpdyStreamId stream_id, RequestPriority request_priority, SpdyFrameType type, SpdyControlFlags flags, SpdyStreamId associated_stream_id) const argument
837 ConstructSpdyControlFrame( const char* const extra_headers[], int extra_header_count, bool compressed, SpdyStreamId stream_id, RequestPriority request_priority, SpdyFrameType type, SpdyControlFlags flags, const char* const* tail_headers, int tail_header_size, SpdyStreamId associated_stream_id) const argument
944 ConstructSpdyGet( const char* const url, bool compressed, SpdyStreamId stream_id, RequestPriority request_priority) const argument
954 ConstructSpdyGet(const char* const extra_headers[], int extra_header_count, bool compressed, int stream_id, RequestPriority request_priority, bool direct) const argument
1102 ConstructSpdySyn(int stream_id, const SpdyHeaderBlock& block, RequestPriority priority, bool compressed, bool fin) const argument
[all...]

Completed in 737 milliseconds

123