/dports/games/cockatrice/Cockatrice-2021-01-26-Release-2.8.0/oracle/src/zip/ |
H A D | zipentry_p.h | 54 compMethod(0), in OSDAB_BEGIN_NAMESPACE() 72 quint16 compMethod; // Compression method in OSDAB_BEGIN_NAMESPACE() local
|
H A D | unzip.cpp | 291 bool checkFailed = entry.compMethod != getUShort(uBuffer, UNZIP_LH_OFF_CMETHOD); in parseLocalHeaderRecord() 528 quint16 compMethod = getUShort(uBuffer, UNZIP_CD_OFF_CMETHOD); in parseCentralDirectoryRecord() local 540 if ((compMethod != 0) && (compMethod != 8)) { in parseCentralDirectoryRecord() 580 h->compMethod = compMethod; in parseCentralDirectoryRecord() 912 if (entry.compMethod == 0) { in extractFile() 914 } else if (entry.compMethod == 8) { in extractFile() 1239 …z.compression = entry->compMethod == 0 ? NoCompression : entry->compMethod == 8 ? Deflated : Unkno… in entryList()
|
H A D | zip.cpp | 782 h->compMethod = (level == Zip::Store) ? 0 : 0x0008; in createEntry() 799 buffer1[ZIP_LH_OFF_CMET] = h->compMethod & 0xFF; in createEntry() 800 buffer1[ZIP_LH_OFF_CMET + 1] = (h->compMethod>>8) & 0xFF; in createEntry() 1173 buffer1[ZIP_CD_OFF_CMET] = h->compMethod & 0xFF; in writeEntry() 1174 buffer1[ZIP_CD_OFF_CMET + 1] = (h->compMethod >> 8) & 0xFF; in writeEntry()
|
/dports/print/scribus-devel/scribus-1.5.7/scribus/third_party/zip/ |
H A D | zipentry_p.h | 54 compMethod(0), in OSDAB_BEGIN_NAMESPACE() 72 quint16 compMethod; // Compression method in OSDAB_BEGIN_NAMESPACE() local
|
H A D | unzip.cpp | 294 checkFailed = entry.compMethod != getUShort(uBuffer, UNZIP_LH_OFF_CMETHOD); in parseLocalHeaderRecord() 537 quint16 compMethod = getUShort(uBuffer, UNZIP_CD_OFF_CMETHOD); in parseCentralDirectoryRecord() local 549 if ((compMethod != 0) && (compMethod != 8)) { in parseCentralDirectoryRecord() 597 h->compMethod = compMethod; in parseCentralDirectoryRecord() 929 if (entry.compMethod == 0) { in extractFile() 931 } else if (entry.compMethod == 8) { in extractFile() 1256 …z.compression = entry->compMethod == 0 ? NoCompression : entry->compMethod == 8 ? Deflated : Unkno… in entryList()
|
H A D | zip.cpp | 784 h->compMethod = (level == Zip::Store) ? 0 : 0x0008; in createEntry() 801 buffer1[ZIP_LH_OFF_CMET] = h->compMethod & 0xFF; in createEntry() 802 buffer1[ZIP_LH_OFF_CMET + 1] = (h->compMethod>>8) & 0xFF; in createEntry() 1174 buffer1[ZIP_CD_OFF_CMET] = h->compMethod & 0xFF; in writeEntry() 1175 buffer1[ZIP_CD_OFF_CMET + 1] = (h->compMethod >> 8) & 0xFF; in writeEntry()
|
/dports/math/polymake/polymake-4.5/bundled/sympol/apps/polytope/src/ |
H A D | linear_symmetries.cc | 83 const auto compMethod = (rayCompMethod == "lrs") in representation_conversion_up_to_symmetry() local 92 if (compMethod == sympol_interface::SympolRayComputationMethod::invalid) in representation_conversion_up_to_symmetry() 105 …face::sympol_wrapper::computeFacets(rays_or_facets, lin_sp, sym_group, compMethod, v_to_h, inequal… in representation_conversion_up_to_symmetry()
|
/dports/finance/weberp/webERP/xmlrpc/src/ |
H A D | Client.php | 345 * @param string $compMethod either 'gzip', 'deflate', 'any' or '' 347 public function setAcceptedCompression($compMethod) argument 349 if ($compMethod == 'any') { 351 } elseif ($compMethod == false) { 354 $this->accepted_compression = array($compMethod); 365 * @param string $compMethod either 'gzip', 'deflate' or '' 367 public function setRequestCompression($compMethod) argument 369 $this->request_compression = $compMethod;
|
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/ |
H A D | CodeSectionProcessor.java | 70 JavaMethodInfo compMethod = methodInfo.getMethodInfo(); in process() local 90 String entry = compMethod.getSymbolName(); in process()
|
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/ |
H A D | CodeSectionProcessor.java | 70 JavaMethodInfo compMethod = methodInfo.getMethodInfo(); in process() local 90 String entry = compMethod.getSymbolName(); in process()
|
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/ |
H A D | CodeSectionProcessor.java | 70 JavaMethodInfo compMethod = methodInfo.getMethodInfo(); in process() local 90 String entry = compMethod.getSymbolName(); in process()
|
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/ |
H A D | CodeSectionProcessor.java | 70 JavaMethodInfo compMethod = methodInfo.getMethodInfo(); in process() local 90 String entry = compMethod.getSymbolName(); in process()
|
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/ |
H A D | CodeSectionProcessor.java | 70 JavaMethodInfo compMethod = methodInfo.getMethodInfo(); in process() local 90 String entry = compMethod.getSymbolName(); in process()
|
/dports/archivers/ark/ark-21.12.3/plugins/libzipplugin/ |
H A D | libzipplugin.cpp | 255 zip_int32_t compMethod = ZIP_CM_DEFAULT; in writeEntry() local 258 compMethod = ZIP_CM_DEFLATE; in writeEntry() 260 compMethod = ZIP_CM_BZIP2; in writeEntry() 263 compMethod = ZIP_CM_ZSTD; in writeEntry() 267 compMethod = ZIP_CM_LZMA; in writeEntry() 271 compMethod = ZIP_CM_XZ; in writeEntry() 274 compMethod = ZIP_CM_STORE; in writeEntry() 278 if (zip_set_file_compression(archive, index, compMethod, compLevel) != 0) { in writeEntry()
|
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/ |
H A D | CodeSectionProcessor.java | 74 JavaMethodInfo compMethod = methodInfo.getMethodInfo(); in process() local 94 String entry = compMethod.getSymbolName(); in process()
|
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/ |
H A D | CodeSectionProcessor.java | 74 JavaMethodInfo compMethod = methodInfo.getMethodInfo(); in process() local 94 String entry = compMethod.getSymbolName(); in process()
|
/dports/archivers/ark/ark-21.12.3/plugins/libarchive/ |
H A D | libarchiveplugin.cpp | 53 …QString compMethod = convertCompressionName(QString::fromUtf8(archive_filter_name(m_archiveReader.… in list() local 54 if (!compMethod.isEmpty()) { in list() 55 Q_EMIT compressionMethodFound(compMethod); in list()
|
/dports/archivers/libzippp/libzippp-libzippp-v5.0-1.8.0/src/ |
H A D | libzippp.h | 667 …std::string& name, libzippp_uint64 index, time_t time, libzippp_uint16 compMethod, libzippp_uint16… in ZipEntry() argument 668 …File(zipFile), name(name), index(index), time(time), compressionMethod(compMethod), encryptionMeth… in ZipEntry()
|
H A D | libzippp.cpp | 351 libzippp_uint16 compMethod = stat->comp_method; in createEntry() local 357 return ZipEntry(this, name, index, time, compMethod, encMethod, size, sizeComp, crc); in createEntry()
|
/dports/security/meek/meek-0.35.0/vendor/github.com/refraction-networking/utls/ |
H A D | u_tls_extensions.go | 722 for _, compMethod := range e.Methods { 723 b[i] = byte(compMethod >> 8) 724 b[i+1] = byte(compMethod)
|
/dports/security/xray-core/Xray-core-1.5.0/vendor/github.com/refraction-networking/utls/ |
H A D | u_tls_extensions.go | 722 for _, compMethod := range e.Methods { 723 b[i] = byte(compMethod >> 8) 724 b[i+1] = byte(compMethod)
|
/dports/net/ooni-probe-cli/probe-cli-3.10.1/vendor/github.com/ooni/psiphon/oopsi/github.com/refraction-networking/utls/ |
H A D | u_tls_extensions.go | 722 for _, compMethod := range e.Methods { 723 b[i] = byte(compMethod >> 8) 724 b[i+1] = byte(compMethod)
|
/dports/net/ooni-mini/probe-engine-0.23.0/vendor/github.com/ooni/psiphon/oopsi/github.com/refraction-networking/utls/ |
H A D | u_tls_extensions.go | 722 for _, compMethod := range e.Methods { 723 b[i] = byte(compMethod >> 8) 724 b[i+1] = byte(compMethod)
|
/dports/graphics/netpbm/netpbm-10.91.01/converter/other/ |
H A D | pnmtopng.c | 317 const char * compMethod; in parseCommandLine() local 355 OPTENT3(0, "comp_method", OPT_STRING, &compMethod, in parseCommandLine() 490 if (streq(compMethod, "deflated")) in parseCommandLine() 494 "You specified '%s'", compMethod); in parseCommandLine()
|
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Linq.Expressions/src/System/Linq/Expressions/Interpreter/ |
H A D | LightCompiler.cs | 2678 … MethodInfo compMethod = node.Expression.Type.GetMethod("Compile", Array.Empty<Type>()); in CompileInvocationExpression() 2682 compMethod in CompileInvocationExpression() 2684 compMethod.ReturnType.GetInvokeMethod(), in CompileInvocationExpression()
|