| 33 | #undef LOOP_BITS |
| 34 | |
| 35 | void printHexArray(const float * a, unsigned len,unsigned valuesPerLine){ |
| 36 | printf("{"); |
| 37 | for(unsigned i=0; i<len; ++i){ |
| 38 | if((i % valuesPerLine) == 0) printf("\n\t"); |
| 39 | Twiddle<float> t(a[i]); |
| 40 | printf("0x%08x%s", t.u, i == len-1 ? "\n};" : ","); |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | void printPlot(float value, unsigned width, bool spaces, bool sign, const char * point){ |
| 45 |
nothing calls this directly
no outgoing calls
no test coverage detected