Home
last modified time | relevance | path

Searched refs:codeSize (Results 1 – 25 of 1354) sorted by relevance

12345678910>>...55

/dports/lang/solidity/solidity_0.8.11/test/libyul/
H A DMetrics.cpp177 BOOST_CHECK_EQUAL(codeSize( in BOOST_AUTO_TEST_CASE()
188 codeSize( in BOOST_FIXTURE_TEST_CASE()
247 BOOST_CHECK_EQUAL(codeSize( in BOOST_AUTO_TEST_CASE()
263 BOOST_CHECK_EQUAL(codeSize( in BOOST_AUTO_TEST_CASE()
280 BOOST_CHECK_EQUAL(codeSize( in BOOST_AUTO_TEST_CASE()
297 BOOST_CHECK_EQUAL(codeSize( in BOOST_AUTO_TEST_CASE()
319 BOOST_CHECK_EQUAL(codeSize( in BOOST_AUTO_TEST_CASE()
335 BOOST_CHECK_EQUAL(codeSize( in BOOST_AUTO_TEST_CASE()
342 BOOST_CHECK_EQUAL(codeSize( in BOOST_AUTO_TEST_CASE()
359 BOOST_CHECK_EQUAL(codeSize( in BOOST_AUTO_TEST_CASE()
[all …]
/dports/net/nepenthes/nepenthes-0.2.2/modules/shellcode-signatures/
H A Dsch_namespace_xor.cpp89 uint32_t codeSize = 0; in handleShellcode() local
134 codeSize = (uint32_t)*((uint32_t *)match); in handleShellcode()
138 codeSize = (uint32_t)*((uint16_t *)match); in handleShellcode()
142 codeSize = (uint32_t)*((byte *)match); in handleShellcode()
145 logSpam("\tnumeric %i\n",codeSize); in handleShellcode()
155 codeSize = 0 - (uint32_t)*((uint32_t *)match); in handleShellcode()
159 codeSize = 256 - (uint32_t)*((byte *)match); in handleShellcode()
162 logSpam("\tnumeric %i\n",codeSize); in handleShellcode()
204 if ( codeSize > postSize ) in handleShellcode()
207 for ( uint32_t j = 0; j < codeSize && j < postSize; j++ ) in handleShellcode()
[all …]
/dports/lang/seed7/seed7/lib/
H A Dlzw.s7i60 bitsToWrite := succ(codeSize);
61 clearCode := 1 << codeSize;
130 clearCode := 1 << codeSize;
189 * succ(''codeSize'') bits per code point. Code succ(2 ** ''codeSize'')
211 clearCode := 1 << codeSize;
258 * succ(''codeSize'') bits per code point. Code succ(2 ** ''codeSize'')
281 clearCode := 1 << codeSize;
341 * succ(''codeSize'') bits per code point. Code succ(2 ** ''codeSize'')
363 clearCode := 1 << codeSize;
416 * succ(''codeSize'') bits per code point. Code succ(2 ** ''codeSize'')
[all …]
/dports/science/rdkit/rdkit-Release_2021_03_5/rdkit/Chem/AtomPairs/
H A DPairs.py33 numFpBits = numPathBits + 2 * rdMolDescriptors.AtomPairsParameters.codeSize
64 codeSize = rdMolDescriptors.AtomPairsParameters.codeSize
66 codeSize += rdMolDescriptors.AtomPairsParameters.numChiralBits
70 accum |= max(code1, code2) << (codeSize + numPathBits)
105 codeSize = rdMolDescriptors.AtomPairsParameters.codeSize
107 codeSize += rdMolDescriptors.AtomPairsParameters.numChiralBits
109 codeMask = (1 << codeSize) - 1
116 score = score >> codeSize
/dports/lang/solidity/solidity_0.8.11/test/yulPhaser/
H A DFitnessMetrics.cpp71 assert(result.codeSize(m_weights) != originalSize); in optimisedProgram()
144 BOOST_TEST(fitness != m_program.codeSize(m_weights)); in BOOST_AUTO_TEST_SUITE()
145 BOOST_TEST(fitness == m_optimisedProgram.codeSize(m_weights)); in BOOST_AUTO_TEST_SUITE()
152 BOOST_TEST(fitness != m_program.codeSize(m_weights)); in BOOST_FIXTURE_TEST_CASE()
153 BOOST_TEST(fitness == m_optimisedProgram.codeSize(m_weights)); in BOOST_FIXTURE_TEST_CASE()
165 BOOST_TEST(fitness != m_program.codeSize(m_weights)); in BOOST_FIXTURE_TEST_CASE()
175 BOOST_TEST(fitness == m_program.codeSize(m_weights)); in BOOST_FIXTURE_TEST_CASE()
186 …round(1000.0 * double(m_optimisedProgram.codeSize(m_weights)) / double(m_program.codeSize(m_weight… in BOOST_AUTO_TEST_SUITE()
194 …round(1000.0 * double(m_optimisedProgram.codeSize(m_weights)) / double(m_program.codeSize(m_weight… in BOOST_FIXTURE_TEST_CASE()
209 …ness == round(1000.0 * double(programOptimisedTwice.codeSize(m_weights)) / double(m_program.codeSi… in BOOST_FIXTURE_TEST_CASE()
[all …]
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.desktop/share/classes/com/sun/imageio/plugins/common/
H A DLZWCompressor.java38 int codeSize; field in LZWCompressor
70 public LZWCompressor(ImageOutputStream out, int codeSize, boolean TIFF) in LZWCompressor() argument
74 this.codeSize = codeSize; in LZWCompressor()
76 clearCode = 1 << codeSize; in LZWCompressor()
78 numBits = codeSize + 1; in LZWCompressor()
87 lzss.clearTable(codeSize); in LZWCompressor()
112 lzss.clearTable(codeSize); in compress()
113 numBits = codeSize + 1; in compress()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.desktop/share/classes/com/sun/imageio/plugins/common/
H A DLZWCompressor.java38 int codeSize; field in LZWCompressor
70 public LZWCompressor(ImageOutputStream out, int codeSize, boolean TIFF) in LZWCompressor() argument
74 this.codeSize = codeSize; in LZWCompressor()
76 clearCode = 1 << codeSize; in LZWCompressor()
78 numBits = codeSize + 1; in LZWCompressor()
87 lzss.clearTable(codeSize); in LZWCompressor()
112 lzss.clearTable(codeSize); in compress()
113 numBits = codeSize + 1; in compress()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.desktop/share/classes/com/sun/imageio/plugins/common/
H A DLZWCompressor.java38 int codeSize; field in LZWCompressor
70 public LZWCompressor(ImageOutputStream out, int codeSize, boolean TIFF) in LZWCompressor() argument
74 this.codeSize = codeSize; in LZWCompressor()
76 clearCode = 1 << codeSize; in LZWCompressor()
78 numBits = codeSize + 1; in LZWCompressor()
87 lzss.clearTable(codeSize); in LZWCompressor()
112 lzss.clearTable(codeSize); in compress()
113 numBits = codeSize + 1; in compress()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/com/sun/imageio/plugins/common/
H A DLZWCompressor.java38 int codeSize; field in LZWCompressor
70 public LZWCompressor(ImageOutputStream out, int codeSize, boolean TIFF) in LZWCompressor() argument
74 this.codeSize = codeSize; in LZWCompressor()
76 clearCode = 1 << codeSize; in LZWCompressor()
78 numBits = codeSize + 1; in LZWCompressor()
87 lzss.clearTable(codeSize); in LZWCompressor()
112 lzss.clearTable(codeSize); in compress()
113 numBits = codeSize + 1; in compress()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.desktop/share/classes/com/sun/imageio/plugins/common/
H A DLZWCompressor.java38 int codeSize; field in LZWCompressor
70 public LZWCompressor(ImageOutputStream out, int codeSize, boolean TIFF) in LZWCompressor() argument
74 this.codeSize = codeSize; in LZWCompressor()
76 clearCode = 1 << codeSize; in LZWCompressor()
78 numBits = codeSize + 1; in LZWCompressor()
87 lzss.clearTable(codeSize); in LZWCompressor()
112 lzss.clearTable(codeSize); in compress()
113 numBits = codeSize + 1; in compress()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.desktop/share/classes/com/sun/imageio/plugins/common/
H A DLZWCompressor.java38 int codeSize; field in LZWCompressor
70 public LZWCompressor(ImageOutputStream out, int codeSize, boolean TIFF) in LZWCompressor() argument
74 this.codeSize = codeSize; in LZWCompressor()
76 clearCode = 1 << codeSize; in LZWCompressor()
78 numBits = codeSize + 1; in LZWCompressor()
87 lzss.clearTable(codeSize); in LZWCompressor()
112 lzss.clearTable(codeSize); in compress()
113 numBits = codeSize + 1; in compress()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.desktop/share/classes/com/sun/imageio/plugins/common/
H A DLZWCompressor.java38 int codeSize; field in LZWCompressor
70 public LZWCompressor(ImageOutputStream out, int codeSize, boolean TIFF) in LZWCompressor() argument
74 this.codeSize = codeSize; in LZWCompressor()
76 clearCode = 1 << codeSize; in LZWCompressor()
78 numBits = codeSize + 1; in LZWCompressor()
87 lzss.clearTable(codeSize); in LZWCompressor()
112 lzss.clearTable(codeSize); in compress()
113 numBits = codeSize + 1; in compress()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.desktop/share/classes/com/sun/imageio/plugins/common/
H A DLZWCompressor.java38 int codeSize; field in LZWCompressor
70 public LZWCompressor(ImageOutputStream out, int codeSize, boolean TIFF) in LZWCompressor() argument
74 this.codeSize = codeSize; in LZWCompressor()
76 clearCode = 1 << codeSize; in LZWCompressor()
78 numBits = codeSize + 1; in LZWCompressor()
87 lzss.clearTable(codeSize); in LZWCompressor()
112 lzss.clearTable(codeSize); in compress()
113 numBits = codeSize + 1; in compress()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.desktop/share/classes/com/sun/imageio/plugins/common/
H A DLZWCompressor.java38 int codeSize; field in LZWCompressor
70 public LZWCompressor(ImageOutputStream out, int codeSize, boolean TIFF) in LZWCompressor() argument
74 this.codeSize = codeSize; in LZWCompressor()
76 clearCode = 1 << codeSize; in LZWCompressor()
78 numBits = codeSize + 1; in LZWCompressor()
87 lzss.clearTable(codeSize); in LZWCompressor()
112 lzss.clearTable(codeSize); in compress()
113 numBits = codeSize + 1; in compress()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/com/sun/imageio/plugins/common/
H A DLZWCompressor.java38 int codeSize; field in LZWCompressor
70 public LZWCompressor(ImageOutputStream out, int codeSize, boolean TIFF) in LZWCompressor() argument
74 this.codeSize = codeSize; in LZWCompressor()
76 clearCode = 1 << codeSize; in LZWCompressor()
78 numBits = codeSize + 1; in LZWCompressor()
87 lzss.clearTable(codeSize); in LZWCompressor()
112 lzss.clearTable(codeSize); in compress()
113 numBits = codeSize + 1; in compress()
/dports/x11-toolkits/swt/swt-4.20/org/eclipse/swt/internal/image/
H A DLZWCodec.java50 codeSize = bitsPerPixel + 1; in decode()
53 topSlot = 1 << codeSize; in decode()
86 if (codeSize < 12) { in decode()
88 codeSize++; in decode()
206 codeSize++; in encodeLoop()
218 topSlot = 1 << codeSize; in encodeLoop()
229 codeSize = bitsPerPixel + 1; in initializeForDecoding()
230 topSlot = 1 << codeSize; in initializeForDecoding()
253 topSlot = 1 << codeSize; in initializeForEncoding()
310 bitsLeft -= codeSize; in nextCode()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.swt/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/internal/image/
H A DLZWCodec.java50 codeSize = bitsPerPixel + 1; in decode()
53 topSlot = 1 << codeSize; in decode()
86 if (codeSize < 12) { in decode()
88 codeSize++; in decode()
206 codeSize++; in encodeLoop()
217 topSlot = 1 << codeSize; in encodeLoop()
228 codeSize = bitsPerPixel + 1; in initializeForDecoding()
229 topSlot = 1 << codeSize; in initializeForDecoding()
252 topSlot = 1 << codeSize; in initializeForEncoding()
309 bitsLeft -= codeSize; in nextCode()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Reflection.Metadata/src/System/Reflection/Metadata/Ecma335/Encoding/
H A DMethodBodyStreamEncoder.cs47 int codeSize, in AddMethodBody()
54 if (codeSize < 0) in AddMethodBody()
56 Throw.ArgumentOutOfRange(nameof(codeSize)); in AddMethodBody()
69 …int bodyOffset = SerializeHeader(codeSize, (ushort)maxStack, exceptionRegionCount, attributes, loc… in AddMethodBody()
70 var instructions = Builder.ReserveBytes(codeSize); in AddMethodBody()
161 …private int SerializeHeader(int codeSize, ushort maxStack, int exceptionRegionCount, MethodBodyAtt… in SerializeHeader()
170 …bool isTiny = codeSize < 64 && maxStack <= 8 && localVariablesSignature.IsNil && exceptionRegionCo… in SerializeHeader()
175 Builder.WriteByte((byte)((codeSize << 2) | TinyFormat)); in SerializeHeader()
196 Builder.WriteInt32(codeSize); in SerializeHeader()
/dports/emulators/mess/mame-mame0226/3rdparty/asmjit/src/asmjit/core/
H A Djitruntime.cpp68 size_t estimatedCodeSize = code->codeSize(); in _add()
85 size_t codeSize = code->codeSize(); in _add() local
92 ASMJIT_ASSERT(offset + bufferSize <= codeSize); in _add()
96 ASMJIT_ASSERT(offset + virtualSize <= codeSize); in _add()
101 if (codeSize < estimatedCodeSize) in _add()
102 _allocator.shrink(ro, codeSize); in _add()
104 flush(ro, codeSize); in _add()
/dports/emulators/mame/mame-mame0226/3rdparty/asmjit/src/asmjit/core/
H A Djitruntime.cpp68 size_t estimatedCodeSize = code->codeSize(); in _add()
85 size_t codeSize = code->codeSize(); in _add() local
92 ASMJIT_ASSERT(offset + bufferSize <= codeSize); in _add()
96 ASMJIT_ASSERT(offset + virtualSize <= codeSize); in _add()
101 if (codeSize < estimatedCodeSize) in _add()
102 _allocator.shrink(ro, codeSize); in _add()
104 flush(ro, codeSize); in _add()
/dports/lang/erlang-runtime24/otp-OTP-24.1.7/erts/emulator/asmjit/core/
H A Djitruntime.cpp76 size_t estimatedCodeSize = code->codeSize(); in _add()
93 size_t codeSize = code->codeSize(); in _add() local
100 ASMJIT_ASSERT(offset + bufferSize <= codeSize); in _add()
104 ASMJIT_ASSERT(offset + virtualSize <= codeSize); in _add()
109 if (codeSize < estimatedCodeSize) in _add()
110 _allocator.shrink(ro, codeSize); in _add()
112 flush(ro, codeSize); in _add()
/dports/lang/erlang-wx/otp-OTP-24.1.7/erts/emulator/asmjit/core/
H A Djitruntime.cpp76 size_t estimatedCodeSize = code->codeSize(); in _add()
93 size_t codeSize = code->codeSize(); in _add() local
100 ASMJIT_ASSERT(offset + bufferSize <= codeSize); in _add()
104 ASMJIT_ASSERT(offset + virtualSize <= codeSize); in _add()
109 if (codeSize < estimatedCodeSize) in _add()
110 _allocator.shrink(ro, codeSize); in _add()
112 flush(ro, codeSize); in _add()
/dports/lang/erlang/otp-OTP-24.1.7/erts/emulator/asmjit/core/
H A Djitruntime.cpp76 size_t estimatedCodeSize = code->codeSize(); in _add()
93 size_t codeSize = code->codeSize(); in _add() local
100 ASMJIT_ASSERT(offset + bufferSize <= codeSize); in _add()
104 ASMJIT_ASSERT(offset + virtualSize <= codeSize); in _add()
109 if (codeSize < estimatedCodeSize) in _add()
110 _allocator.shrink(ro, codeSize); in _add()
112 flush(ro, codeSize); in _add()
/dports/lang/erlang-java/otp-OTP-24.1.7/erts/emulator/asmjit/core/
H A Djitruntime.cpp76 size_t estimatedCodeSize = code->codeSize(); in _add()
93 size_t codeSize = code->codeSize(); in _add() local
100 ASMJIT_ASSERT(offset + bufferSize <= codeSize); in _add()
104 ASMJIT_ASSERT(offset + virtualSize <= codeSize); in _add()
109 if (codeSize < estimatedCodeSize) in _add()
110 _allocator.shrink(ro, codeSize); in _add()
112 flush(ro, codeSize); in _add()
/dports/graphics/blend2d/blend2d-592d1ba52672bbf6365aba476bfe26b7bd2dfab8/src/blend2d/codec/
H A Djpeghuffman_p.h213 uint32_t codeSize; in readCode() local
217 codeSize = table->size[code]; in readCode()
218 if (BL_UNLIKELY(codeSize > bitCount)) in readCode()
228 codeSize = BL_JPEG_DECODER_HUFFMAN_ACCEL_BITS + 1; in readCode()
230 while (code >= table->maxCode[codeSize]) in readCode()
231 codeSize++; in readCode()
234 if (BL_UNLIKELY(codeSize == 17 || codeSize > bitCount)) in readCode()
238 code = peek<uint32_t>(codeSize) + uint32_t(table->delta[codeSize]); in readCode()
243 drop(codeSize); in readCode()

12345678910>>...55