Home
last modified time | relevance | path

Searched refs:gnext (Results 1 – 6 of 6) sorted by relevance

/third_party/cmsis/CMSIS/DSP/Source/FilteringFunctions/
Darm_iir_lattice_q15.c65 q31_t fcurr, fnext = 0, gcurr = 0, gnext; /* Temporary variables for lattice stages */ in arm_iir_lattice_q15() local
111 gnext = (((q31_t) fnext * (*pk++)) >> 15) + gcurr; in arm_iir_lattice_q15()
112 gnext = __SSAT(gnext, 16); in arm_iir_lattice_q15()
115 *px2++ = (q15_t) gnext; in arm_iir_lattice_q15()
118 acc += (q31_t) ((gnext * (*pv++))); in arm_iir_lattice_q15()
138 gnext = (((q31_t) fnext * (*pk++)) >> 15) + gcurr; in arm_iir_lattice_q15()
139 gnext1 = (q15_t) __SSAT(gnext, 16); in arm_iir_lattice_q15()
151 gnext = (((q31_t) fcurr * (*pk++)) >> 15) + gcurr; in arm_iir_lattice_q15()
152 gnext2 = (q15_t) __SSAT(gnext, 16); in arm_iir_lattice_q15()
162 gnext = __PKHBT(gnext1, gnext2, 16); in arm_iir_lattice_q15()
[all …]
Darm_iir_lattice_q31.c64 … q31_t fcurr, fnext = 0, gcurr = 0, gnext; /* Temporary variables for lattice stages */ in arm_iir_lattice_q31() local
104 gnext = __QADD(gcurr, (q31_t) (((q63_t) fnext * (*pk++)) >> 31)); in arm_iir_lattice_q31()
107 *px2++ = gnext; in arm_iir_lattice_q31()
110 acc += ((q63_t) gnext * *pv++); in arm_iir_lattice_q31()
129 gnext = __QADD(gcurr, (q31_t) (((q63_t) fnext * (*pk++)) >> 31)); in arm_iir_lattice_q31()
132 acc += ((q63_t) gnext * *pv++); in arm_iir_lattice_q31()
134 *px2++ = gnext; in arm_iir_lattice_q31()
143 gnext = __QADD(gcurr, (q31_t) (((q63_t) fcurr * (*pk++)) >> 31)); in arm_iir_lattice_q31()
146 acc += ((q63_t) gnext * *pv++); in arm_iir_lattice_q31()
148 *px2++ = gnext; in arm_iir_lattice_q31()
[all …]
Darm_iir_lattice_f32.c130 … float32_t fnext1, fnext2, gcurr1, gnext; /* Temporary variables for lattice stages */ in arm_iir_lattice_f32() local
198 gnext = gcurr1 + (k1 * fnext1); in arm_iir_lattice_f32()
204 *px2++ = gnext; in arm_iir_lattice_f32()
210 acc += (gnext * v1); in arm_iir_lattice_f32()
216 gnext = gcurr2 + (k2 * fnext2); in arm_iir_lattice_f32()
222 acc += (gnext * v2); in arm_iir_lattice_f32()
228 *px2++ = gnext; in arm_iir_lattice_f32()
234 gnext = gcurr1 + (k1 * fnext1); in arm_iir_lattice_f32()
240 acc += (gnext * v3); in arm_iir_lattice_f32()
243 *px2++ = gnext; in arm_iir_lattice_f32()
[all …]
/third_party/boost/libs/asio/include/boost/asio/
Dbasic_streambuf.hpp312 std::size_t gnext = gptr() - &buffer_[0]; in reserve() local
323 if (gnext > 0) in reserve()
325 pnext -= gnext; in reserve()
326 std::memmove(&buffer_[0], &buffer_[0] + gnext, pnext); in reserve()
/third_party/boost/boost/asio/
Dbasic_streambuf.hpp312 std::size_t gnext = gptr() - &buffer_[0]; in reserve() local
323 if (gnext > 0) in reserve()
325 pnext -= gnext; in reserve()
326 std::memmove(&buffer_[0], &buffer_[0] + gnext, pnext); in reserve()
/third_party/wayland_standard/src/
Dwayland-server.c1132 struct wl_global *global, *gnext; in wl_display_destroy() local
1141 wl_list_for_each_safe(global, gnext, &display->global_list, link) in wl_display_destroy()