Lines Matching refs:timebase
279 u16 timebase, u8 *buf, int len) in l1oip_socket_send() argument
320 *p++ = timebase >> 8; /* time base */ in l1oip_socket_send()
321 *p++ = timebase; in l1oip_socket_send()
364 l1oip_socket_recv(struct l1oip *hc, u8 remotecodec, u8 channel, u16 timebase, in l1oip_socket_recv() argument
422 if (((s16)(timebase - rx_counter)) >= 0) { in l1oip_socket_recv()
424 if (timebase >= (rx_counter & 0xffff)) in l1oip_socket_recv()
426 (rx_counter & 0xffff0000) | timebase; in l1oip_socket_recv()
429 | timebase; in l1oip_socket_recv()
432 if (timebase < (rx_counter & 0xffff)) in l1oip_socket_recv()
434 (rx_counter & 0xffff0000) | timebase; in l1oip_socket_recv()
437 | timebase; in l1oip_socket_recv()
463 u16 timebase; in l1oip_socket_parse() local
594 timebase = (*buf++) << 8; in l1oip_socket_parse()
595 timebase |= (*buf++); in l1oip_socket_parse()
609 l1oip_socket_recv(hc, remotecodec, channel, timebase, buf, mlen); in l1oip_socket_parse()