/dports/net/norm/norm-1.5r6/protolib/src/common/ |
H A D | protoLFSR.cpp | 10 lfsr_state(initialState), in ProtoLFSR() 16 lfsr_state &= lfsr_mask; in ProtoLFSR() 98 lfsr_state >>= 1; in Shift() 100 if (bit) lfsr_state ^= lfsr_poly; in Shift() 110 if (bit) lfsr_state ^= lfsr_poly; in LoadBit() 111 lfsr_state <<= 1; in LoadBit() 112 lfsr_state &= lfsr_mask; in LoadBit() 113 if (bit) lfsr_state |= 1; in LoadBit() 157 lfsr_state = MirrorBits(lfsr_state, lfsr_bits); in Mirror() 170 bool bit = (0 != (lfsr_state & 0x00000001)); in GetNextBit() [all …]
|
/dports/net/norm/norm-1.5r6/protolib/include/ |
H A D | protoLFSR.h | 52 {return (lfsr_state);} in GetState() 73 lfsr_state = (initialState & lfsr_mask); 126 UINT32 lfsr_state; variable
|
/dports/misc/urh/urh-2.9.2/src/urh/signalprocessing/ |
H A D | Encoding.py | 56 self.lfsr_state = array.array("B", []) 326 if len(self.lfsr_state) == 0: 327 self.lfsr_state.extend([True] * len_pol) 332 if poly[j] and self.lfsr_state[j]: 338 self.lfsr_state[j] = self.lfsr_state[j - 1] 339 self.lfsr_state[0] = first_bit 340 return self.lfsr_state[1:len_pol] 381 self.lfsr_state = array.array("B", [])
|
/dports/audio/liba52/a52dec-0.7.4/liba52/ |
H A D | a52_internal.h | 70 uint16_t lfsr_state; /* dither state */ member
|
H A D | parse.c | 74 state->lfsr_state = 1; in a52_init() 310 nstate = dither_lut[state->lfsr_state >> 8] ^ (state->lfsr_state << 8); in dither_gen() 312 state->lfsr_state = (uint16_t) nstate; in dither_gen()
|
/dports/multimedia/avidemux-qt5/avidemux_2.7.6/avidemux_plugins/ADM_audioDecoders/ADM_ad_ac3/ADM_liba52/ |
H A D | a52_internal.h | 70 uint16_t lfsr_state; /* dither state */ member
|
H A D | parse.c | 79 state->lfsr_state = 1; in a52_init() 315 nstate = dither_lut[state->lfsr_state >> 8] ^ (state->lfsr_state << 8); in dither_gen() 317 state->lfsr_state = (uint16_t) nstate; in dither_gen()
|
/dports/multimedia/avidemux-plugins/avidemux_2.7.6/avidemux_plugins/ADM_audioDecoders/ADM_ad_ac3/ADM_liba52/ |
H A D | a52_internal.h | 70 uint16_t lfsr_state; /* dither state */ member
|
H A D | parse.c | 79 state->lfsr_state = 1; in a52_init() 315 nstate = dither_lut[state->lfsr_state >> 8] ^ (state->lfsr_state << 8); in dither_gen() 317 state->lfsr_state = (uint16_t) nstate; in dither_gen()
|
/dports/multimedia/avidemux/avidemux_2.7.6/avidemux_plugins/ADM_audioDecoders/ADM_ad_ac3/ADM_liba52/ |
H A D | a52_internal.h | 70 uint16_t lfsr_state; /* dither state */ member
|
H A D | parse.c | 79 state->lfsr_state = 1; in a52_init() 315 nstate = dither_lut[state->lfsr_state >> 8] ^ (state->lfsr_state << 8); in dither_gen() 317 state->lfsr_state = (uint16_t) nstate; in dither_gen()
|
/dports/multimedia/avidemux-cli/avidemux_2.7.6/avidemux_plugins/ADM_audioDecoders/ADM_ad_ac3/ADM_liba52/ |
H A D | a52_internal.h | 70 uint16_t lfsr_state; /* dither state */ member
|
H A D | parse.c | 79 state->lfsr_state = 1; in a52_init() 315 nstate = dither_lut[state->lfsr_state >> 8] ^ (state->lfsr_state << 8); in dither_gen() 317 state->lfsr_state = (uint16_t) nstate; in dither_gen()
|
/dports/multimedia/libmpeg3/libmpeg3-1.8/a52dec-0.7.3/liba52/ |
H A D | parse.c | 306 static uint16_t lfsr_state = 1; in dither_gen() local 309 state = dither_lut[lfsr_state >> 8] ^ (lfsr_state << 8); in dither_gen() 311 lfsr_state = (uint16_t) state; in dither_gen()
|
/dports/multimedia/libxine/xine-lib-1.2.11/contrib/a52dec/ |
H A D | parse.c | 64 state->lfsr_state = 1; in a52_init() 308 nstate = dither_lut[state->lfsr_state >> 8] ^ (state->lfsr_state << 8); in dither_gen() 310 state->lfsr_state = (uint16_t) nstate; in dither_gen()
|
H A D | a52_internal.h | 75 uint16_t lfsr_state; /* dither state */ member
|
/dports/multimedia/vlc/vlc-3.0.16/contrib/src/a52/ |
H A D | liba52-fixed.diff | 1478 state->lfsr_state = (uint16_t) nstate;
|