Home
last modified time | relevance | path

Searched refs:not_command (Results 1 – 5 of 5) sorted by relevance

/OK3568_Linux_fs/kernel/drivers/media/rc/
H A Dzx-irdec.c52 u8 command, not_command; in zx_irdec_irq() local
66 not_command = (rawcode >> 24) & 0xff; in zx_irdec_irq()
72 command, not_command, in zx_irdec_irq()
H A Dir-sanyo-decoder.c51 u8 command, not_command; in ir_sanyo_decode() local
144 not_command = bitrev8((data->bits >> 0) & 0xff); in ir_sanyo_decode()
146 if ((command ^ not_command) != 0xff) { in ir_sanyo_decode()
H A Dir-nec-decoder.c44 u8 address, not_address, command, not_command; in ir_nec_decode() local
145 not_command = bitrev8((data->bits >> 0) & 0xff); in ir_nec_decode()
150 not_command, in ir_nec_decode()
/OK3568_Linux_fs/u-boot/drivers/input/
H A Drockchip_ir.c123 u8 __maybe_unused address, not_address, command, not_command; in ir_nec_decode() local
176 not_command = ((data->bits >> 0) & 0xff); in ir_nec_decode()
178 if ((command ^ not_command) != 0xff) { in ir_nec_decode()
183 scancode = command << 8 | not_command; in ir_nec_decode()
/OK3568_Linux_fs/kernel/include/media/
H A Drc-core.h355 u8 command, u8 not_command, in ir_nec_bytes_to_scancode() argument
360 if ((command ^ not_command) != 0xff) { in ir_nec_bytes_to_scancode()
366 not_command << 8 | in ir_nec_bytes_to_scancode()