Lines Matching refs:dword
200 … q0 = sample[j] - q2 + (c * (q1 >> 16)) + (((dword)(((dword) d) * ((dword)(q1 & 0xffff)))) >> 15); in capidtmf_goertzel_loop()
211 …q0 = sample[j] - q2 - ((c * (q1 >> 16)) + (((dword)(((dword) d) * ((dword)(q1 & 0xffff)))) >> 15)); in capidtmf_goertzel_loop()
226 …q0 = sample[j] - q2 + (c * (q1 >> 16)) + (((dword)(((dword)(c >> 1)) * ((dword)(q1 & 0xffff)))) >>… in capidtmf_goertzel_loop()
237 …q0 = sample[j] - q2 - ((c * (q1 >> 16)) + (((dword)(((dword)(c >> 1)) * ((dword)(q1 & 0xffff)))) >… in capidtmf_goertzel_loop()
253 dword k; in capidtmf_goertzel_result()
261 d = ((d << 1) * (-q1 >> 16)) + (((dword)(((dword) d) * ((dword)(-q1 & 0xffff)))) >> 15); in capidtmf_goertzel_result()
263 d = ((-d << 1) * (-q1 >> 16)) + (((dword)(((dword) -d) * ((dword)(-q1 & 0xffff)))) >> 15); in capidtmf_goertzel_result()
267 k = ((dword)(d & 0xffff)) * ((dword)(e & 0xffff)); in capidtmf_goertzel_result()
270 k = ((dword)(d >> 16)) * ((dword)(e & 0xffff)); in capidtmf_goertzel_result()
273 k = ((dword)(d & 0xffff)) * ((dword)(e >> 16)); in capidtmf_goertzel_result()
276 hi += ((dword)(d >> 16)) * ((dword)(e >> 16)); in capidtmf_goertzel_result()
281 k = ((dword)(d & 0xffff)) * ((dword)(e & 0xffff)); in capidtmf_goertzel_result()
284 k = ((dword)(d >> 16)) * ((dword)(e & 0xffff)); in capidtmf_goertzel_result()
287 k = ((dword)(d & 0xffff)) * ((dword)(e >> 16)); in capidtmf_goertzel_result()
290 hi -= ((dword)(d >> 16)) * ((dword)(e >> 16)); in capidtmf_goertzel_result()
299 k = ((dword)(d & 0xffff)) * ((dword)(d & 0xffff)); in capidtmf_goertzel_result()
302 k = ((dword)(d >> 16)) * ((dword)(d & 0xffff)); in capidtmf_goertzel_result()
305 hi += ((dword)(d >> 16)) * ((dword)(d >> 16)); in capidtmf_goertzel_result()
307 k = ((dword)(d & 0xffff)) * ((dword)(d & 0xffff)); in capidtmf_goertzel_result()
310 k = ((dword)(d >> 16)) * ((dword)(d & 0xffff)); in capidtmf_goertzel_result()
313 hi += ((dword)(d >> 16)) * ((dword)(d >> 16)); in capidtmf_goertzel_result()
433 p_state->recv.min_digit_duration = (word)(((((dword) min_digit_duration) * 8) + in capidtmf_recv_enable()
434 ((dword)(CAPIDTMF_RECV_TIME_GRANULARITY / 2))) / ((dword) CAPIDTMF_RECV_TIME_GRANULARITY)); in capidtmf_recv_enable()
440 (word)((((dword) min_gap_duration) * 8) / ((dword) CAPIDTMF_RECV_TIME_GRANULARITY)); in capidtmf_recv_enable()
495 dword lo, hi; in capidtmf_recv_block()
553 lo = (dword)(p_state->recv.goertzel_buffer[0][i]); in capidtmf_recv_block()
554 hi = (dword)(p_state->recv.goertzel_buffer[1][i]); in capidtmf_recv_block()