~ubuntu-branches/ubuntu/wily/boinc-app-seti/wily-proposed

« back to all changes in this revision

Viewing changes to client/vector/analyzeFuncs_vector.h

  • Committer: Package Import Robot
  • Author(s): Gianfranco Costamagna
  • Date: 2014-04-14 00:10:11 UTC
  • mfrom: (1.1.11)
  • Revision ID: package-import@ubuntu.com-20140414001011-uos97gr5k8imsx8e
Tags: 7.28~svn2203-1
* New upstream release, patch refresh.
* Drop fix-armel.patch and fix-ftbfs-arm64.patch, addressed
  upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
359
359
#endif
360
360
 
361
361
#if defined(__arm__) && defined(__VFP_FP__) && !defined(__SOFTFP__)
 
362
#ifdef USE_NEON
362
363
extern int neon_GetPowerSpectrum(
363
364
    sah_complex * cx_FreqData,
364
365
    float * fp_PowerSpectrum,
365
366
    int ul_NumDataPoints
366
367
  );
 
368
#endif
367
369
extern int vfp_GetPowerSpectrum(
368
370
    sah_complex * cx_FreqData,
369
371
    float * fp_PowerSpectrum,
378
380
  int  ul_NumDataPoints,
379
381
  double sample_rate
380
382
);
 
383
#ifdef USE_NEON
381
384
extern int neon_ChirpData (
382
385
  sah_complex * cx_DataArray,
383
386
  sah_complex * cx_ChirpDataArray,
386
389
  int  ul_NumDataPoints,
387
390
  double sample_rate
388
391
);
389
 
 
 
392
#endif
390
393
#endif
391
394
 
392
395
#endif