correlates        160 src/fsk.c      		handle->correlates[i] = ftdm_malloc(sizeof(double) * handle->corrsize);
correlates        161 src/fsk.c      		if (handle->correlates[i] == NULL) {
correlates        173 src/fsk.c      		handle->correlates[0][i] = sin(phi_mark * (double) i);
correlates        174 src/fsk.c      		handle->correlates[1][i] = cos(phi_mark * (double) i);
correlates        175 src/fsk.c      		handle->correlates[2][i] = sin(phi_space * (double) i);
correlates        176 src/fsk.c      		handle->correlates[3][i] = cos(phi_space * (double) i);
correlates        228 src/fsk.c      		if ((*handle)->correlates[i] != NULL) {
correlates        229 src/fsk.c      			ftdm_safe_free((*handle)->correlates[i]);
correlates        230 src/fsk.c      			(*handle)->correlates[i] = NULL;
correlates        290 src/fsk.c      		factors[0] += handle->correlates[0][i] * val;
correlates        291 src/fsk.c      		factors[1] += handle->correlates[1][i] * val;
correlates        292 src/fsk.c      		factors[2] += handle->correlates[2][i] * val;
correlates        293 src/fsk.c      		factors[3] += handle->correlates[3][i] * val;
correlates         76 src/include/private/fsk.h 	double				*correlates[4];					/* one for each of sin/cos for mark/space */