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

  /external/protobuf/src/google/protobuf/io/
gzip_stream.cc 244 int GzipOutputStream::Deflate(int flush) {
258 error = deflate(&zcontext_, flush);
276 zerror_ = Deflate(Z_NO_FLUSH);
288 // The loop in Deflate should consume all avail_in
289 GOOGLE_LOG(DFATAL) << "Deflate left bytes unconsumed";
302 zerror_ = Deflate(Z_FULL_FLUSH);
314 zerror_ = Deflate(Z_FINISH);
  /external/skia/src/core/
SkFlate.cpp 85 rc = deflate(&flateData, Z_NO_FLUSH);
91 rc = deflate(&flateData, Z_FINISH);
114 bool SkFlate::Deflate(SkStream* src, SkWStream* dst) {
118 bool SkFlate::Deflate(const void* ptr, size_t len, SkWStream* dst) {
123 bool SkFlate::Deflate(const SkData* data, SkWStream* dst) {
155 SkDEBUGCODE(returnValue =) deflate(zStream, flush);
  /art/runtime/
monitor.cc 588 bool Monitor::Deflate(Thread* self, mirror::Object* obj) {
590 // Don't need volatile since we only deflate with mutators suspended.
592 // If the lock isn't an inflated monitor, then we don't need to deflate anything.
597 // Can't deflate if we have anybody waiting on the CV.
603 // Can't deflate if we are locked and have a hash code.
607 // Can't deflate if our lock count is too high.
611 // Deflate to a thin lock.
    [all...]
  /external/pdfium/core/include/fxcrt/
fx_coordinates.h 321 void Deflate(baseType x, baseType y)
328 void Deflate(const FXT_POINT &p)
330 Deflate(p.x, p.y);
332 void Deflate(baseType left, baseType top, baseType right, baseType bottom)
339 void Deflate(const FXT_RECT &rt)
341 Deflate(rt.left, rt.top, rt.top + rt.width, rt.top + rt.height);
711 void Deflate(FX_FLOAT x, FX_FLOAT y)
720 void Deflate(FX_FLOAT left, FX_FLOAT bottom, FX_FLOAT right, FX_FLOAT top)
729 void Deflate(const CFX_FloatRect &rt)
731 Deflate(rt.left, rt.bottom, rt.right, rt.top)
    [all...]

Completed in 149 milliseconds