Home
last modified time | relevance | path

Searched refs:parbit (Results 1 – 6 of 6) sorted by relevance

/dports/emulators/mess/mame-mame0226/src/devices/machine/
H A Dkr2376.cpp240 int parbit; in detect_keypress() local
254 parbit = 0; in detect_keypress()
256 parbit ^= (m_parity >> i) & 1; in detect_keypress()
257 m_parity = parbit; in detect_keypress()
/dports/emulators/mame/mame-mame0226/src/devices/machine/
H A Dkr2376.cpp240 int parbit; in detect_keypress() local
254 parbit = 0; in detect_keypress()
256 parbit ^= (m_parity >> i) & 1; in detect_keypress()
257 m_parity = parbit; in detect_keypress()
/dports/multimedia/lives/lives-3.2.0/lives-plugins/weed-plugins/
H A Ddata_processor.c225 char *parbit; in exp_to_tree() local
259 parbit = weed_malloc(i - pstart + 3); in exp_to_tree()
260 sprintf(parbit, "0+"); // need at least one operator to hold the varname in exp_to_tree()
262 snprintf(parbit + 2, i - pstart + 1, "%s", exp + pstart); in exp_to_tree()
265 fprintf(stderr, "got subexpression2 %s\n", parbit); in exp_to_tree()
271 retval = exp_to_tree(parbit); in exp_to_tree()
272 weed_free(parbit); in exp_to_tree()
319 parbit = strndup(exp + pstart, i - pstart); in exp_to_tree()
322 fprintf(stderr, "got subexpression %s\n", parbit); in exp_to_tree()
328 retval = exp_to_tree(parbit); in exp_to_tree()
[all …]
/dports/astro/gpstk/GPSTk-8.0.0/ext/lib/Rxio/
H A DDataStatus.hpp89 static const std::ios_base::iostate parbit = std::ios_base::iostate(0x08); variable
97 bool parerr() const {return (rdstate() & parbit) != 0;} in parerr()
/dports/comms/fldigi/fldigi-4.1.20/src/cw_rtty/
H A Dview_rtty.cxx275 unsigned int parbit, par, data; in decode_char() local
277 parbit = (channel[ch].rxdata >> nbits) & 1; in decode_char()
280 if (rtty_parity != RTTY_PARITY_NONE && parbit != par) in decode_char()
H A Drtty.cxx420 unsigned int parbit, par, data; in decode_char() local
422 parbit = (rxdata >> nbits) & 1; in decode_char()
425 if (rtty_parity != RTTY_PARITY_NONE && parbit != par) in decode_char()