/external/fft2d/src/fft2d/fft2d/ |
D | fftsg2d.c | 571 void ddct(int n, int isgn, double *a, int *ip, double *w); in ddct2d() 620 ddct(n2, isgn, a[i], ip, w); in ddct2d() 790 void ddct(int n, int isgn, double *a, int *ip, double *w); in ddxt2d_sub() 803 ddct(n1, isgn, t, ip, w); in ddxt2d_sub() 804 ddct(n1, isgn, &t[n1], ip, w); in ddxt2d_sub() 805 ddct(n1, isgn, &t[2 * n1], ip, w); in ddxt2d_sub() 806 ddct(n1, isgn, &t[3 * n1], ip, w); in ddxt2d_sub() 826 ddct(n1, isgn, t, ip, w); in ddxt2d_sub() 827 ddct(n1, isgn, &t[n1], ip, w); in ddxt2d_sub() 1088 void ddct(int n, int isgn, double *a, int *ip, double *w); in ddxt2d0_th() [all …]
|
D | fftsg3d.c | 1099 void ddct(int n, int isgn, double *a, int *ip, double *w); in ddxt3da_sub() 1106 ddct(n3, isgn, a[i][j], ip, w); in ddxt3da_sub() 1122 ddct(n2, isgn, t, ip, w); in ddxt3da_sub() 1123 ddct(n2, isgn, &t[n2], ip, w); in ddxt3da_sub() 1124 ddct(n2, isgn, &t[2 * n2], ip, w); in ddxt3da_sub() 1125 ddct(n2, isgn, &t[3 * n2], ip, w); in ddxt3da_sub() 1145 ddct(n2, isgn, t, ip, w); in ddxt3da_sub() 1146 ddct(n2, isgn, &t[n2], ip, w); in ddxt3da_sub() 1163 void ddct(int n, int isgn, double *a, int *ip, double *w); in ddxt3db_sub() 1177 ddct(n1, isgn, t, ip, w); in ddxt3db_sub() [all …]
|
D | fftsg2d.f | 401 call ddct(n1, isgn, a(0, j), ip, w) 527 call ddct(n2, isgn, t, ip, w) 528 call ddct(n2, isgn, t(n2), ip, w) 529 call ddct(n2, isgn, t(2 * n2), ip, w) 530 call ddct(n2, isgn, t(3 * n2), ip, w) 550 call ddct(n2, isgn, t, ip, w) 551 call ddct(n2, isgn, t(n2), ip, w)
|
D | fftsg3d.f | 819 call ddct(n1, isgn, a(0, j, k), ip, w) 835 call ddct(n2, isgn, t, ip, w) 836 call ddct(n2, isgn, t(n2), ip, w) 837 call ddct(n2, isgn, t(2 * n2), ip, w) 838 call ddct(n2, isgn, t(3 * n2), ip, w) 858 call ddct(n2, isgn, t, ip, w) 859 call ddct(n2, isgn, t(n2), ip, w) 888 call ddct(n3, isgn, t, ip, w) 889 call ddct(n3, isgn, t(n3), ip, w) 890 call ddct(n3, isgn, t(2 * n3), ip, w) [all …]
|
D | readme2d.txt | 53 ddct: 1-dim Discrete Cosine Transform
|
D | fftsg.f | 319 subroutine ddct(n, isgn, a, ip, w) subroutine
|
D | fftsg.c | 349 void ddct(int n, int isgn, double *a, int *ip, double *w) in ddct() function
|
/external/fft2d/src/fft2d/ |
D | fft.h | 15 extern void ddct(int, int, double *, int *, double *);
|
/external/tensorflow/third_party/fft2d/ |
D | fft.h | 27 extern void ddct(int, int, double *, int *, double *);
|
/external/tflite-support/third_party/fft2d/ |
D | fft.h | 27 extern void ddct(int, int, double *, int *, double *);
|