HomeSort by relevance Sort by last modified time
    Searched defs:Deflate (Results 1 - 7 of 7) sorted by null

  /external/tensorflow/tensorflow/core/lib/io/snappy/
snappy_outputbuffer.cc 49 // we add it there else we directly deflate it.
58 // `data` is too large to fit in input buffer so we deflate it directly.
64 TF_RETURN_IF_ERROR(Deflate());
134 TF_RETURN_IF_ERROR(Deflate());
154 Status SnappyOutputBuffer::Deflate() {
  /external/tensorflow/tensorflow/core/lib/io/
zlib_outputbuffer.cc 124 TF_RETURN_IF_ERROR(Deflate(flush_mode));
149 // If there isn't enough space we deflate the existing contents of
151 // else we directly deflate it.
171 // `data` is too large to fit in input buffer so we deflate it directly.
183 TF_RETURN_IF_ERROR(Deflate(zlib_options_.flush_mode));
219 Status ZlibOutputBuffer::Deflate(int flush) {
220 int error = deflate(z_stream_.get(), flush);
225 string error_string = strings::StrCat("deflate() failed with error ", error);
  /external/perfetto/src/perfetto_cmd/
packet_writer.cc 85 inline void Deflate(const char* ptr, size_t size) {
86 return Deflate(reinterpret_cast<const uint8_t*>(ptr), size);
88 inline void Deflate(const void* ptr, size_t size) {
89 return Deflate(reinterpret_cast<const uint8_t*>(ptr), size);
91 void Deflate(const uint8_t* ptr, size_t size);
161 // byte - so this underfills the packet. To avoid this every 32kb we deflate
165 CheckEq(deflate(&stream_, Z_SYNC_FLUSH), Z_OK);
190 Deflate(packet_hdr.data(), packet_hdr_size);
194 Deflate(slice.start, slice.size);
203 CheckEq(deflate(&stream_, Z_FINISH), Z_STREAM_END)
    [all...]
  /external/protobuf/src/google/protobuf/io/
gzip_stream.cc 248 int GzipOutputStream::Deflate(int flush) {
262 error = deflate(&zcontext_, flush);
280 zerror_ = Deflate(Z_NO_FLUSH);
292 // The loop in Deflate should consume all avail_in
293 GOOGLE_LOG(DFATAL) << "Deflate left bytes unconsumed";
306 zerror_ = Deflate(Z_FULL_FLUSH);
318 zerror_ = Deflate(Z_FINISH);
  /build/soong/third_party/zip/
struct.go 31 Deflate uint16 = 8
  /external/pdfium/core/fxcrt/
fx_coordinates.h 300 void Deflate(float x, float y) {
308 void Deflate(float other_left,
319 void Deflate(const CFX_FloatRect& rt) {
320 Deflate(rt.left, rt.bottom, rt.right, rt.top);
328 that.Deflate(x, y);
471 void Deflate(BaseType x, BaseType y) {
477 void Deflate(const PointType& p) { Deflate(p.x, p.y); }
478 void Deflate(BaseType off_left,
487 void Deflate(const RectType& rt)
    [all...]
  /art/runtime/
monitor.cc 63 * deflate locks from time to time as part of heap trimming.
    [all...]

Completed in 453 milliseconds