(dchar: str, outerLoop: bool=False)
| 167 | # return '(({0} *)( x{1} + J*sb{1} ))'.format( DCHAR_TO_CTYPE[dchar], num ) |
| 168 | |
| 169 | def REDUCE(dchar: str, outerLoop: bool=False) -> str: |
| 170 | if outerLoop: |
| 171 | return DEST(dchar) |
| 172 | # INNER LOOP |
| 173 | return '*({0} *)dest'.format(DCHAR_TO_CTYPE[dchar]) |
| 174 | |
| 175 | def VEC_LOOP(expr: str) -> str: |
| 176 | expr = expr.replace('$ARG3', ARG(3)) |
nothing calls this directly
no test coverage detected
searching dependent graphs…