Home
last modified time | relevance | path

Searched refs:bitCounter (Results 1 – 25 of 48) sorted by relevance

12

/dports/audio/kexis/kexis/
H A Dbits.c73 if(kexisBlock->bitCounter + length < 32) { in push_bits()
79 assembly <<= ((32 - kexisBlock->bitCounter) - length); in push_bits()
86 kexisBlock->bitCounter += length; in push_bits()
88 else if(kexisBlock->bitCounter + length == 32) { in push_bits()
94 assembly <<= ((32 - kexisBlock->bitCounter) - length); in push_bits()
105 kexisBlock->bitCounter = 0; in push_bits()
118 assembly >>= (length - (32 - kexisBlock->bitCounter)); in push_bits()
121 assembly &= ((1<<(32-kexisBlock->bitCounter)) -1); in push_bits()
140 assembly &= ((1<<(length - (32-kexisBlock->bitCounter))) -1); in push_bits()
143 assembly <<= (32 - (length - (32-kexisBlock->bitCounter))); in push_bits()
[all …]
H A Dtypes.h162 int bitCounter; //Keeps track of the halfway assembled word when member
H A Dencode.c70 kexisBlock.bitCounter=0; in compress()
/dports/comms/qsstv/qsstv/sstv/
H A Dvisfskid.cpp136 bitCounter=0; in init()
313 bitCounter=0; in extract()
330 bitCounter++; in extract()
331 if(bitCounter==6) in extract()
337 bitCounter=0; in extract()
467 bitCounter=0; in extractNarrow()
481 bitCounter++; in extractNarrow()
483 if(bitCounter==24) in extractNarrow()
585 bitCounter=0; in extractWide()
599 if (bitCounter<=11) in extractWide()
[all …]
H A Dvisfskid.h41 unsigned char bitCounter;
/dports/math/kcalc/kcalc-21.12.3/
H A Dkcalc_bitset.cpp74 int bitCounter = 63; in KCalcBitset() local
85 tmpBitButton->setToolTip(i18n("Bit %1 = %2", bitCounter, 1ULL << bitCounter)); in KCalcBitset()
87 bit_button_group_->addButton(tmpBitButton, bitCounter); in KCalcBitset()
88 bitCounter--; in KCalcBitset()
93 label->setText(QString::number(bitCounter + 1)); in KCalcBitset()
/dports/comms/uhd/uhd-90ce6062b6b5df2eddeee723777be85108e4e7c7/fpga/usrp3/lib/white_rabbit/wr_cores_v4_2/modules/wr_dacs/
H A Dspec_serial_dac.vhd85 signal bitCounter : std_logic_vector(g_num_data_bits + g_num_extra_bits+1 downto 0); signal
187 bitCounter(0) <= '1';
188 bitCounter(bitCounter'left downto 1) <= (others => '0');
190 bitCounter(0) <= '0';
191 bitCounter(bitCounter'left downto 1) <= bitCounter(bitCounter'left - 1 downto 0);
196 endSendingData <= bitCounter(bitCounter'left);
/dports/comms/uhd/uhd-90ce6062b6b5df2eddeee723777be85108e4e7c7/fpga/usrp3/top/n3xx/
H A Dn3xx_serial_dac.vhd84 signal bitCounter : std_logic_vector(g_num_data_bits + g_num_extra_bits+1 downto 0); signal
196 bitCounter(0) <= '1';
197 bitCounter(bitCounter'left downto 1) <= (others => '0');
199 bitCounter(0) <= '0';
200 bitCounter(bitCounter'left downto 1) <= bitCounter(bitCounter'left - 1 downto 0);
205 endSendingData <= bitCounter(bitCounter'left);
/dports/devel/msp430-debug-stack/msp430-debug-stack-3.15.0.1/Bios/src/hal/macros/
H A DHilCommand.c118 unsigned char bitCounter; in HAL_FUNCTION() local
125 for(bitCounter = 0; bitCounter < bits; ++bitCounter) in HAL_FUNCTION()
128 value |= (data >> bitCounter) & 1; in HAL_FUNCTION()
/dports/math/singular/Singular-Release-4-2-1/kernel/linear_algebra/
H A DMinor.cc566 int bitCounter = 0; /* for storing the number of bits hit before a in selectNextRows() local
582 bitCounter = hitBits; /* So, whenever we set newBitToBeSet, we want in selectNextRows()
639 bitCounter++; /* This is now the number of correct bits in _rowKey[...]; in selectNextRows()
646 while (bitCounter < k) in selectNextRows()
653 while (bitCounter < k && exponent < 32) in selectNextRows()
658 bitCounter++; in selectNextRows()
697 int bitCounter = 0; /* for storing the number of bits hit before a specific in selectNextColumns() local
769 bitCounter++; /* This is now the number of correct bits in in selectNextColumns()
777 while (bitCounter < k) in selectNextColumns()
784 while (bitCounter < k && exponent < 32) in selectNextColumns()
[all …]
/dports/comms/qsstv/qsstv/sstv/modes/
H A Dmodeavt.cpp121 bitCounter=0; in process()
142 debugState=stBITS+bitCounter; in process()
145 bitCounter++; in process()
146 if (bitCounter==16) switchTrailerState(CALCDELAY); in process()
H A Dmodeavt.h44 unsigned int bitCounter; variable
/dports/finance/weberp/webERP/includes/barcodepack/
H A Dclass.qrCode.php882 $bitCounter = 0;
886 $y = $this->bitsCoordinates[$bitCounter][0];
887 $x = $this->bitsCoordinates[$bitCounter][1];
889 $bitCounter++;
897 $y = $this->bitsCoordinates[$bitCounter][0];
898 $x = $this->bitsCoordinates[$bitCounter][1];
900 $bitCounter++;
908 $y = $this->bitsCoordinates[$bitCounter][0];
909 $x = $this->bitsCoordinates[$bitCounter][1];
911 $bitCounter++;
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/xeen/
H A Dfiles.cpp409 int bitCounter = 0; in syncBitFlags() local
410 for (bool *p = startP; p < endP; ++p, bitCounter = (bitCounter + 1) % 8) { in syncBitFlags()
411 if (bitCounter == 0) { in syncBitFlags()
420 *p = ((data >> bitCounter) & 1) != 0; in syncBitFlags()
422 data |= 1 << bitCounter; in syncBitFlags()
/dports/games/scummvm/scummvm-2.5.1/engines/xeen/
H A Dfiles.cpp423 int bitCounter = 0; in syncBitFlags() local
424 for (bool *p = startP; p < endP; ++p, bitCounter = (bitCounter + 1) % 8) { in syncBitFlags()
425 if (bitCounter == 0) { in syncBitFlags()
434 *p = ((data >> bitCounter) & 1) != 0; in syncBitFlags()
436 data |= 1 << bitCounter; in syncBitFlags()
/dports/audio/cantata/cantata-2.4.2/replaygain/
H A Dffmpeginput.cpp297 int bitCounter = 0; in setChannelMap() local
299 if (handle->codecContext->channel_layout & (1 << bitCounter)) { in setChannelMap()
300 switch (1 << bitCounter) { in setChannelMap()
342 ++bitCounter; in setChannelMap()
/dports/devel/tpasm/tpasm1.11/samples/
H A Dtest.asm67 bitCounter ds 1 ; keeps track of the number of bits send serially define
120 movwf bitCounter ; initialize bit counter
133 decfsz bitCounter,F
/dports/games/ufoai/ufoai-2.5-source/src/game/
H A Dinv_shared.cpp446 int bitCounter = 0; in INVSH_ShapeSize() local
450 ++bitCounter; in INVSH_ShapeSize()
452 return bitCounter; in INVSH_ShapeSize()
/dports/net/ntpsec/ntpsec-NTPsec_1_2_1/pylib/
H A Dagentx_packet.py1258 bitCounter = 0
1262 current += (int(bit) << (7 - bitCounter))
1263 bitCounter += 1
1264 if bitCounter >= 8: # end of byte
1265 bitCounter = 0
1269 if bitCounter != 0:
/dports/graphics/openorienteering-mapper/mapper-0.9.2/src/printsupport/qt-5.12.4/
H A Dadvanced_pdf.cpp1883 int bitCounter = 0; in embedFont() local
1885 cidSetStream.data()[byteCounter] |= (1 << (7 - bitCounter)); in embedFont()
1887 bitCounter++; in embedFont()
1888 if (bitCounter == 8) { in embedFont()
1889 bitCounter = 0; in embedFont()
/dports/devel/qt5-testlib/kde-qtbase-5.15.2p263/src/gui/painting/
H A Dqpdf.cpp1995 int bitCounter = 0; in embedFont() local
1997 cidSetStream.data()[byteCounter] |= (1 << (7 - bitCounter)); in embedFont()
1999 bitCounter++; in embedFont()
2000 if (bitCounter == 8) { in embedFont()
2001 bitCounter = 0; in embedFont()
/dports/databases/qt5-sqldrivers-sqlite2/kde-qtbase-5.15.2p263/src/gui/painting/
H A Dqpdf.cpp1995 int bitCounter = 0; in embedFont() local
1997 cidSetStream.data()[byteCounter] |= (1 << (7 - bitCounter)); in embedFont()
1999 bitCounter++; in embedFont()
2000 if (bitCounter == 8) { in embedFont()
2001 bitCounter = 0; in embedFont()
/dports/databases/qt5-sqldrivers-tds/kde-qtbase-5.15.2p263/src/gui/painting/
H A Dqpdf.cpp1995 int bitCounter = 0; in embedFont() local
1997 cidSetStream.data()[byteCounter] |= (1 << (7 - bitCounter)); in embedFont()
1999 bitCounter++; in embedFont()
2000 if (bitCounter == 8) { in embedFont()
2001 bitCounter = 0; in embedFont()
/dports/databases/qt5-sqldrivers-sqlite3/kde-qtbase-5.15.2p263/src/gui/painting/
H A Dqpdf.cpp1995 int bitCounter = 0; in embedFont() local
1997 cidSetStream.data()[byteCounter] |= (1 << (7 - bitCounter)); in embedFont()
1999 bitCounter++; in embedFont()
2000 if (bitCounter == 8) { in embedFont()
2001 bitCounter = 0; in embedFont()
/dports/databases/qt5-sqldrivers-ibase/kde-qtbase-5.15.2p263/src/gui/painting/
H A Dqpdf.cpp1995 int bitCounter = 0; in embedFont() local
1997 cidSetStream.data()[byteCounter] |= (1 << (7 - bitCounter)); in embedFont()
1999 bitCounter++; in embedFont()
2000 if (bitCounter == 8) { in embedFont()
2001 bitCounter = 0; in embedFont()

12