HomeSort by relevance Sort by last modified time
    Searched refs:pthis (Results 1 - 4 of 4) sorted by null

  /external/srec/srec/include/
sp_fft.h 246 pthis -- a pointer to a srfft object created by new_srfft
251 void delete_srfft(srfft* pthis);
259 pthis -- a pointer to the srfft object
271 void do_real_fft(srfft* pthis, unsigned length, fftdata* data);
279 pthis -- a pointer to the srfft object
291 void do_real_ifft(srfft* pthis, unsigned length, fftdata* data);
303 pthis -- a pointer to the srfft object
308 void allocate_butterfly_tbl(srfft* pthis);
315 pthis -- a pointer to the srfft object
320 void allocate_trigonomy_tbl(srfft* pthis);
    [all...]
  /external/srec/srec/cfront/
sp_fft.c 138 srfft* pthis; local
143 pthis = (srfft*) CALLOC(1, sizeof(srfft), "srfft");
144 pthis->m_logLength = logLength;
145 pthis->m_length = 1 << logLength;
147 allocate_bitreverse_tbl(pthis);
148 allocate_butterfly_tbl(pthis);
149 allocate_trigonomy_tbl(pthis);
151 return pthis;
171 void allocate_butterfly_tbl(srfft* pthis)
178 m = pthis->m_logLength
    [all...]
  /frameworks/av/media/libstagefright/tests/
DummyRecorder.h 44 static void *threadWrapper(void *pthis);
DummyRecorder.cpp 29 void *DummyRecorder::threadWrapper(void *pthis) {
30 ALOGV("ThreadWrapper: %p", pthis);
31 DummyRecorder *writer = static_cast<DummyRecorder *>(pthis);

Completed in 207 milliseconds