HomeSort by relevance Sort by last modified time
    Searched defs:Deflate (Results 1 - 3 of 3) 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);
  /art/runtime/
monitor.cc 753 bool Monitor::Deflate(Thread* self, mirror::Object* obj) {
755 // Don't need volatile since we only deflate with mutators suspended.
757 // If the lock isn't an inflated monitor, then we don't need to deflate anything.
762 // Can't deflate if we have anybody waiting on the CV.
768 // Can't deflate if we are locked and have a hash code.
772 // Can't deflate if our lock count is too high.
776 // Deflate to a thin lock.
    [all...]
  /external/pdfium/core/include/fxcrt/
fx_coordinates.h 255 void Deflate(baseType x, baseType y) {
261 void Deflate(const FXT_POINT& p) { Deflate(p.x, p.y); }
262 void Deflate(baseType left, baseType top, baseType right, baseType bottom) {
268 void Deflate(const FXT_RECT& rt) {
269 Deflate(rt.left, rt.top, rt.top + rt.width, rt.top + rt.height);
568 void Deflate(FX_FLOAT x, FX_FLOAT y) {
576 void Deflate(FX_FLOAT other_left,
587 void Deflate(const CFX_FloatRect& rt) {
588 Deflate(rt.left, rt.bottom, rt.right, rt.top)
    [all...]

Completed in 82 milliseconds