Kludge Tracker: Gnuradio - v3.4.0-101-g7e2b45b

Parent Directory (gnuradio/gnuradio-core/src/lib)

Kludge Summary of gnuradio/gnuradio-core/src/lib/gengen

Total Kludges 3
Total Subdirs 0

All Directories within gnuradio/gnuradio-core/src/lib/gengen

All Files within gnuradio/gnuradio-core/src/lib/gengen

Kludge Snippets in gnuradio/gnuradio-core/src/lib/gengen

gnuradio/gnuradio-core/src/lib/gengen/gr_noise_source_X.cc.t

Category FIXME
Committer jcorgan
Commit ID 5d69a524f81f234b3fbc41d49ba18d6f6886baba
84            for (int i = 0; i < noutput_items; i++)
85              out[i] = (@TYPE@)(d_ampl * d_rng.laplacian ());
86            break;
87            
88          case GR_IMPULSE:	// FIXME changeable impulse settings
89            for (int i = 0; i < noutput_items; i++)
90              out[i] = (@TYPE@)(d_ampl * d_rng.impulse (9));
91            break;
92        #endif
				

gnuradio/gnuradio-core/src/lib/gengen/gr_sig_source_X.cc.t — 1

Category FIXME
Committer jcorgan
Commit ID 5d69a524f81f234b3fbc41d49ba18d6f6886baba
63        #if @IS_COMPLEX@	// complex?
64        
65          case GR_CONST_WAVE:
66            t = (gr_complex) d_ampl + d_offset;
67            for (int i = 0; i < noutput_items; i++)	// FIXME unroll
68              optr[i] = t;
69            break;
70            
71          case GR_SIN_WAVE:
				

gnuradio/gnuradio-core/src/lib/gengen/gr_sig_source_X.cc.t — 2

Category FIXME
Committer jcorgan
Commit ID 5d69a524f81f234b3fbc41d49ba18d6f6886baba
141        #else			// nope...
142        
143          case GR_CONST_WAVE:
144            t = (@TYPE@) d_ampl + d_offset;
145            for (int i = 0; i < noutput_items; i++)	// FIXME unroll
146              optr[i] = t;
147            break;
148            
149          case GR_SIN_WAVE: