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

  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/
ContentTypeDetectorTest.java 149 final OutputStream gz = new GZIPOutputStream(buffer); local
150 gz.write("Hello gz!".getBytes());
151 gz.close();
  /external/opencv3/3rdparty/zlib/
gzlib.c 289 gzFile gz; local
298 gz = gz_open(path, fd, mode);
300 return gz;
  /external/pdfium/third_party/zlib_v128/
gzlib.c 289 gzFile gz; local
298 gz = gz_open(path, fd, mode);
300 return gz;
  /external/zlib/src/
gzlib.c 289 gzFile gz; local
298 gz = gz_open(path, fd, mode);
300 return gz;
  /hardware/bsp/intel/peripheral/libupm/src/mpu9150/
mpu60x0.cxx 115 int16_t gx, gy, gz; local
125 gz = ( (buffer[12] << 8) | buffer[13] );
136 m_gyroZ = float(gz);
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletSoftBody/
btSparseSDF.h 221 const btScalar gz[]={ d[4]-d[0],d[5]-d[1], local
227 normal.setZ(Lerp( Lerp(gz[0],gz[1],ix.f),
228 Lerp(gz[2],gz[3],ix.f),iy.f));
  /external/zlib/src/examples/
gzappend.c 266 file gz; local
269 gz.name = name;
270 gz.fd = open(name, O_RDWR, 0);
271 if (gz.fd == -1) bye("cannot open ", name);
272 gz.buf = malloc(CHUNK);
273 if (gz.buf == NULL) bye("out of memory", "");
274 gz.size = LGCHUNK;
275 gz.left = 0;
278 gzheader(&gz);
291 lastoff = lseek(gz.fd, 0L, SEEK_CUR) - gz.left
    [all...]
  /external/zlib/src/test/
minigzip.c 49 # define GZ_SUFFIX "-gz"
53 # define GZ_SUFFIX "-gz"
131 # define GZ_SUFFIX ".gz"
146 /* for Z_SOLO, create simplified gz* functions using deflate and inflate */
201 gzFile gz; local
204 gz = malloc(sizeof(struct gzFile_s));
205 if (gz == NULL)
207 gz->write = strchr(mode, 'w') != NULL;
208 gz->strm.zalloc = myalloc;
209 gz->strm.zfree = myfree
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/
DropBoxTest.java 118 File f1 = new File(dir, "f1.txt.gz");
120 File f3 = new File(dir, "f2.dat.gz");
195 File f2 = new File(dir, "DropBoxTest@" + (before + 100001) + ".txt.gz");
608 File gz = new File(dir, "file.gz"); local
609 GZIPOutputStream gzout = new GZIPOutputStream(new FileOutputStream(gz));
613 new DropBoxManager.Entry("gzipfile", 9000000, gz,
616 new DropBoxManager.Entry("gzipbinfile", 10000000, gz,
    [all...]
  /external/opencv3/modules/features2d/src/kaze/
AKAZEFeatures.cpp 1622 int gz = (i + 2)*(i + 2); local
    [all...]

Completed in 1084 milliseconds