Home
last modified time | relevance | path

Searched refs:SELECTOR_BITS (Results 1 – 16 of 16) sorted by relevance

/dports/cad/digital/Digital-0.27/src/main/java/de/neemann/digital/core/wiring/
H A DMultiplexer.java33 int size = 1 << elementAttributes.get(Keys.SELECTOR_BITS);
43 .addAttribute(Keys.SELECTOR_BITS)
54 this.selectorBits = attributes.get(Keys.SELECTOR_BITS); in Multiplexer()
H A DPriorityEncoder.java30 int inputs = 1 << elementAttributes.get(Keys.SELECTOR_BITS);
39 .addAttribute(Keys.SELECTOR_BITS)
56 final int outBits = attributes.get(Keys.SELECTOR_BITS); in PriorityEncoder()
H A DBitSelector.java31 .addAttribute(Keys.SELECTOR_BITS)
49 selBits = attributes.get(Keys.SELECTOR_BITS); in BitSelector()
H A DDecoder.java42 .addAttribute(Keys.SELECTOR_BITS)
52 this.selectorBits = attributes.get(Keys.SELECTOR_BITS); in Decoder()
H A DDemultiplexer.java47 .addAttribute(Keys.SELECTOR_BITS)
59 this.selectorBits = attributes.get(Keys.SELECTOR_BITS); in Demultiplexer()
/dports/cad/digital/Digital-0.27/src/test/java/de/neemann/digital/core/wiring/
H A DMultiplexerTest.java32 .set(Keys.SELECTOR_BITS, 2))); in testMux()
52 .set(Keys.SELECTOR_BITS, 2)); in testMux2()
69 .set(Keys.SELECTOR_BITS, 2)); in testMux3()
H A DDemultiplexerTest.java28 .set(Keys.SELECTOR_BITS, 2))); in testDemux()
48 .set(Keys.SELECTOR_BITS, 2))); in testDemuxDefault()
H A DPriorityEncoderTest.java25 .set(Keys.SELECTOR_BITS, 1))); in testEncoder2()
43 .set(Keys.SELECTOR_BITS, 2))); in testEncoder4()
H A DDecoderTest.java24 .set(Keys.SELECTOR_BITS, 2))); in testDecoder()
H A DBitSelectorTest.java25 .set(Keys.SELECTOR_BITS, 2))); in testBitSel()
/dports/devel/godot/godot-3.2.3-stable/thirdparty/etc2comp/
H A DEtcBlock4x4Encoding_R11.h72 static const unsigned int SELECTOR_BITS = 3; variable
73 static const unsigned int SELECTORS = 1 << SELECTOR_BITS;
H A DEtcBlock4x4Encoding_ETC1.h104 static const unsigned int SELECTOR_BITS = 2; variable
105 static const unsigned int SELECTORS = 1 << SELECTOR_BITS;
/dports/devel/godot-tools/godot-3.2.3-stable/thirdparty/etc2comp/
H A DEtcBlock4x4Encoding_R11.h72 static const unsigned int SELECTOR_BITS = 3; variable
73 static const unsigned int SELECTORS = 1 << SELECTOR_BITS;
H A DEtcBlock4x4Encoding_ETC1.h104 static const unsigned int SELECTOR_BITS = 2; variable
105 static const unsigned int SELECTORS = 1 << SELECTOR_BITS;
/dports/cad/digital/Digital-0.27/src/main/java/de/neemann/digital/draw/shapes/
H A DDemuxerShape.java41 outputCount = 1 << attr.get(Keys.SELECTOR_BITS); in DemuxerShape()
/dports/cad/digital/Digital-0.27/src/main/java/de/neemann/digital/core/element/
H A DKeys.java252 public static final Key<Integer> SELECTOR_BITS field in Keys