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

  /external/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.
  /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 92 // We should only inflate a lock if the owner is ourselves or suspended. This avoids a race
114 // We should only inflate a lock if the owner is ourselves or suspended. This avoids a race
802 void Monitor::Inflate(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code) {
813 VLOG(monitor) << "monitor: Inflate with hashcode " << hash_code
828 // We own the monitor, we can easily inflate it.
829 Inflate(self, self, obj.Get(), hash_code);
832 // Suspend the owner, inflate. First change to blocked and give up mutator_lock_.
845 // Go ahead and inflate the lock.
846 Inflate(self, owner, obj.Get(), hash_code);
    [all...]
  /external/pdfium/core/include/fxcrt/
fx_coordinates.h 239 void Inflate(baseType x, baseType y) {
245 void Inflate(const FXT_POINT& p) { Inflate(p.x, p.y); }
246 void Inflate(baseType left, baseType top, baseType right, baseType bottom) {
252 void Inflate(const FXT_RECT& rt) {
253 Inflate(rt.left, rt.top, rt.left + rt.width, rt.top + rt.height);
545 void Inflate(FX_FLOAT x, FX_FLOAT y) {
553 void Inflate(FX_FLOAT other_left,
564 void Inflate(const CFX_FloatRect& rt) {
565 Inflate(rt.left, rt.bottom, rt.right, rt.top)
    [all...]

Completed in 81 milliseconds