Home
last modified time | relevance | path

Searched refs:zins (Results 1 – 25 of 49) sorted by relevance

12

/dports/games/chessx/chessx-1.5.6/src/quazip/
H A Dquaziodevice.cpp17 z_stream zins; member in QuaZIODevicePrivate
39 zins.zalloc = (alloc_func) NULL; in QuaZIODevicePrivate()
40 zins.zfree = (free_func) NULL; in QuaZIODevicePrivate()
41 zins.opaque = NULL; in QuaZIODevicePrivate()
136 if(inflateInit(&d->zins) != Z_OK) in open()
138 setErrorString(d->zins.msg); in open()
157 if(inflateEnd(&d->zins) != Z_OK) in close()
159 setErrorString(d->zins.msg); in close()
197 d->zins.next_out = (Bytef *)(data + read); in readData()
200 switch(inflate(&d->zins, Z_SYNC_FLUSH)) in readData()
[all …]
/dports/cad/librepcb/librepcb-0.1.6/libs/quazip/qztest/
H A Dtestquaziodevice.cpp95 z_stream zins; in write() local
96 zins.zalloc = (alloc_func) NULL; in write()
97 zins.zfree = (free_func) NULL; in write()
98 zins.opaque = NULL; in write()
99 inflateInit(&zins); in write()
101 zins.avail_in = testBuffer.pos(); in write()
103 zins.next_out = reinterpret_cast<Bytef*>(outBuf); in write()
104 zins.avail_out = 5; in write()
105 int result = inflate(&zins, Z_FINISH); in write()
107 inflateEnd(&zins); in write()
[all …]
/dports/archivers/quazip/quazip-1.2/qztest/
H A Dtestquaziodevice.cpp95 z_stream zins; in write() local
96 zins.zalloc = (alloc_func) NULL; in write()
97 zins.zfree = (free_func) NULL; in write()
98 zins.opaque = NULL; in write()
99 inflateInit(&zins); in write()
101 zins.avail_in = testBuffer.pos(); in write()
103 zins.next_out = reinterpret_cast<Bytef*>(outBuf); in write()
104 zins.avail_out = 5; in write()
105 int result = inflate(&zins, Z_FINISH); in write()
107 inflateEnd(&zins); in write()
[all …]
/dports/games/multimc/MultiMC5-0.6.11/libraries/quazip/qztest/
H A Dtestquaziodevice.cpp95 z_stream zins; in write() local
96 zins.zalloc = (alloc_func) NULL; in write()
97 zins.zfree = (free_func) NULL; in write()
98 zins.opaque = NULL; in write()
99 inflateInit(&zins); in write()
101 zins.avail_in = testBuffer.pos(); in write()
103 zins.next_out = reinterpret_cast<Bytef*>(outBuf); in write()
104 zins.avail_out = 5; in write()
105 inflate(&zins, Z_FINISH); in write()
106 inflateEnd(&zins); in write()
[all …]
/dports/editors/texstudio/texstudio-4.1.2/src/quazip/qztest/
H A Dtestquaziodevice.cpp95 z_stream zins; in write() local
96 zins.zalloc = (alloc_func) NULL; in write()
97 zins.zfree = (free_func) NULL; in write()
98 zins.opaque = NULL; in write()
99 inflateInit(&zins); in write()
101 zins.avail_in = testBuffer.pos(); in write()
103 zins.next_out = reinterpret_cast<Bytef*>(outBuf); in write()
104 zins.avail_out = 5; in write()
105 inflate(&zins, Z_FINISH); in write()
106 inflateEnd(&zins); in write()
[all …]
/dports/archivers/quazip/quazip-1.2/quazip/
H A Dquaziodevice.cpp37 z_stream zins; member in QuaZIODevicePrivate
63 zins.zalloc = (alloc_func) nullptr; in QuaZIODevicePrivate()
64 zins.zfree = (free_func) nullptr; in QuaZIODevicePrivate()
65 zins.opaque = nullptr; in QuaZIODevicePrivate()
198 if (inflateInit(&d->zins) != Z_OK) { in open()
215 if (inflateEnd(&d->zins) != Z_OK) { in close()
246 d->zins.next_out = (Bytef *) (data + read); in readData()
249 switch (inflate(&d->zins, Z_SYNC_FLUSH)) { in readData()
251 read = (char *) d->zins.next_out - data; in readData()
255 read = (char *) d->zins.next_out - data; in readData()
[all …]
/dports/cad/librepcb/librepcb-0.1.6/libs/quazip/quazip/
H A Dquaziodevice.cpp37 z_stream zins; member in QuaZIODevicePrivate
63 zins.zalloc = (alloc_func) nullptr; in QuaZIODevicePrivate()
64 zins.zfree = (free_func) nullptr; in QuaZIODevicePrivate()
65 zins.opaque = nullptr; in QuaZIODevicePrivate()
198 if (inflateInit(&d->zins) != Z_OK) { in open()
215 if (inflateEnd(&d->zins) != Z_OK) { in close()
246 d->zins.next_out = (Bytef *) (data + read); in readData()
249 switch (inflate(&d->zins, Z_SYNC_FLUSH)) { in readData()
251 read = (char *) d->zins.next_out - data; in readData()
255 read = (char *) d->zins.next_out - data; in readData()
[all …]
/dports/net-mgmt/seafile-gui/seafile-client-7.0.9/third_party/quazip/
H A Dquaziodevice.cpp36 z_stream zins; member in QuaZIODevicePrivate
60 zins.zalloc = (alloc_func) NULL; in QuaZIODevicePrivate()
61 zins.zfree = (free_func) NULL; in QuaZIODevicePrivate()
62 zins.opaque = NULL; in QuaZIODevicePrivate()
157 if (inflateInit(&d->zins) != Z_OK) { in open()
158 setErrorString(d->zins.msg); in open()
174 if (inflateEnd(&d->zins) != Z_OK) { in close()
175 setErrorString(d->zins.msg); in close()
208 switch (inflate(&d->zins, Z_SYNC_FLUSH)) { in readData()
210 read = (char *) d->zins.next_out - data; in readData()
[all …]
/dports/games/multimc/MultiMC5-0.6.11/libraries/quazip/quazip/
H A Dquaziodevice.cpp36 z_stream zins; member in QuaZIODevicePrivate
60 zins.zalloc = (alloc_func) NULL; in QuaZIODevicePrivate()
61 zins.zfree = (free_func) NULL; in QuaZIODevicePrivate()
62 zins.opaque = NULL; in QuaZIODevicePrivate()
157 if (inflateInit(&d->zins) != Z_OK) { in open()
158 setErrorString(d->zins.msg); in open()
174 if (inflateEnd(&d->zins) != Z_OK) { in close()
175 setErrorString(d->zins.msg); in close()
208 switch (inflate(&d->zins, Z_SYNC_FLUSH)) { in readData()
210 read = (char *) d->zins.next_out - data; in readData()
[all …]
/dports/editors/tea/tea-qt-60.5.1/
H A Dquaziodevice.cpp36 z_stream zins; member in QuaZIODevicePrivate
60 zins.zalloc = (alloc_func) NULL; in QuaZIODevicePrivate()
61 zins.zfree = (free_func) NULL; in QuaZIODevicePrivate()
62 zins.opaque = NULL; in QuaZIODevicePrivate()
153 if (inflateInit(&d->zins) != Z_OK) { in open()
154 setErrorString(d->zins.msg); in open()
170 if (inflateEnd(&d->zins) != Z_OK) { in close()
171 setErrorString(d->zins.msg); in close()
204 switch (inflate(&d->zins, Z_SYNC_FLUSH)) { in readData()
206 read = (char *) d->zins.next_out - data; in readData()
[all …]
/dports/editors/texstudio/texstudio-4.1.2/src/quazip/quazip/
H A Dquaziodevice.cpp36 z_stream zins; member in QuaZIODevicePrivate
60 zins.zalloc = (alloc_func) NULL; in QuaZIODevicePrivate()
61 zins.zfree = (free_func) NULL; in QuaZIODevicePrivate()
62 zins.opaque = NULL; in QuaZIODevicePrivate()
157 if (inflateInit(&d->zins) != Z_OK) { in open()
158 setErrorString(d->zins.msg); in open()
174 if (inflateEnd(&d->zins) != Z_OK) { in close()
175 setErrorString(d->zins.msg); in close()
208 switch (inflate(&d->zins, Z_SYNC_FLUSH)) { in readData()
210 read = (char *) d->zins.next_out - data; in readData()
[all …]
/dports/graphics/krita/krita-4.4.8/plugins/generators/simplexnoise/3rdparty/c-open-simplex/
H A Dopen-simplex-noise.c263 double zins; in open_simplex_noise2() local
288 zins = 1 - inSum; in open_simplex_noise2()
308 zins = 2 - inSum; in open_simplex_noise2()
418 bScore = zins; in open_simplex_noise3()
421 aScore = zins; in open_simplex_noise3()
546 bScore = zins; in open_simplex_noise3()
549 aScore = zins; in open_simplex_noise3()
1002 bScore = zins; in open_simplex_noise4()
1005 aScore = zins; in open_simplex_noise4()
1194 bScore = zins; in open_simplex_noise4()
[all …]
/dports/science/ascent/ascent-0.7.1-66-gbcf2742a/src/examples/synthetic/noise/
H A Dopen_simplex_noise.c263 double zins; in open_simplex_noise2() local
288 zins = 1 - inSum; in open_simplex_noise2()
308 zins = 2 - inSum; in open_simplex_noise2()
418 bScore = zins; in open_simplex_noise3()
421 aScore = zins; in open_simplex_noise3()
546 bScore = zins; in open_simplex_noise3()
549 aScore = zins; in open_simplex_noise3()
1002 bScore = zins; in open_simplex_noise4()
1005 aScore = zins; in open_simplex_noise4()
1194 bScore = zins; in open_simplex_noise4()
[all …]
/dports/devel/godot/godot-3.2.3-stable/thirdparty/misc/
H A Dopen-simplex-noise.c267 double zins; in open_simplex_noise2() local
292 zins = 1 - inSum; in open_simplex_noise2()
312 zins = 2 - inSum; in open_simplex_noise2()
422 bScore = zins; in open_simplex_noise3()
425 aScore = zins; in open_simplex_noise3()
550 bScore = zins; in open_simplex_noise3()
553 aScore = zins; in open_simplex_noise3()
1006 bScore = zins; in open_simplex_noise4()
1009 aScore = zins; in open_simplex_noise4()
1198 bScore = zins; in open_simplex_noise4()
[all …]
/dports/devel/godot-tools/godot-3.2.3-stable/thirdparty/misc/
H A Dopen-simplex-noise.c267 double zins; in open_simplex_noise2() local
292 zins = 1 - inSum; in open_simplex_noise2()
312 zins = 2 - inSum; in open_simplex_noise2()
422 bScore = zins; in open_simplex_noise3()
425 aScore = zins; in open_simplex_noise3()
550 bScore = zins; in open_simplex_noise3()
553 aScore = zins; in open_simplex_noise3()
1006 bScore = zins; in open_simplex_noise4()
1009 aScore = zins; in open_simplex_noise4()
1198 bScore = zins; in open_simplex_noise4()
[all …]
/dports/misc/openvdb/openvdb-9.0.0/openvdb_ax/openvdb_ax/math/
H A DOpenSimplexNoise.cc129 T xins, yins, zins; in eval() local
173 zins = zs - zsbd; in eval()
183 T inSum = xins + yins + zins; in eval()
208 T p2 = xins + zins; in eval()
221 T p3 = yins + zins; in eval()
433 if (aScore < bScore && zins > aScore) { in eval()
434 aScore = zins; in eval()
437 bScore = zins; in eval()
563 if (aScore <= bScore && zins < bScore) { in eval()
564 bScore = zins; in eval()
[all …]
/dports/devel/raylib/raylib-3.7.0/src/external/
H A Dpar_shapes.h1957 double zins = 1 - inSum; in par__simplex_noise2() local
1958 if (zins > xins || zins > yins) { in par__simplex_noise2()
1977 double zins = 2 - inSum; in par__simplex_noise2() local
1978 if (zins < xins || zins < yins) { in par__simplex_noise2()
/dports/net-p2p/vuze/vuze-5.7.4.0_2/org/gudy/azureus2/internat/
H A DMessagesBundle_nl_NL.properties1833 TableColumn.header.timesincedownload.info=De tijd is verstreken zins de data van de torrent is gedo…
1835 TableColumn.header.timesinceupload.info=De tijd is verstreken zins de data van de torrent was geupl…
/dports/games/wesnoth/wesnoth-1.14.17/po/wesnoth-anl/
H A Dsv.po1577 #~ msgstr "Ten-zins staty"
/dports/games/wesnoth/wesnoth-1.14.17/po/wesnoth-multiplayer/
H A Dsv.po1670 msgstr "Ten-zins staty"
/dports/editors/texstudio/texstudio-4.1.2/utilities/dictionaries/
H A Dde_CH-GermanSwitzerland.dic74389 zins/EPTozm
74390 zins/hke
H A Dde_AT-GermanAustria.dic74558 zins/EPTozm
74559 zins/hke
/dports/print/py-frescobaldi/frescobaldi-3.1.3/frescobaldi_app/hyphdicts/
H A Dhyph_de_DE.dic68058 zins
/dports/textproc/py-pyphen/Pyphen-0.10.0/pyphen/dictionaries/
H A Dhyph_de_DE.dic68058 zins
H A Dhyph_de_CH.dic68058 zins

12