Home
last modified time | relevance | path

Searched refs:p1i (Results 1 – 25 of 144) sorted by relevance

123456

/dports/audio/mda-lv2/mda-lv2-1.2.6/src/
H A DmdaDetune.cpp245 p1i = (int32_t)p1; in process()
247 a = *(buf + p1i); in process()
248 ++p1i &= l; in process()
264 p1i = (int32_t)p2; in process()
266 a = *(buf + p1i); in process()
267 ++p1i &= l; in process()
318 p1i = (int32_t)p1; in processReplacing()
320 a = *(buf + p1i); in processReplacing()
321 ++p1i &= l; in processReplacing()
339 a = *(buf + p1i); in processReplacing()
[all …]
/dports/math/scilab/scilab-6.1.1/scilab/modules/polynomials/src/fortran/
H A Dwpmul.f14 subroutine wpmul(p1r,p1i,d1,p2r,p2i,d2,p3r,p3i,d3) argument
57 & - ddot(i,p1i(1),1,p2i(1),-1)
59 & + ddot(i,p1i(1),1,p2r(1),-1)
83 & - ddot(j, p1i(k), 1, p2i(l), -1)
85 & + ddot(j, p1i(k), 1, p2r(l), -1)
105 & - ddot(j, p1i(l), 1, p2i(k), -1)
107 & + ddot(j, p1i(l), 1, p2r(k), -1)
116 p3r(i) = p3r(i) + p1r(i) * p2r(1) - p1i(i) * p2i(1)
117 p3i(i) = p3i(i) + p1r(i) * p2i(1) + p1i(i) * p2r(1)
126 100 p3r(1) = p3r(1) + p1r(1) * p2r(1) - p1i(1) * p2i(1)
[all …]
H A Dwpmul1.f14 subroutine wpmul1(p1r,p1i,d1,p2r,p2i,d2,p3r,p3i) argument
38 double precision p1r(*),p1i(*),p2r(*),p2i(*),p3r(*),p3i(*) local
52 sr=ddot(l,p1r(l1),1,p2r(l2),-1)-ddot(l,p1i(l1),1,p2i(l2),-1)
53 si=ddot(l,p1r(l1),1,p2i(l2),-1)+ddot(l,p1i(l1),1,p2r(l2),-1)
66 sr=ddot(l,p1r(l1),1,p2r,-1)-ddot(l,p1i(l1),1,p2i,-1)
67 si=ddot(l,p1r(l1),1,p2i,-1)+ddot(l,p1i(l1),1,p2r,-1)
77 sr=ddot(l,p1r,1,p2r(l2),-1)-ddot(l,p1i,1,p2i(l2),-1)
78 si=ddot(l,p1r,1,p2i(l2),-1)+ddot(l,p1i,1,p2r(l2),-1)
89 sr=ddot(l,p1r,1,p2r,-1)-ddot(l,p1i,1,p2i,-1)
90 si=ddot(l,p1r,1,p2i,-1)+ddot(l,p1i,1,p2r,-1)
/dports/audio/surge-synthesizer-lv2/surge-release_1.9.0/vst3sdk/public.sdk/samples/vst/mda-vst3/source/
H A DmdaDetuneProcessor.cpp100 int32 p0=pos0, p1i, p2i; in doProcessing() local
121 p1i = (int32)p1; in doProcessing()
122 p1f = p1 - (float)p1i; in doProcessing()
123 a = *(buf + p1i); in doProcessing()
124 ++p1i &= l; in doProcessing()
132 p2i = (p1i - p0) & l; //crossfade in doProcessing()
140 p1i = (int32)p2; in doProcessing()
141 p1f = p2 - (float)p1i; in doProcessing()
142 a = *(buf + p1i); in doProcessing()
143 ++p1i &= l; in doProcessing()
[all …]
/dports/audio/vst3sdk/vst3sdk-3.7.1_build_50-1-g8199057/public.sdk/samples/vst/mda-vst3/source/
H A DmdaDetuneProcessor.cpp105 int32 p0=pos0, p1i, p2i; in doProcessing() local
126 p1i = (int32)p1; in doProcessing()
127 p1f = p1 - (float)p1i; in doProcessing()
128 a = *(buf + p1i); in doProcessing()
129 ++p1i &= l; in doProcessing()
137 p2i = (p1i - p0) & l; //crossfade in doProcessing()
145 p1i = (int32)p2; in doProcessing()
146 p1f = p2 - (float)p1i; in doProcessing()
147 a = *(buf + p1i); in doProcessing()
148 ++p1i &= l; in doProcessing()
[all …]
/dports/lang/gcc6-aux/gcc-6-20180516/gcc/testsuite/go.test/test/fixedbugs/bug248.dir/
H A Dbug3.go45 var p1i p1.I = t1(0) // ok var
62 p1i = i0 // ERROR "cannot use|incompatible"
63 i0 = p1i // ERROR "cannot use|incompatible"
65 p0i = p1i // ERROR "cannot use|incompatible"
66 p1i = p0i // ERROR "cannot use|incompatible"
71 i1 = p1i
72 p1i = i1
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/testsuite/go.test/test/fixedbugs/bug248.dir/
H A Dbug2.go45 var p1i p1.I = t1(0) // ok var
62 p1i = i0 // ERROR "cannot use|incompatible"
63 i0 = p1i // ERROR "cannot use|incompatible"
65 p0i = p1i // ERROR "cannot use|incompatible"
66 p1i = p0i // ERROR "cannot use|incompatible"
71 i1 = p1i
72 p1i = i1
/dports/lang/gcc10/gcc-10.3.0/gcc/testsuite/go.test/test/fixedbugs/bug248.dir/
H A Dbug3.go45 var p1i p1.I = t1(0) // ok
62 p1i = i0 // ERROR "cannot use|incompatible"
63 i0 = p1i // ERROR "cannot use|incompatible"
65 p0i = p1i // ERROR "cannot use|incompatible"
66 p1i = p0i // ERROR "cannot use|incompatible"
71 i1 = p1i
72 p1i = i1
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/gcc/testsuite/go.test/test/fixedbugs/bug248.dir/
H A Dbug3.go45 var p1i p1.I = t1(0) // ok var
62 p1i = i0 // ERROR "cannot use|incompatible"
63 i0 = p1i // ERROR "cannot use|incompatible"
65 p0i = p1i // ERROR "cannot use|incompatible"
66 p1i = p0i // ERROR "cannot use|incompatible"
71 i1 = p1i
72 p1i = i1
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/test/fixedbugs/bug248.dir/
H A Dbug2.go45 var p1i p1.I = t1(0) // ok var
62 p1i = i0 // ERROR "cannot use|incompatible"
63 i0 = p1i // ERROR "cannot use|incompatible"
65 p0i = p1i // ERROR "cannot use|incompatible"
66 p1i = p0i // ERROR "cannot use|incompatible"
71 i1 = p1i
72 p1i = i1
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/testsuite/go.test/test/fixedbugs/bug248.dir/
H A Dbug2.go45 var p1i p1.I = t1(0) // ok var
62 p1i = i0 // ERROR "cannot use|incompatible"
63 i0 = p1i // ERROR "cannot use|incompatible"
65 p0i = p1i // ERROR "cannot use|incompatible"
66 p1i = p0i // ERROR "cannot use|incompatible"
71 i1 = p1i
72 p1i = i1
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/gcc/testsuite/go.test/test/fixedbugs/bug248.dir/
H A Dbug3.go45 var p1i p1.I = t1(0) // ok var
62 p1i = i0 // ERROR "cannot use|incompatible"
63 i0 = p1i // ERROR "cannot use|incompatible"
65 p0i = p1i // ERROR "cannot use|incompatible"
66 p1i = p0i // ERROR "cannot use|incompatible"
71 i1 = p1i
72 p1i = i1
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/gcc/testsuite/go.test/test/fixedbugs/bug248.dir/
H A Dbug3.go45 var p1i p1.I = t1(0) // ok var
62 p1i = i0 // ERROR "cannot use|incompatible"
63 i0 = p1i // ERROR "cannot use|incompatible"
65 p0i = p1i // ERROR "cannot use|incompatible"
66 p1i = p0i // ERROR "cannot use|incompatible"
71 i1 = p1i
72 p1i = i1
/dports/lang/gcc9-devel/gcc-9-20211007/gcc/testsuite/go.test/test/fixedbugs/bug248.dir/
H A Dbug3.go45 var p1i p1.I = t1(0) // ok var
62 p1i = i0 // ERROR "cannot use|incompatible"
63 i0 = p1i // ERROR "cannot use|incompatible"
65 p0i = p1i // ERROR "cannot use|incompatible"
66 p1i = p0i // ERROR "cannot use|incompatible"
71 i1 = p1i
72 p1i = i1
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/gcc/testsuite/go.test/test/fixedbugs/bug248.dir/
H A Dbug3.go45 var p1i p1.I = t1(0) // ok var
62 p1i = i0 // ERROR "cannot use|incompatible"
63 i0 = p1i // ERROR "cannot use|incompatible"
65 p0i = p1i // ERROR "cannot use|incompatible"
66 p1i = p0i // ERROR "cannot use|incompatible"
71 i1 = p1i
72 p1i = i1
/dports/lang/gcc48/gcc-4.8.5/gcc/testsuite/go.test/test/fixedbugs/bug248.dir/
H A Dbug3.go45 var p1i p1.I = t1(0) // ok var
62 p1i = i0 // ERROR "cannot use|incompatible"
63 i0 = p1i // ERROR "cannot use|incompatible"
65 p0i = p1i // ERROR "cannot use|incompatible"
66 p1i = p0i // ERROR "cannot use|incompatible"
71 i1 = p1i
72 p1i = i1
/dports/lang/gcc9-aux/gcc-9.1.0/gcc/testsuite/go.test/test/fixedbugs/bug248.dir/
H A Dbug3.go45 var p1i p1.I = t1(0) // ok var
62 p1i = i0 // ERROR "cannot use|incompatible"
63 i0 = p1i // ERROR "cannot use|incompatible"
65 p0i = p1i // ERROR "cannot use|incompatible"
66 p1i = p0i // ERROR "cannot use|incompatible"
71 i1 = p1i
72 p1i = i1
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/gcc/testsuite/go.test/test/fixedbugs/bug248.dir/
H A Dbug3.go45 var p1i p1.I = t1(0) // ok var
62 p1i = i0 // ERROR "cannot use|incompatible"
63 i0 = p1i // ERROR "cannot use|incompatible"
65 p0i = p1i // ERROR "cannot use|incompatible"
66 p1i = p0i // ERROR "cannot use|incompatible"
71 i1 = p1i
72 p1i = i1
/dports/lang/gnat_util/gcc-6-20180516/gcc/testsuite/go.test/test/fixedbugs/bug248.dir/
H A Dbug3.go45 var p1i p1.I = t1(0) // ok var
62 p1i = i0 // ERROR "cannot use|incompatible"
63 i0 = p1i // ERROR "cannot use|incompatible"
65 p0i = p1i // ERROR "cannot use|incompatible"
66 p1i = p0i // ERROR "cannot use|incompatible"
71 i1 = p1i
72 p1i = i1
/dports/devel/avr-gcc/gcc-10.2.0/gcc/testsuite/go.test/test/fixedbugs/bug248.dir/
H A Dbug3.go45 var p1i p1.I = t1(0) // ok var
62 p1i = i0 // ERROR "cannot use|incompatible"
63 i0 = p1i // ERROR "cannot use|incompatible"
65 p0i = p1i // ERROR "cannot use|incompatible"
66 p1i = p0i // ERROR "cannot use|incompatible"
71 i1 = p1i
72 p1i = i1
/dports/devel/riscv64-gcc/gcc-8.3.0/gcc/testsuite/go.test/test/fixedbugs/bug248.dir/
H A Dbug3.go45 var p1i p1.I = t1(0) // ok var
62 p1i = i0 // ERROR "cannot use|incompatible"
63 i0 = p1i // ERROR "cannot use|incompatible"
65 p0i = p1i // ERROR "cannot use|incompatible"
66 p1i = p0i // ERROR "cannot use|incompatible"
71 i1 = p1i
72 p1i = i1
/dports/lang/gcc11/gcc-11.2.0/gcc/testsuite/go.test/test/fixedbugs/bug248.dir/
H A Dbug2.go45 var p1i p1.I = t1(0) // ok var
62 p1i = i0 // ERROR "cannot use|incompatible"
63 i0 = p1i // ERROR "cannot use|incompatible"
65 p0i = p1i // ERROR "cannot use|incompatible"
66 p1i = p0i // ERROR "cannot use|incompatible"
71 i1 = p1i
72 p1i = i1
/dports/lang/gcc10-devel/gcc-10-20211008/gcc/testsuite/go.test/test/fixedbugs/bug248.dir/
H A Dbug3.go45 var p1i p1.I = t1(0) // ok var
62 p1i = i0 // ERROR "cannot use|incompatible"
63 i0 = p1i // ERROR "cannot use|incompatible"
65 p0i = p1i // ERROR "cannot use|incompatible"
66 p1i = p0i // ERROR "cannot use|incompatible"
71 i1 = p1i
72 p1i = i1
/dports/lang/gcc9/gcc-9.4.0/gcc/testsuite/go.test/test/fixedbugs/bug248.dir/
H A Dbug3.go45 var p1i p1.I = t1(0) // ok var
62 p1i = i0 // ERROR "cannot use|incompatible"
63 i0 = p1i // ERROR "cannot use|incompatible"
65 p0i = p1i // ERROR "cannot use|incompatible"
66 p1i = p0i // ERROR "cannot use|incompatible"
71 i1 = p1i
72 p1i = i1
/dports/lang/gcc8/gcc-8.5.0/gcc/testsuite/go.test/test/fixedbugs/bug248.dir/
H A Dbug3.go45 var p1i p1.I = t1(0) // ok var
62 p1i = i0 // ERROR "cannot use|incompatible"
63 i0 = p1i // ERROR "cannot use|incompatible"
65 p0i = p1i // ERROR "cannot use|incompatible"
66 p1i = p0i // ERROR "cannot use|incompatible"
71 i1 = p1i
72 p1i = i1

123456