Lines Matching defs:mark
74 * mark mark
85 * ST hardware returns mark (IRB_RX_ON) and total symbol time (IRB_RX_SYS), so
86 * convert to standard mark/space we have to calculate space=(IRB_RX_SYS-mark)
87 * The mark time represents the amount of time the carrier (usually 36-40kHz)
89 * bit 0 is represented by space>mark.
95 unsigned int symbol, mark = 0;
122 mark = readl(dev->rx_base + IRB_RX_ON);
128 if ((mark > 2) && (symbol > 1)) {
129 symbol -= mark;
133 mark *= dev->sample_mult;
134 mark /= dev->sample_div;
137 ev.duration = mark;