Lines Matching refs:k

253 	dword k;  in capidtmf_goertzel_result()  local
267 k = ((dword)(d & 0xffff)) * ((dword)(e & 0xffff)); in capidtmf_goertzel_result()
268 lo = k & 0xffff; in capidtmf_goertzel_result()
269 mid = k >> 16; in capidtmf_goertzel_result()
270 k = ((dword)(d >> 16)) * ((dword)(e & 0xffff)); in capidtmf_goertzel_result()
271 mid += k & 0xffff; in capidtmf_goertzel_result()
272 hi = k >> 16; in capidtmf_goertzel_result()
273 k = ((dword)(d & 0xffff)) * ((dword)(e >> 16)); in capidtmf_goertzel_result()
274 mid += k & 0xffff; in capidtmf_goertzel_result()
275 hi += k >> 16; in capidtmf_goertzel_result()
281 k = ((dword)(d & 0xffff)) * ((dword)(e & 0xffff)); in capidtmf_goertzel_result()
282 lo = -((long)(k & 0xffff)); in capidtmf_goertzel_result()
283 mid = -((long)(k >> 16)); in capidtmf_goertzel_result()
284 k = ((dword)(d >> 16)) * ((dword)(e & 0xffff)); in capidtmf_goertzel_result()
285 mid -= k & 0xffff; in capidtmf_goertzel_result()
286 hi = -((long)(k >> 16)); in capidtmf_goertzel_result()
287 k = ((dword)(d & 0xffff)) * ((dword)(e >> 16)); in capidtmf_goertzel_result()
288 mid -= k & 0xffff; in capidtmf_goertzel_result()
289 hi -= k >> 16; in capidtmf_goertzel_result()
299 k = ((dword)(d & 0xffff)) * ((dword)(d & 0xffff)); in capidtmf_goertzel_result()
300 lo += k & 0xffff; in capidtmf_goertzel_result()
301 mid += k >> 16; in capidtmf_goertzel_result()
302 k = ((dword)(d >> 16)) * ((dword)(d & 0xffff)); in capidtmf_goertzel_result()
303 mid += (k & 0xffff) << 1; in capidtmf_goertzel_result()
304 hi += (k >> 16) << 1; in capidtmf_goertzel_result()
307 k = ((dword)(d & 0xffff)) * ((dword)(d & 0xffff)); in capidtmf_goertzel_result()
308 lo += k & 0xffff; in capidtmf_goertzel_result()
309 mid += k >> 16; in capidtmf_goertzel_result()
310 k = ((dword)(d >> 16)) * ((dword)(d & 0xffff)); in capidtmf_goertzel_result()
311 mid += (k & 0xffff) << 1; in capidtmf_goertzel_result()
312 hi += (k >> 16) << 1; in capidtmf_goertzel_result()
466 word i, j, k, flags; in capidtmf_recv_indication() local
473 k = p_state->recv.digit_write_pos; in capidtmf_recv_indication()
479 } while (j != k); in capidtmf_recv_indication()
480 p_state->recv.digit_read_pos = k; in capidtmf_recv_indication()