Home
last modified time | relevance | path

Searched refs:m_py (Results 1 – 2 of 2) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/minddata/dataset/audio/kernels/
Daudio_utils.h218 T *m_py = new T[m_den_order + 1]; in LFilter() local
232 m_py[j] = static_cast<T>(0); in LFilter()
238 m_py[m_num_order] += b_coeffs[j] * m_px[m_num_order - j]; in LFilter()
241 m_py[m_num_order] -= a_coeffs[j] * m_py[m_num_order - j]; in LFilter()
244 if (m_py[m_num_order] > static_cast<T>(1.)) in LFilter()
246 else if (m_py[m_num_order] < static_cast<T>(-1.)) in LFilter()
249 out_vect[i] = m_py[m_num_order]; in LFilter()
251 out_vect[i] = m_py[m_num_order]; in LFilter()
258 m_py[j] = m_py[j + 1]; in LFilter()
260 m_py[m_num_order] = static_cast<T>(0); in LFilter()
[all …]
/third_party/vk-gl-cts/modules/gles31/functional/
Des31fSRGBDecodeTests.cpp920 int m_py; member in deqp::gles31::Functional::__anon020079e90111::SRGBTestCase
941 , m_py (0) in SRGBTestCase()
1080 m_py = py; in setSamplingLocations()
1179 DE_ASSERT((m_py >= 0) && (m_py < height)); in storeResultPixels()
1184 resultPixelData.push_back(m_textureResultList[idx].getAccess().getPixel(m_px, m_py)); in storeResultPixels()