Home
last modified time | relevance | path

Searched refs:ofilt (Results 1 – 3 of 3) sorted by relevance

/dports/math/grace/grace-5.1.25/src/
H A Diofilters.c56 Filter *ifilt, *ofilt; variable
104 ofilt = xrealloc( ofilt, ++numOfilt*sizeof(Filter) ); in add_output_filter()
106 strcpy( ofilt[numOfilt-1].command, comm ); in add_output_filter()
107 ofilt[numOfilt-1].id = xmalloc( strlen(id)+1 ); in add_output_filter()
108 strcpy( ofilt[numOfilt-1].id, id ); in add_output_filter()
109 ofilt[numOfilt-1].method = FILTER_PATTERN; in add_output_filter()
125 filt = ofilt; in clear_io_filters()
185 if( ofilt[i].method==FILTER_PATTERN && test_pattern( ofilt[i].id, fn ) ) in filter_write()
187 else if( ofilt[i].method==FILTER_MAGIC && in filter_write()
188 test_magic( ofilt[i].method, ofilt[i].id, out ) ) in filter_write()
[all …]
/dports/audio/epos-devel/epos-2.5.37/src/
H A Dtdpsyn.cc152 for (i = 0; i < MAX_OFILT_ORDER; ofilt[i++] = 0); in tdpsyn()
323 ofilt[0] = synf0; in synseg()
325 for (m = 1; m < F0_FILT_ORD; m++) ofilt[0] -= a[m] * ofilt[m]; in synseg()
327 for (m = 0; m < F0_FILT_ORD; m++) outf0 += b[m] * ofilt[m]; in synseg()
328 D_PRINT(0, "of=[%.3f %.3f %.3f %.3f %.3f %.3f %.3f %.3f %.3f]\n",ofilt[0],ofilt[1], in synseg()
329 ofilt[2],ofilt[3],ofilt[4],ofilt[5],ofilt[6],ofilt[7],ofilt[8]); in synseg()
351 for (m = F0_FILT_ORD - 1; m > 0; m--) ofilt[m] = ofilt[m - 1]; in synseg()
H A Dtdpsyn.h43 double ofilt[MAX_OFILT_ORDER]; variable