Home
last modified time | relevance | path

Searched refs:CompressedData (Results 1 – 25 of 675) sorted by relevance

12345678910>>...27

/dports/devel/love/love-11.3/src/modules/data/
H A DCompressedData.cpp29 love::Type CompressedData::type("CompressedData", &Data::type);
31 CompressedData::CompressedData(Compressor::Format format, char *cdata, size_t compressedsize, size_… in CompressedData() function in love::data::CompressedData
54 CompressedData::CompressedData(const CompressedData &c) in CompressedData() function in love::data::CompressedData
72 CompressedData::~CompressedData() in ~CompressedData()
77 CompressedData *CompressedData::clone() const in clone()
79 return new CompressedData(*this); in clone()
82 Compressor::Format CompressedData::getFormat() const in getFormat()
87 size_t CompressedData::getDecompressedSize() const in getDecompressedSize()
92 void *CompressedData::getData() const in getData()
97 size_t CompressedData::getSize() const in getSize()
H A DCompressedData.h35 class CompressedData : public love::Data
44CompressedData(Compressor::Format format, char *cdata, size_t compressedsize, size_t rawsize, bool…
45 CompressedData(const CompressedData &c);
46 virtual ~CompressedData();
60 CompressedData *clone() const override;
H A Dwrap_CompressedData.cpp30 CompressedData *luax_checkcompresseddata(lua_State *L, int idx) in luax_checkcompresseddata()
32 return luax_checktype<CompressedData>(L, idx); in luax_checkcompresseddata()
37 CompressedData *t = luax_checkcompresseddata(L, 1), *c = nullptr; in w_CompressedData_clone()
46 CompressedData *t = luax_checkcompresseddata(L, 1); in w_CompressedData_getFormat()
66 …int ret = luax_register_type(L, &CompressedData::type, w_Data_functions, w_CompressedData_function… in luaopen_compresseddata()
67 love::data::luax_rundatawrapper(L, CompressedData::type); in luaopen_compresseddata()
/dports/security/py-sequoia/sequoia-383133f6be990237044900a4df676488bf8dd71e/openpgp/src/packet/
H A Dcompressed_data.rs23 pub struct CompressedData { struct
33 impl std::ops::Deref for CompressedData { argument
40 impl std::ops::DerefMut for CompressedData { implementation
46 impl fmt::Debug for CompressedData { implementation
55 impl CompressedData { implementation
58 CompressedData { in new()
93 impl From<CompressedData> for Packet {
94 fn from(s: CompressedData) -> Self { in from()
95 Packet::CompressedData(s) in from()
100 impl Arbitrary for CompressedData { implementation
[all …]
H A Dtag.rs34 CompressedData, enumerator
107 8 => CompressedData, in from()
141 &Tag::CompressedData => 8, in from()
189 Tag::CompressedData => in fmt()
250 || *self == Tag::Literal || *self == Tag::CompressedData in valid_start_of_message()
/dports/security/sequoia/sequoia-383133f6be990237044900a4df676488bf8dd71e/openpgp/src/packet/
H A Dcompressed_data.rs23 pub struct CompressedData { struct
33 impl std::ops::Deref for CompressedData { implementation
40 impl std::ops::DerefMut for CompressedData { implementation
46 impl fmt::Debug for CompressedData { implementation
55 impl CompressedData { impl
58 CompressedData { in new()
93 impl From<CompressedData> for Packet {
94 fn from(s: CompressedData) -> Self { in from()
95 Packet::CompressedData(s) in from()
100 impl Arbitrary for CompressedData { implementation
[all …]
H A Dtag.rs34 CompressedData, enumerator
107 8 => CompressedData, in from()
141 &Tag::CompressedData => 8, in from()
189 Tag::CompressedData => in fmt()
250 || *self == Tag::Literal || *self == Tag::CompressedData in valid_start_of_message()
/dports/devel/love10/love-0.10.2/src/modules/math/
H A DCompressedData.cpp29 CompressedData::CompressedData(Compressor::Format format, char *cdata, size_t compressedsize, size_… in CompressedData() function in love::math::CompressedData
52 CompressedData::~CompressedData() in ~CompressedData()
57 Compressor::Format CompressedData::getFormat() const in getFormat()
62 size_t CompressedData::getDecompressedSize() const in getDecompressedSize()
67 void *CompressedData::getData() const in getData()
72 size_t CompressedData::getSize() const in getSize()
H A DCompressedData.h36 class CompressedData : public love::Data
43CompressedData(Compressor::Format format, char *cdata, size_t compressedsize, size_t rawsize, bool…
44 virtual ~CompressedData();
H A Dwrap_CompressedData.cpp30 CompressedData *luax_checkcompresseddata(lua_State *L, int idx) in luax_checkcompresseddata()
32 return luax_checktype<CompressedData>(L, idx, MATH_COMPRESSED_DATA_ID); in luax_checkcompresseddata()
37 CompressedData *t = luax_checkcompresseddata(L, 1); in w_CompressedData_getFormat()
H A DMathModule.h138 CompressedData *compress(Compressor::Format format, Data *rawdata, int level = -1);
139CompressedData *compress(Compressor::Format format, const char *rawbytes, size_t rawsize, int leve…
148 char *decompress(CompressedData *data, size_t &decompressedsize);
/dports/java/bouncycastle15/crypto-169/util/src/main/java/org/bouncycastle/asn1/cms/
H A DCompressedData.java23 public class CompressedData class
30 public CompressedData( in CompressedData() method in CompressedData
39 private CompressedData( in CompressedData() method in CompressedData
56 public static CompressedData getInstance( in getInstance()
76 public static CompressedData getInstance( in getInstance()
79 if (obj instanceof CompressedData) in getInstance()
81 return (CompressedData)obj; in getInstance()
86 return new CompressedData(ASN1Sequence.getInstance(obj)); in getInstance()
/dports/games/scid/scid/src/
H A Dfilter.h36 byte * CompressedData; variable
41 if (CompressedData != NULL) delete[] CompressedData; in ~CompressedFilter()
67 CompressedData = NULL; in Init()
73 if (CompressedData != NULL) { delete[] CompressedData; } in Clear()
H A Dfilter.cpp55 if (unpackBytemap (CompressedData, tempBuffer, in Verify()
85 CompressedData = NULL; in CompressFrom()
90 CompressedData = new byte [CompressedLength]; in CompressFrom()
91 std::memcpy (CompressedData, tempBuf, CompressedLength); in CompressFrom()
118 if (unpackBytemap (CompressedData, tempBuffer, in UncompressTo()
/dports/security/py-sequoia/sequoia-383133f6be990237044900a4df676488bf8dd71e/openpgp/src/message/
H A Dmod.rs216 Tag::CompressedData => Token::CompressedData, in push()
556 s: &[CompressedData, Literal, Pop], in tokens()
560 s: &[CompressedData, CompressedData, Literal, in tokens()
573 s: &[CompressedData, SEIP, CompressedData, Literal, in tokens()
603 s: &[CompressedData, AED, CompressedData, Literal, in tokens()
643 s: &[CompressedData, OpaqueContent], in tokens()
651 s: &[CompressedData, CompressedData, OpaqueContent, Pop, Pop], in tokens()
698 s: &[(CompressedData, 0), (Literal, 1)], in tags()
702 s: &[(CompressedData, 0), (CompressedData, 1), (Literal, 2)], in tags()
714 s: &[(CompressedData, 0), (SEIP, 1), in tags()
[all …]
H A Dgrammar.lalrpop9 CompressedData,
15 CompressedData: () = {
68 COMPRESSED_DATA => lexer::Token::CompressedData,
/dports/security/sequoia/sequoia-383133f6be990237044900a4df676488bf8dd71e/openpgp/src/message/
H A Dmod.rs216 Tag::CompressedData => Token::CompressedData, in push()
556 s: &[CompressedData, Literal, Pop], in tokens()
560 s: &[CompressedData, CompressedData, Literal, in tokens()
573 s: &[CompressedData, SEIP, CompressedData, Literal, in tokens()
603 s: &[CompressedData, AED, CompressedData, Literal, in tokens()
643 s: &[CompressedData, OpaqueContent], in tokens()
651 s: &[CompressedData, CompressedData, OpaqueContent, Pop, Pop], in tokens()
698 s: &[(CompressedData, 0), (Literal, 1)], in tags()
702 s: &[(CompressedData, 0), (CompressedData, 1), (Literal, 2)], in tags()
714 s: &[(CompressedData, 0), (SEIP, 1), in tags()
[all …]
H A Dgrammar.lalrpop9 CompressedData,
15 CompressedData: () = {
68 COMPRESSED_DATA => lexer::Token::CompressedData,
/dports/www/firefox/firefox-99.0/third_party/python/pyasn1_modules/pyasn1_modules/
H A Drfc3274.py31 class CompressedData(univ.Sequence): class
34 CompressedData.componentType = namedtype.NamedTypes(
56 id_ct_compressedData: CompressedData(),
/dports/devel/py-pyasn1-modules/pyasn1-modules-0.2.8/pyasn1_modules/
H A Drfc3274.py31 class CompressedData(univ.Sequence): class
34 CompressedData.componentType = namedtype.NamedTypes(
56 id_ct_compressedData: CompressedData(),
/dports/games/openclonk/openclonk-release-8.1-src/src/platform/
H A DC4SoundLoaders.h69 struct CompressedData struct
76 CompressedData(BYTE* data, size_t data_length): data(data), data_length(data_length) {} in CompressedData() function
77 CompressedData() = default;
81 ~CompressedData() { clear(); } in ~CompressedData() argument
H A DC4SoundLoaders.cpp111 CompressedData* data = (CompressedData*)datasource; in mem_read_func()
130 CompressedData* data = (CompressedData*)datasource; in mem_seek_func()
154 return ((CompressedData*)datasource)->data_pos; in mem_tell_func()
187 CompressedData compressed(data, data_length); in ReadInfo()
/dports/print/dymo-cups-drivers/dymo-cups-drivers-1.4.0.5/src/lw/
H A DLabelWriterDriver.cpp206 CompressData(buffer_t& CompressedData, const byte* Data, size_t DataSize) in CompressData() argument
216 CompressedData.clear(); // will write non-compressed data in CompressData()
219 CompressedData.push_back(GetCompressedSequenceValue(Data, DataSize, CurByteNo, CurBitNo)); in CompressData()
322 buffer_t CompressedData; in ProcessRasterLine() local
323 CompressData(CompressedData, &b[0] + LeaderBlanks, b.size() - LeaderBlanks - TrailerBlanks); in ProcessRasterLine()
325 …if ((CompressedData.size() > 0) && (CompressedData.size() < b.size() - LeaderBlanks - TrailerBlank… in ProcessRasterLine()
326 SendCompressedData(CompressedData, b.size() - LeaderBlanks - TrailerBlanks); in ProcessRasterLine()
/dports/java/bouncycastle15/crypto-169/pkix/src/main/java/org/bouncycastle/cms/
H A DCMSCompressedData.java8 import org.bouncycastle.asn1.cms.CompressedData;
26 CompressedData comData;
50 this.comData = CompressedData.getInstance(contentInfo.getContent()); in CMSCompressedData()
/dports/lang/spidermonkey78/firefox-78.9.0/xpcom/io/
H A DSnappyFrameUtils.cpp23 return SnappyFrameUtils::CompressedData; in ReadChunkType()
37 } else if (aType == SnappyFrameUtils::CompressedData) { in WriteChunkType()
112 WriteChunkType(aDest, CompressedData); in WriteCompressedData()
163 case CompressedData: in ParseData()

12345678910>>...27