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

  /external/chromium_org/third_party/skia/src/core/
SkFlate.cpp 19 bool SkFlate::Inflate(SkStream*, SkWStream*) { return false; }
91 rc = inflate(&flateData, Z_NO_FLUSH);
97 rc = inflate(&flateData, Z_FINISH);
136 bool SkFlate::Inflate(SkStream* src, SkWStream* dst) {
  /external/skia/src/core/
SkFlate.cpp 19 bool SkFlate::Inflate(SkStream*, SkWStream*) { return false; }
91 rc = inflate(&flateData, Z_NO_FLUSH);
97 rc = inflate(&flateData, Z_FINISH);
136 bool SkFlate::Inflate(SkStream* src, SkWStream* dst) {
  /external/chromium_org/cc/resources/
layer_quad.h 91 void Inflate(float d) {
96 Inflate(kAntiAliasingInflateDistance);
  /external/chromium_org/net/websockets/
websocket_deflate_stream.cc 276 int WebSocketDeflateStream::Inflate(ScopedVector<WebSocketFrame>* frames) {
370 int result = Inflate(frames);
385 result = Inflate(frames);
websocket_inflater.cc 108 int result = Inflate(next_in, avail_in, Z_NO_FLUSH);
116 return Inflate(reinterpret_cast<const char*>(stream_->next_in),
121 int WebSocketInflater::Inflate(const char* next_in,
135 result = inflate(stream_.get(), flush);
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
gzip_stream.cc 87 int GzipInputStream::Inflate(int flush) {
89 // previous inflate filled output buffer. don't change input params yet.
112 int error = inflate(&zcontext_, flush);
150 zerror_ = Inflate(Z_NO_FLUSH);
152 // The underlying stream's Next returned false inside Inflate.
  /external/protobuf/src/google/protobuf/io/
gzip_stream.cc 76 int GzipInputStream::Inflate(int flush) {
78 // previous inflate filled output buffer. don't change input params yet.
108 int error = inflate(&zcontext_, flush);
134 zerror_ = Inflate(Z_NO_FLUSH);
136 // The underlying stream's Next returned false inside Inflate.
  /external/pdfium/core/src/fxge/Microsoft SDK/include/
GdiPlusTypes.h 467 VOID Inflate(IN REAL dx,
476 VOID Inflate(IN const PointF& point)
478 Inflate(point.X, point.Y);
670 VOID Inflate(IN INT dx,
679 VOID Inflate(IN const Point& point)
681 Inflate(point.X, point.Y);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplustypes.h 220 VOID Inflate(INT dx, INT dy) {
226 VOID Inflate(const Point& point) {
227 Inflate(point.X, point.Y);
345 VOID Inflate(REAL dx, REAL dy) {
351 VOID Inflate(const PointF& point) {
352 Inflate(point.X, point.Y);
  /art/runtime/
monitor.cc 99 // We should only inflate a lock if the owner is ourselves or suspended. This avoids a race
121 // We should only inflate a lock if the owner is ourselves or suspended. This avoids a race
653 void Monitor::Inflate(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code) {
664 VLOG(monitor) << "monitor: Inflate with hashcode " << hash_code
679 // We own the monitor, we can easily inflate it.
680 Inflate(self, self, obj.Get(), hash_code);
683 // Suspend the owner, inflate. First change to blocked and give up mutator_lock_.
698 // Go ahead and inflate the lock.
699 Inflate(self, owner, obj.Get(), hash_code);
748 // We'd overflow the recursion count, so inflate the monitor
    [all...]
  /external/pdfium/core/include/fxcrt/
fx_coordinates.h 293 void Inflate(baseType x, baseType y)
300 void Inflate(const FXT_POINT &p)
302 Inflate(p.x, p.y);
304 void Inflate(baseType left, baseType top, baseType right, baseType bottom)
311 void Inflate(const FXT_RECT &rt)
313 Inflate(rt.left, rt.top, rt.left + rt.width, rt.top + rt.height);
682 void Inflate(FX_FLOAT x, FX_FLOAT y)
691 void Inflate(FX_FLOAT left, FX_FLOAT bottom, FX_FLOAT right, FX_FLOAT top)
700 void Inflate(const CFX_FloatRect &rt)
702 Inflate(rt.left, rt.bottom, rt.right, rt.top);
    [all...]

Completed in 663 milliseconds