Lines Matching refs:timebase
265 u16 timebase, u8 *buf, int len) in l1oip_socket_send() argument
306 *p++ = timebase >> 8; /* time base */ in l1oip_socket_send()
307 *p++ = timebase; in l1oip_socket_send()
350 l1oip_socket_recv(struct l1oip *hc, u8 remotecodec, u8 channel, u16 timebase, in l1oip_socket_recv() argument
408 if (((s16)(timebase - rx_counter)) >= 0) { in l1oip_socket_recv()
410 if (timebase >= (rx_counter & 0xffff)) in l1oip_socket_recv()
412 (rx_counter & 0xffff0000) | timebase; in l1oip_socket_recv()
415 | timebase; in l1oip_socket_recv()
418 if (timebase < (rx_counter & 0xffff)) in l1oip_socket_recv()
420 (rx_counter & 0xffff0000) | timebase; in l1oip_socket_recv()
423 | timebase; in l1oip_socket_recv()
449 u16 timebase; in l1oip_socket_parse() local
580 timebase = (*buf++) << 8; in l1oip_socket_parse()
581 timebase |= (*buf++); in l1oip_socket_parse()
595 l1oip_socket_recv(hc, remotecodec, channel, timebase, buf, mlen); in l1oip_socket_parse()