~ubuntu-branches/ubuntu/maverick/blender/maverick

« back to all changes in this revision

Viewing changes to extern/fftw/rdft/codelets/r2hc/r2hc_2.c

  • Committer: Bazaar Package Importer
  • Author(s): Khashayar Naderehvandi, Khashayar Naderehvandi, Alessio Treglia
  • Date: 2009-01-22 16:53:59 UTC
  • mfrom: (14.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20090122165359-v0996tn7fbit64ni
Tags: 2.48a+dfsg-1ubuntu1
[ Khashayar Naderehvandi ]
* Merge from debian experimental (LP: #320045), Ubuntu remaining changes:
  - Add patch correcting header file locations.
  - Add libvorbis-dev and libgsm1-dev to Build-Depends.
  - Use avcodec_decode_audio2() in source/blender/src/hddaudio.c

[ Alessio Treglia ]
* Add missing previous changelog entries.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (c) 2003, 2006 Matteo Frigo
 
3
 * Copyright (c) 2003, 2006 Massachusetts Institute of Technology
 
4
 *
 
5
 * This program is free software; you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License as published by
 
7
 * the Free Software Foundation; either version 2 of the License, or
 
8
 * (at your option) any later version.
 
9
 *
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program; if not, write to the Free Software
 
17
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
18
 *
 
19
 */
 
20
 
 
21
/* This file was automatically generated --- DO NOT EDIT */
 
22
/* Generated on Sun Jul  2 14:18:39 EDT 2006 */
 
23
 
 
24
#include "codelet-rdft.h"
 
25
 
 
26
#ifdef HAVE_FMA
 
27
 
 
28
/* Generated by: ../../../genfft/gen_r2hc -fma -reorder-insns -schedule-for-pipeline -compact -variables 4 -pipeline-latency 4 -n 2 -name r2hc_2 -include r2hc.h */
 
29
 
 
30
/*
 
31
 * This function contains 2 FP additions, 0 FP multiplications,
 
32
 * (or, 2 additions, 0 multiplications, 0 fused multiply/add),
 
33
 * 3 stack variables, and 4 memory accesses
 
34
 */
 
35
/*
 
36
 * Generator Id's : 
 
37
 * $Id: algsimp.ml,v 1.9 2006-02-12 23:34:12 athena Exp $
 
38
 * $Id: fft.ml,v 1.4 2006-01-05 03:04:27 stevenj Exp $
 
39
 * $Id: gen_r2hc.ml,v 1.18 2006-02-12 23:34:12 athena Exp $
 
40
 */
 
41
 
 
42
#include "r2hc.h"
 
43
 
 
44
static void r2hc_2(const R *I, R *ro, R *io, stride is, stride ros, stride ios, INT v, INT ivs, INT ovs)
 
45
{
 
46
     INT i;
 
47
     for (i = v; i > 0; i = i - 1, I = I + ivs, ro = ro + ovs, io = io + ovs, MAKE_VOLATILE_STRIDE(is), MAKE_VOLATILE_STRIDE(ros), MAKE_VOLATILE_STRIDE(ios)) {
 
48
          E T1, T2;
 
49
          T1 = I[0];
 
50
          T2 = I[WS(is, 1)];
 
51
          ro[0] = T1 + T2;
 
52
          ro[WS(ros, 1)] = T1 - T2;
 
53
     }
 
54
}
 
55
 
 
56
static const kr2hc_desc desc = { 2, "r2hc_2", {2, 0, 0, 0}, &GENUS, 0, 0, 0, 0, 0 };
 
57
 
 
58
void X(codelet_r2hc_2) (planner *p) {
 
59
     X(kr2hc_register) (p, r2hc_2, &desc);
 
60
}
 
61
 
 
62
#else                           /* HAVE_FMA */
 
63
 
 
64
/* Generated by: ../../../genfft/gen_r2hc -compact -variables 4 -pipeline-latency 4 -n 2 -name r2hc_2 -include r2hc.h */
 
65
 
 
66
/*
 
67
 * This function contains 2 FP additions, 0 FP multiplications,
 
68
 * (or, 2 additions, 0 multiplications, 0 fused multiply/add),
 
69
 * 3 stack variables, and 4 memory accesses
 
70
 */
 
71
/*
 
72
 * Generator Id's : 
 
73
 * $Id: algsimp.ml,v 1.9 2006-02-12 23:34:12 athena Exp $
 
74
 * $Id: fft.ml,v 1.4 2006-01-05 03:04:27 stevenj Exp $
 
75
 * $Id: gen_r2hc.ml,v 1.18 2006-02-12 23:34:12 athena Exp $
 
76
 */
 
77
 
 
78
#include "r2hc.h"
 
79
 
 
80
static void r2hc_2(const R *I, R *ro, R *io, stride is, stride ros, stride ios, INT v, INT ivs, INT ovs)
 
81
{
 
82
     INT i;
 
83
     for (i = v; i > 0; i = i - 1, I = I + ivs, ro = ro + ovs, io = io + ovs, MAKE_VOLATILE_STRIDE(is), MAKE_VOLATILE_STRIDE(ros), MAKE_VOLATILE_STRIDE(ios)) {
 
84
          E T1, T2;
 
85
          T1 = I[0];
 
86
          T2 = I[WS(is, 1)];
 
87
          ro[WS(ros, 1)] = T1 - T2;
 
88
          ro[0] = T1 + T2;
 
89
     }
 
90
}
 
91
 
 
92
static const kr2hc_desc desc = { 2, "r2hc_2", {2, 0, 0, 0}, &GENUS, 0, 0, 0, 0, 0 };
 
93
 
 
94
void X(codelet_r2hc_2) (planner *p) {
 
95
     X(kr2hc_register) (p, r2hc_2, &desc);
 
96
}
 
97
 
 
98
#endif                          /* HAVE_FMA */