/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/test/ |
A D | minigzip.c | 201 gzFile gz; local 225 gz->write ? deflateEnd(&(gz->strm)) : inflateEnd(&(gz->strm)); 231 return gz; 237 gzFile gz; in gzwrite() 244 if (gz == NULL || !gz->write) 261 gzFile gz; in gzread() 270 if (gz == NULL || gz->write) 297 int gzclose(gz) in gzclose() argument 298 gzFile gz; in gzclose() 320 free(gz); [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/examples/ |
A D | gzappend.c | 266 file gz; in gzscan() local 269 gz.name = name; in gzscan() 275 gz.left = 0; in gzscan() 278 gzheader(&gz); in gzscan() 291 lastoff = lseek(gz.fd, 0L, SEEK_CUR) - gz.left; in gzscan() 340 end = lseek(gz.fd, 0L, SEEK_CUR) - gz.left; in gzscan() 350 if (gz.left || readin(&gz)) in gzscan() 356 if (read(gz.fd, gz.buf, 1) != 1) bye("reading after seek on ", name); in gzscan() 357 *gz.buf = (unsigned char)(*gz.buf ^ (1 << ((8 - lastbit) & 7))); in gzscan() 382 free(gz.buf); in gzscan() [all …]
|
/AliOS-Things-master/components/py_engine/tests/io/data/ |
A D | bigfile1 | 41 … "https://pypi.python.org/packages/source/m/micropython-uasyncio/micropython-uasyncio-0.8.tar.gz", 44 "filename": "micropython-uasyncio-0.8.tar.gz", 55 …https://pypi.python.org/packages/source/m/micropython-uasyncio/micropython-uasyncio-0.6.2.tar.gz", 58 "filename": "micropython-uasyncio-0.6.2.tar.gz", 72 "filename": "micropython-uasyncio-0.6.1.tar.gz", 86 "filename": "micropython-uasyncio-0.8.1.tar.gz", 100 "filename": "micropython-uasyncio-0.7.tar.gz", 114 "filename": "micropython-uasyncio-0.7.1.tar.gz", 128 "filename": "micropython-uasyncio-0.6.tar.gz", 140 …https://pypi.python.org/packages/source/m/micropython-uasyncio/micropython-uasyncio-0.8.1.tar.gz", [all …]
|
/AliOS-Things-master/components/SDL2/src/gfx/ |
A D | README-rpm | 3 tar cvzf SDL_gfx-2.0.20.tar.gz SDL_gfx-2.0.20 6 cp SDL_gfx-2.0.20.tar.gz /usr/src/RPM/SOURCES/SDL_gfx-2.0.20.tar.gz 8 cp SDL_gfx-2.0.20.tar.gz /usr/src/redhat/SOURCES/SDL_gfx-2.0.20.tar.gz
|
A D | buildrpm.sh | 4 (cd ..; tar cvzf SDL_gfx-2.0.13.tar.gz SDL_gfx-2.0.13) 5 cp ../SDL_gfx-2.0.13.tar.gz /usr/src/RPM/SOURCES/SDL_gfx-2.0.13.tar.gz
|
A D | Makefile.in | 145 DIST_ARCHIVES = $(distdir).tar.gz 568 tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz 592 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz 601 tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz 609 *.tar.gz*) \ 610 GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ 621 *.shar.gz*) \ 622 GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/old/ |
A D | Makefile.riscos | 28 @/@.minigzip -d libc-gz 30 @/@.minigzip -d libc-gz 32 @/@.minigzip -d libc-gz 34 @/@.minigzip -d libc-gz 36 @/@.minigzip -d libc-gz 38 @/@.minigzip -d libc-gz
|
A D | Makefile.emx | 64 $(RM) foo.gz
|
/AliOS-Things-master/components/amp/modules/ |
A D | mpu6050.js | 288 function get_Gyroscope(gx, gy, gz) argument 296 gz = (buf[4] << 8) | buf[5]; 303 if (gz > (1 << 15)) { 304 gz = gz - (1<<16) 308 arr[2] = gz;
|
/AliOS-Things-master/components/jsoncpp/ |
A D | dev.makefile | 7 sign: jsoncpp-${VER}.tar.gz 11 jsoncpp-%.tar.gz: 12 curl https://github.com/open-source-parsers/jsoncpp/archive/$*.tar.gz -o $@ 33 \rm -rf *.gz *.asc dist/
|
/AliOS-Things-master/components/SDL2/src/image/ |
A D | Makefile.am | 78 $(PACKAGE)-$(VERSION).tar.gz: distcheck 81 rpm: $(PACKAGE)-$(VERSION).tar.gz 82 rpmbuild -ta $(PACKAGE)-$(VERSION).tar.gz
|
A D | Makefile.in | 265 DIST_ARCHIVES = $(distdir).tar.gz 782 tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz 808 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz 825 *.tar.gz*) \ 826 GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ 835 *.shar.gz*) \ 836 GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ 1047 $(PACKAGE)-$(VERSION).tar.gz: distcheck 1050 rpm: $(PACKAGE)-$(VERSION).tar.gz 1051 rpmbuild -ta $(PACKAGE)-$(VERSION).tar.gz
|
/AliOS-Things-master/components/py_engine/framework/ |
A D | mpu6050.py | 197 gz = (buf[4] << 8) | buf[5] 205 if (gz > (1 << 15)): 206 gz = gz - (1<<16) 210 arr[2] = gz
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/ruy/ |
A D | WORKSPACE | 39 type = "tar.gz", 40 …url = "https://github.com/bazelbuild/bazel-skylib/releases/download/{}/bazel_skylib-{}.tar.gz".for…
|
/AliOS-Things-master/components/py_engine/engine/tools/ |
A D | .gitattributes | 1 *.tar.gz binary
|
/AliOS-Things-master/components/SDL2/src/image/debian/ |
A D | watch | 2 http://www.libsdl.org/projects/SDL_image/release/ (?:.*/)?SDL_image-?_?([\w+\d+\.]+|\d+)\.tar\.gz d…
|
/AliOS-Things-master/hardware/board/haaseduk1/drivers/sensor/ |
A D | drv_acc_gyro_inv_mpu6050.c | 166 void MPU_Get_Gyroscope(short *gx, short *gy, short *gz) in MPU_Get_Gyroscope() argument 173 *gz = ((u16)buf[4] << 8) | buf[5]; in MPU_Get_Gyroscope()
|
A D | drv_acc_gyro_inv_mpu6050.h | 155 extern void MPU_Get_Gyroscope(short *gx, short *gy, short *gz);
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/old/os2/ |
A D | Makefile.os2 | 87 rm -f *.o *~ example minigzip libz.a libz.so* foo.gz 102 rm -f $$d.tar.gz; \ 107 GZIP=-9 $(TAR) chofz $$d/$$d.tar.gz $$files; \
|
/AliOS-Things-master/solutions/eduk1_demo/k1_apps/gyroscope/ |
A D | gyroscope.md | 123 #### void MPU_Get_Gyroscope(short *gx, short *gy, short *gz) 127 void MPU_Get_Gyroscope(short *gx, short *gy, short *gz) 134 *gz = ((u16)buf[4] << 8) | buf[5];
|
/AliOS-Things-master/components/SDL2/src/gfx/Test/ |
A D | Makefile.in | 140 DIST_ARCHIVES = $(distdir).tar.gz 513 tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz 537 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz 546 tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz 554 *.tar.gz*) \ 555 GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ 566 *.shar.gz*) \ 567 GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/ |
A D | Makefile.in | 204 DIST_ARCHIVES = $(distdir).tar.gz 589 tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz 615 shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz 632 *.tar.gz*) \ 633 eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\ 642 *.shar.gz*) \ 643 eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
|
/AliOS-Things-master/components/py_engine/external/unzip/src/ |
A D | example.c-bak | 17 # define TESTFILE "foo-gz" 19 # define TESTFILE "foo.gz" 83 * Test read/write of .gz files 91 fprintf(stderr, "NO_GZCOMPRESS -- gz* functions cannot compress\n"); 511 * Usage: example [output.gz [input.gz]]
|
/AliOS-Things-master/components/SDL2/src/image/Xcode/ |
A D | package | 169 set pkgArchive = $pkg/$root.tar.gz 172 set pkgArchive = $pkg/$root.pax.gz
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/msdos/ |
A D | Makefile.emx | 64 $(RM) foo.gz
|