Lines Matching refs:timebase
277 u16 timebase, u8 *buf, int len) in l1oip_socket_send() argument
318 *p++ = timebase >> 8; /* time base */ in l1oip_socket_send()
319 *p++ = timebase; in l1oip_socket_send()
362 l1oip_socket_recv(struct l1oip *hc, u8 remotecodec, u8 channel, u16 timebase, in l1oip_socket_recv() argument
420 if (((s16)(timebase - rx_counter)) >= 0) { in l1oip_socket_recv()
422 if (timebase >= (rx_counter & 0xffff)) in l1oip_socket_recv()
424 (rx_counter & 0xffff0000) | timebase; in l1oip_socket_recv()
427 | timebase; in l1oip_socket_recv()
430 if (timebase < (rx_counter & 0xffff)) in l1oip_socket_recv()
432 (rx_counter & 0xffff0000) | timebase; in l1oip_socket_recv()
435 | timebase; in l1oip_socket_recv()
467 u16 timebase; in l1oip_socket_parse() local
598 timebase = (*buf++) << 8; in l1oip_socket_parse()
599 timebase |= (*buf++); in l1oip_socket_parse()
613 l1oip_socket_recv(hc, remotecodec, channel, timebase, buf, mlen); in l1oip_socket_parse()